        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #000;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Navbar */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .logo-link {
            text-decoration: none;
            color: inherit;
            display: inline-flex;
            align-items: center;
        }

        .logo {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.5rem;
            color: #000;
        }

        .nav-links {
            display: flex;
            list-style: none;
            flex: 2;
            justify-content: center;
            gap: 24px;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1.00rem;
            letter-spacing: 0.2px;
            transition: color 0.25s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #000;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #000;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            justify-content: flex-end;
            flex: 1;
            gap: 12px;
        }

        .auth-buttons .btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .auth-buttons a {
            text-decoration: none;
            color: inherit;
            display: inline-block;
            cursor: pointer;
        }

        .login-btn {
            background-color: transparent;
            color: #000;
            border: 1.5px solid #000 !important;
        }

        .signup-btn {
            background-color: #000;
            color: #fff !important;
        }

        .signup-btn:hover {
            background-color: #333;
            color: #fff !important;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Default: keep dropdown out of flow on desktop */
        .nav-dropdown {
            display: none;
            width: 100%;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-height: 0;
            transition: max-height 360ms cubic-bezier(.2,.9,.2,1), padding 280ms ease, box-shadow 280ms ease;
            z-index: 1000;
        }

        /* Mobile behaviour */
        @media (max-width: 768px) {
            nav {
                flex-direction: row;
                align-items: center;
                flex-wrap: wrap;
            }

            .menu-toggle {
                display: flex;
                justify-content: center;
                align-items: center;
                background: transparent;
                border: none;
                font-size: 2.15rem;
                cursor: pointer;
                padding: 12px 16px;
                color: #000;
                z-index: 1101;
                transition: transform 0.3s ease;
            }

            /* Arrow facing downward */
            .menu-toggle::after {
                content: ">";
                display: inline-block;
                margin-left: 6px;
                transform: rotate(90deg);
                transition: transform 0.3s ease;
            }

            /* Rotate arrow when dropdown active */
            .menu-toggle.active::after {
                transform: rotate(-90deg);
            }

            /* Hide desktop navigation elements */
            .nav-links,
            .auth-buttons {
                display: none;
            }

            /* Make dropdown present in document flow but collapsed by default */
            .nav-dropdown {
                display: block;
                padding: 0;
                max-height: 0;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
                order: 3;
                width: 100%;
            }

            /* Expanded state */
            .nav-dropdown.active {
                max-height: 1000px;
                padding: 12px 0 18px;
                box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
            }

            /* Nav links inside the dropdown */
            .nav-dropdown .nav-links {
                display: flex;
                flex-direction: column;
                margin: 0;
                padding: 0;
                list-style: none;
                width: 100%;
                gap: 0;
            }

            .nav-dropdown .nav-links li {
                width: 100%;
                border-bottom: 1px solid #eee;
            }

            .nav-dropdown .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-dropdown .nav-links a {
                display: block;
                padding: 14px 20px;
                font-size: 1.05rem;
                color: #333;
                text-decoration: none;
                transition: background 160ms ease, color 160ms ease;
            }

            .nav-dropdown .nav-links a:hover {
                background: #fafafa;
                color: #000;
            }

            /* Auth buttons inside dropdown */
            .nav-dropdown .auth-buttons {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 12px 20px 0;
            }

            .nav-dropdown .auth-buttons .btn {
                width: 100%;
                margin: 0;
                text-align: center;
            }
        }




























/* Hero Section */
.hero {
  min-height: 20vh;
  background-color: #fffcfc;
  display: flex;
  align-items: center;
  padding: 0 5%;
  
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 40px;
  padding-top: 100px; /* Moves content up */
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #000;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #333;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-explore-btn {
  text-decoration: none; /* removes underline */
  background-color: transparent;
  color: #000;
  border: 1.5px solid #000;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-getstarted-btn {
  text-decoration: none; /* removes underline */
  background-color: #000;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-explore-btn:hover,
.hero-getstarted-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-animation {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lottie-animation {
  width: 100%;
  max-width: 700px;
  height: 600px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    display: flex;
    flex-direction: column;
  }
  
  .hero-animation {
    order: 1;
    margin-bottom: 40px;
    width: 100%;
  }
  
  .hero-content {
    order: 2;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  #lottie-animation {
    height: 350px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  #lottie-animation {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-container {
    padding: 30px 0 20px;
  }
  
  #lottie-animation {
    height: 250px;
  }
}















/* Why Us Section */
.why-us-section {
    background-color: #FFFCFC;
    padding: 100px 0 80px;
    display: flex;
    align-items: center;
    min-height: 50vh;
}

.problem-section {
    background-color: #FFF5F5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #FFF5F5;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.solution-section {
    background-color: #F5FFF7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #F5FFF7;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.why-us-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.why-us-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #222;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.problem-content-wrapper,
.solution-content-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-text,
.solution-text {
    flex: 1;
}

.problem-title,
.solution-title {
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: #222;
    font-weight: 600;
    position: relative;
}

.problem-title::after,
.solution-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #d32f2f;
    border-radius: 2px;
}

.solution-title::after {
    background-color: #388e3c;
}

.why-us-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#problem-animation
#solution-animation {
    width: 100%;
    height: 600px; /* Increased from 400px */
    max-width: 600px; /* Increased from 500px */
}

