        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        :root {
            --primary: #3b82f6;
            --secondary: #10b981;
            --dark: #1e293b;
            --light: #f8fafc;
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hover-underline-animation {
            display: inline-block;
            position: relative;
        }

        .hover-underline-animation::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform-origin: bottom right;
            transition: transform 0.25s ease-out;
        }

        .hover-underline-animation:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        /* Dark mode toggle */
        .toggle-checkbox:checked {
            right: 0;
            background-color: #10b981;
        }

        .toggle-checkbox:checked+.toggle-label {
            background-color: #1e293b;
        }
    
        .website-types {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            max-width: 1900px;
            padding: 10 50px;
        }

        .website-types h2 {
            font-family: 'Poppins', sans-serif;
            text-align: center;
            font-size: 72px;
            color: linear-gradient(90deg, var(--primary), var(--secondary));
            margin-bottom: 15px;
            padding-top: 100px;
            font-weight: 400;
        }

        .subtitle {
            text-align: center;
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        /* Desktop Grid Layout */
        .website-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .website-card {
            border: 1px solid #279ac1;
            background: rgb(0 0 0 / 0.05);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 0 10px;
            display: flex;
            flex-direction: column;
        }

        .dark .website-card {
            border: 1px solid #279ac1;
            background-image: linear-gradient(to bottom right, #249fb7, #1e293b);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 0 10px;
            display: flex;
            flex-direction: column;
        }

        .website-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .website-card.featured {
            border-top: 4px solid #e74c3c;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #e74c3c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .website-icon {
            width: 60px;
            height: 60px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .website-icon svg {
            width: 30px;
            height: 30px;
        }

        .website-card h3 {
            font-size: 1.5rem;
            margin: 0 0 10px;
            color: #2c3e50;
        }

        .website-desc {
            color: #ffffff;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .price-display {
            font-size: 2.2rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
        }

        .price-label {
            display: block;
            font-size: 0.9rem;
            color: #4a5568;
            margin-top: 5px;
            text-align: center;
        }

       .dark .price-label {
            display: block;
            font-size: 0.9rem;
            color: #000000;
            margin-top: 5px;
            text-align: center;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
            flex-grow: 1;
            /* Allow basic features to take up available space */
        }

        .features-list li {
            padding: 5px 0;
            position: relative;
            padding-left: 25px;
            color: #ffffff;
            font-size: 0.9rem;
        }

        .dark .features-list li {
            padding: 5px 0;
            position: relative;
            padding-left: 25px;
            color: #000000;
            font-size: 0.9rem;
        }

        .features-list li:before {
            content: "\f00c";
            /* Font Awesome checkmark icon */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #01ff6d;
            /* Green checkmark */
        }

        .addons-section {
            background-color: #f5f5f5;
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }

        .addons-section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .addon-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-top: 1px solid #cbd5e0;
        }

        .addon-item:first-child {
            border-top: none;
        }

        .addon-item label {
            display: flex;
            align-items: center;
            cursor: pointer;
            color: #4a5568;
            font-size: 0.9rem;
        }

        .addon-item input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.2);
        }

        .addon-item .price {
            font-weight: 600;
            color: #3498db;
        }

        .total-price-section {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 2px solid #a0aec0;
            text-align: right;
            font-size: 1.3rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .dark .total-price-section{
            color: white;
        }

        /* Mobile Slider Styles */
        .mobile-slider {
            display: none;
            position: relative;
            padding: 20px 0 60px;
            width: 100%;
            overflow: hidden;
        }

        .swiper-container {
            width: 100%;
            padding: 20px 0;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 85%;
            transition: transform 0.3s ease;
        }

        .swiper-slide-active {
            transform: scale(1.05);
            z-index: 1;
        }

        /* Navigation Arrows */
        .swiper-button-next,
        .swiper-button-prev {
            background-color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            color: #3498db;
            --swiper-navigation-size: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .swiper-button-next {
            right: 10px;
        }

        .swiper-button-prev {
            left: 10px;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-weight: bold;
        }

        /* Pagination */
        .swiper-pagination {
            position: relative;
            margin-top: 20px;
        }

        .swiper-pagination-bullet {
            background: #bdc3c7;
            opacity: 1;
            width: 10px;
            height: 10px;
        }

        .swiper-pagination-bullet-active {
            background: #3498db;
        }


        /* Responsive Breakpoint */
        @media (max-width: 768px) {
            .website-cards {
                display: none;
            }

            .mobile-slider {
                display: block;
            }

            .website-card {
                margin: 0;
                width: 100%;
            }
        }

        .nameinput {
            padding-top: 0.5rem;
            padding-left: 1rem;
            padding-right: 1rem;
            padding-bottom: 0.5rem;
            border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
            border-width: 1px;
            border-radius: 0.5rem;
            color: black;
            width: 100%;
            background-color: whitesmoke;
        }