* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --gradient: linear-gradient(45deg, #ff3366, #ff6b6b, #fdb4b4, #ffffff);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

body {
    background: #322e2e;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    backdrop-filter: blur(12px);
    border-bottom: var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 10, 10, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
    background-size: 300%;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    width: 100%;
    animation: gradient 1s linear infinite;
}
.get-started-button {
    background-color: #ff5733;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.get-started-button:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.get-started-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle .bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.4s ease;
}

.mobile-nav-toggle .bar:nth-child(1) { top: 14px; }
.mobile-nav-toggle .bar:nth-child(2) { top: 19px; }
.mobile-nav-toggle .bar:nth-child(3) { top: 24px; }

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        backdrop-filter: blur(10px);
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
        pointer-events: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translate(-50%, 5px) rotate(45deg);
        width: 24px;
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translate(-50%, -5px) rotate(-45deg);
        width: 24px;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(4px);
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}


.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://embrodesigns.netlify.app/images/cover.jpeg') no-repeat center center/cover;
    opacity: 0.1; 
    z-index: -1;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero .search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 500px;
}

.hero .search-bar input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1em;
}

.hero .search-bar button {
    padding: 15px;
    background: #ff5733;
    border: none;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s;
}

.hero .search-bar button:hover {
    background: #e55d51;
}



@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .header nav {
        width: 100%;
        display: flex;
        justify-content: space-around;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero .search-bar {
        flex-direction: column;
        width: 100%;
    }

    .hero .search-bar input {
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .hero .search-bar button {
        border-radius: 5px;
    }
}

.pricing_section {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}
.pricing_header {
    padding: 70px 70px;
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: -0.5px;
    text-align: center;
    
}
.pricing_header h1 {
    color: #090909;
    font-weight: auto;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 5px rgb(255, 255, 255);
}
.pricing_header p {
    color: #000000;
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
}
.pricing_content {
    padding: 3rem 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pricing-container {
    display: flex;
    gap: 2rem;
}
.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    margin: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}
.pricing-header {
    font-size: 1.5rem;
    padding: 5px;
    font-weight: bold;
    color: #333;
}
.pricing-header span{
    
    font-size: 0.9rem;
    font-weight: bold;
    color: #292929;
    margin-bottom: 1rem;
}
.pricing-price {
    color: #ff5733;
    margin: 1rem 0;
    position: relative;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.pricing-price span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}





.pricing-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}
.pricing-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff5733;
    font-size: 1rem;
    color: #ffffff;
    
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.pricing-button:hover {
    background: #b82c36;
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.5);
}
.pricing-card.popular {
    border: 2px solid #ff5733;
    background: linear-gradient(145deg, #ffffff, #fdf1f1);
}
.popular .pricing-header {
    color: #b82c36;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.pricing-card {
    animation: fadeIn 0.5s ease;
}
.Features {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    padding: 100px 1rem;
    background-color: #ffffff;
    text-align: center;
    
}
.Features h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.Features p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}
.designs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.design-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.design-card:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}
.design-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.design-card-content {
    padding: 1rem;
    text-align: left;
}
.design-card-content h3 {
    font-size: 1.5rem;
    color: #e63946;
    margin-bottom: 0.5rem;
}
.design-card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}
.design-card-content a {
    text-align: center;
    display: inline-block;
    font-size: 1rem;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    background: #ff5733;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.design-card-content a:hover {
    background-color: #b82c36;
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.5);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.design-card {
    animation: fadeIn 0.5s ease;
}
.faq {
    padding: 3rem 20%;
    background-color: #ffffff;
    text-align: center;
}
section.faq h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}
section.faq p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}
.faq-container {
    max-width: auto;
    text-align: left;
}
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.faq-question {
    background-color: #f5f5f5;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover {
    background-color: #ff5733;
    color: #fff;
}
.faq-question svg {
    transition: transform 0.3s ease;
}
.faq-question.active svg {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    padding: 0 1rem;
    color: #666;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
    padding: 1rem;
    max-height: 150px; /* Adjust based on content */
}
.footer {
    background-color: #1a1a1a;
    color: #f2f2f2;
    padding: 40px 20px;
    text-align: center;
}

.footer a {
    color: #f2f2f2;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.footer a:hover {
    color: #f95555;
}

.footer .links {
    margin-bottom: 20px;
}

.footer .payment-icons {
    margin-top: 20px;
}

.footer .payment-icons img {
    margin: 0 10px;
    width: 50px;
    height: auto;
    vertical-align: middle;
}

.footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #aaaaaa;
}

@media (max-width: 600px) {
    .footer a {
        display: block;
        margin: 10px 0;
    }

    .footer .payment-icons img {
        width: 40px;
    }
}
.plan-icon {
    font-size: 3rem;
    color: #ff5733;
    margin-bottom: 20px;
    text-align: center;
}
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }
  
  
  .about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
  }
  
  .about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease;
  }
  
  .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s 0.2s ease both;
  }
  
  .about-video {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .about-video:hover {
    transform: translateY(-5px);
  }
  
  .about-video iframe {
    width: 100%;
    height: 450px;
    border: none;
  }
  
  .about-details {
    max-width: 1200px;
    margin: 5rem auto 0;
    padding: 0 2rem;
  }
  
  .mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .mission-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: #e74c3c;
    border-radius: 50%;
    opacity: 0.1;
  }
  
  .about-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 1.5s infinite;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
  }
  
  
  
  .value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
  }
  
  .value-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(46, 134, 222, 0.1);
    transition: all 0.3s ease;
    text-align: center; /* Center text inside the card */
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 134, 222, 0.15);
    border-color: #ff5733;
  }
  
  .value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    gap: 0.5rem;
  }
  
  .value-list {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center list items */
    justify-content: center;
    list-style: none;
    padding: 0;
  }
  
  .value-list li {
    width: 100%;
    text-align: center; /* Center the text inside li */
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .value-list li::before {
    color: #ff5733;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Center the checkmark */
  }
  
  .client-showcase {
    text-align: center;
    margin: 5rem 0;
  }
  
  .client-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
  }
  
  .client-logos img {
    height: 50px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(1);
  }
  
  .client-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
  }
  
  .about-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, #fab191 0%, #ff5832 100%);
    color: white;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: #ff5733;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.5rem;
  }
  
  .cta-button:hover {
    background: #fe3535;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @media (max-width: 768px) {
    .about-hero {
      clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
    
    .about-content h2 {
      font-size: 2.5rem;
    }
    
    .about-video iframe {
      height: 250px;
    }
    
    .mission-card {
      padding: 2rem;
    }
  }
  .cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 2rem;
  right: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .cookie-consent.show {
  bottom: 2rem;
  opacity: 1;
  }
  
  .cookie-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  }
  
  .cookie-text {
  flex: 1;
  }
  
  .cookie-heading {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: #2c3e50;
  }
  
  .cookie-link {
  color: #3498db;
  text-decoration: underline;
  transition: color 0.3s ease;
  }
  
  .cookie-link:hover {
  color: #2980b9;
  }
  
  .cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  }
  
  .cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  }
  
  .accept-btn {
  background: linear-gradient(135deg, #fd662a, #ff2c2c);
  color: white;
  }
  
  .settings-btn {
  background: transparent;
  color: #2c3e50;
  border: 2px solid #bdc3c7;
  }
  
  .cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
  .cookie-content {
     flex-direction: column;
     text-align: center;
  }
  
  .cookie-buttons {
     width: 100%;
     flex-direction: column;
  }
  
  .cookie-consent {
     left: 1rem;
     right: 1rem;
  }
  }