/* Lists */
.problem-list,
.solution-list {
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 0;
}

.problem-list li,
.solution-list li {
    margin-bottom: 24px;
    padding-left: 40px;
    position: relative;
    list-style-type: none;
    transition: transform 0.3s ease;
}

.problem-list li:hover,
.solution-list li:hover {
    transform: translateX(8px);
}

.problem-list li:before {
    content: "✖";
    color: #d32f2f;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.4rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
}

.solution-list li:before {
    content: "✓";
    color: #388e3c;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.4rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(56, 142, 60, 0.1);
    border-radius: 50%;
}

.problem-list li strong,
.solution-list li strong {
    color: #222;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .problem-content-wrapper,
    .solution-content-wrapper {
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .problem-title,
    .solution-title {
        font-size: 1.8rem;
    }
    
    #problem-animation,
    #solution-animation {
        height: 400px; /* Adjusted for tablet */
    }
}

@media (max-width: 900px) {
    .problem-content-wrapper {
        flex-direction: column;
    }
    
    .solution-content-wrapper {
        flex-direction: column-reverse;
    }
    
    .why-us-animation {
        width: 100%;
    }
    
    #problem-animation,
    #solution-animation {
        height: 350px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .why-us-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-title,
    .solution-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .problem-title::after,
    .solution-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    #problem-animation,
    #solution-animation {
        height: 300px;
    }
    
    .problem-list,
    .solution-list {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-us-section {
        padding: 60px 0;
        min-height: 40vh;
    }
    
    .problem-section,
    .solution-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-list li,
    .solution-list li {
        padding-left: 32px;
        margin-bottom: 20px;
    }
    
    #problem-animation,
    #solution-animation {
        height: 250px;
    }
}













/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: #FFFCFC;
}

.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.section-header p {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

/* Step Card */
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  height: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.step-animation {
  height: 220px;
  margin: 10px 0 25px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.step-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .step-card {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .step-card {
    height: auto;
    min-height: 380px;
  }
  
  .step-animation {
    height: 180px;
    margin: 10px 0 20px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .step-card {
    padding: 20px;
    min-height: 350px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
}


















/* CTA Bar Section */
.cta-bar {
  background: linear-gradient(135deg, #f7f7f7 0%, #eaeaea 100%);
  padding: 60px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content {
  text-align: center;
}

.cta-message {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
  line-height: 1.3;
}

.cta-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.cta-button:active {
  transform: translateY(-1px);
}

/* Add scroll padding to account for fixed header */
html {
  scroll-padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-bar {
    padding: 40px 0;
  }
  
  .cta-message {
    font-size: 1.8rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-message {
    font-size: 1.5rem;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
}

























/* Categories Section */
.categories {
  padding: 80px 0;
  background-color: #FFFCFC;
}

.categories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.section-header p {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Category Card */
.category-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.category-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

.category-content {
  padding: 25px;
}

.category-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.category-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Templates Container */
.templates-container {
  display: none;
  margin-top: 60px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.templates-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.templates-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}

.close-templates {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.close-templates:hover {
  color: #000;
}

/* Templates Grid */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.template-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.template-card:hover {
  transform: translateY(-5px);
}

.template-image {
  height: 200px;
  overflow: hidden;
}

.template-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-content {
  padding: 20px;
}

.template-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.template-content p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
}

.template-buttons {
  display: flex;
  gap: 15px;
}

.template-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1;
}

.preview-btn {
  background: transparent;
  color: #000;
  border: 1.5px solid #000;
}

.preview-btn:hover {
  background: #000;
  color: #fff;
}

.getnow-btn {
  background: #000;
  color: #fff;
  border: none;
}

.getnow-btn:hover {
  background: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .categories {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .templates-grid {
    grid-template-columns: 1fr;
  }
  
  .template-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .category-content {
    padding: 20px;
  }
  
  .templates-container {
    padding: 20px;
  }
  
  .templates-header h3 {
    font-size: 1.5rem;
  }
}






















/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: #f9fafb;
}

.pricing .container {
  max-width: 1400px; /* Increased from 1200px */
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.section-header p {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Categories - Wider layout */
.pricing-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* Increased gap */
  align-items: stretch;
}

.pricing-category {
  background: #fff;
  border-radius: 12px;
  padding: 35px; /* Increased padding */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 650px; /* Set minimum height for consistency */
}

.pricing-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-header {
  text-align: center;
  margin-bottom: 30px; /* Increased margin */
  padding-bottom: 25px; /* Increased padding */
  border-bottom: 1px solid #eee;
}

.category-header h3 {
  font-size: 1.6rem; /* Slightly larger */
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.category-header p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.5;
}

/* Pricing Options - Column layout with subdomain on top */
.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 25px; /* Increased gap */
  margin-bottom: 30px;
}

.pricing-option {
  text-align: center;
  padding: 30px 25px; /* Increased padding */
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  flex: 1;
}

/* Highlight the subdomain option */
.pricing-option:first-child {
  border: 0.25px solid #000; /* Purple border for highlight */
  box-shadow: 0 8px 20px rgba(1, 0, 9, 0.15);
  order: -1; /* Ensure it stays on top */
}

.pricing-option.featured {
  border: 0.25px solid #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.option-header {
  margin-bottom: 20px;
}

.badge {
  display: block;
  font-size: 1rem; /* Slightly larger */
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.domain-example {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  line-height: 1.4;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 8px;
}

.price {
  font-size: 2.2rem; /* Slightly larger */
  font-weight: 700;
  color: #000;
  margin: 20px 0;
}

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

.pricing-btn {
  text-decoration: none; /* removes underline */
  width: 100%;
  padding: 14px 20px; /* Slightly larger */
  background: transparent;
  color: #000;
  border: 1.5px solid #000;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  font-size: 1.05rem;
}

.pricing-btn:hover {
  background: #000;
  color: #fff;
}

.pricing-btn.primary {
  background: #000;
  color: #fff;
}

.pricing-btn.primary:hover {
  background: #333;
}

/* Features */
.features {
  padding-top: 25px;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.features h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #000;
  text-align: center;
}

.features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features li {
  padding: 10px 0;
  color: #333;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.95rem;
}

.features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #388e3c; /* Purple checkmarks */
  font-weight: bold;
  font-size: 1.1rem;
}

.features li:last-child {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .pricing .container {
    max-width: 100%;
  }
  
  .pricing-category {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .pricing-categories {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .pricing-category {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .pricing-category {
    padding: 20px;
  }
  
  .category-header h3 {
    font-size: 1.4rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .features li {
    font-size: 0.9rem;
  }
  
  .pricing-option {
    padding: 25px 20px;
  }
}
























/* FAQ Section */
.faq {
  padding: 90px 0;
  background-color: #FFFCFC;
}

.faq .container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #000;
}

.section-header p {
  font-size: 1.1rem;
  color: #444;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FAQ Items */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.35s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #fafafa;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  transition: transform 0.35s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #000;
  color: #fff;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 26px 22px;
}

.faq-answer p {
  margin: 0;
  color: #333;
  line-height: 1.65;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 70px 0;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  .section-header p {
    font-size: 1rem;
  }
  .faq-question span {
    font-size: 1rem;
  }
}





























/* Final CTA Section - Enhanced */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #000000 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  z-index: 0;
}

.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.final-cta-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.final-cta-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.final-cta-text {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.final-cta-button {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 18px 48px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border: 2px solid transparent;
}

.final-cta-button:hover {
  background-color: #f7f7f7;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  border-color: #000;
}

.final-cta-button:active {
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 70px 0;
  }
  
  .final-cta-heading {
    font-size: 2.3rem;
  }
  
  .final-cta-text {
    font-size: 1.1rem;
  }
  
  .final-cta-button {
    padding: 16px 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .final-cta-heading {
    font-size: 1.9rem;
  }
  
  .final-cta-text {
    font-size: 1rem;
  }
  
  .final-cta-button {
    width: 100%;
    max-width: 280px;
  }
}



































/* ================= ENHANCED FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 70px 20px 25px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Brand Section --- */
.footer-brand {
  text-align: left;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 2px;
  background: linear-gradient(145deg, #fff, #ccc);
  padding: 0.8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 12px;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 300px;
  margin-bottom: 25px;
}

/* --- Social Icons --- */
.footer-socials {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-socials a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-socials a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255,255,255,0.1);
}

.footer-socials a:hover::before {
  opacity: 1;
}

/* --- Links + Contact + Legal --- */
.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-legal h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #d5d5d5);
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-links ul li::before,
.footer-legal ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d5d5d5;
}

.footer-links ul li a,
.footer-legal ul li a,
.footer-contact a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover,
.footer-contact a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact p {
  margin: 12px 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
}

.footer-contact a {
  margin-left: 5px;
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #d5d5d5);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo-container {
    justify-content: center;
  }
  
  .footer-tagline {
    margin: 0 auto 25px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after,
  .footer-legal h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul li,
  .footer-legal ul li {
    padding-left: 0;
  }
  
  .footer-links ul li::before,
  .footer-legal ul li::before {
    display: none;
  }
}