  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Hero Section */
        .hero {
              background: linear-gradient(rgba(10, 4, 45, 0.95), rgba(91, 118, 255, 0.9)), url('../images/code.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 140px 0 100px;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: #fff;
            color: #4a6cf7;
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 8px;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: #4a6cf7;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #272f4d;
            margin-bottom: 18px;
            font-weight: 700;
        }

        .section-title p {
            color: #666;
            max-width: 650px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .feature-card {
            background: #fff;
            border-radius: 8px;
            padding: 45px 35px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #f0f4ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: #4a6cf7;
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 18px;
            color: #272f4d;
            font-weight: 600;
        }

        .feature-card p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .feature-link {
            color: #4a6cf7;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .feature-link:hover {
            transform: translateX(5px);
        }

        /* Templates Showcase */
        .templates {
            padding: 100px 0;
            background: #fff;
        }

        .templates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .template-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .template-card:hover {
            transform: translateY(-5px);
        }

        .template-image {
            height: 220px;
            background-color: #f5f7ff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .template-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .template-card:hover .template-image img {
            transform: scale(1.05);
        }

        .template-info {
            padding: 25px;
        }

        .template-info h3 {
            margin-bottom: 12px;
            color: #272f4d;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .template-info p {
            color: #666;
            margin-bottom: 18px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .template-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .template-tag {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            
        }

        .tag-free {
            background: #fff;
            color: #27ae60;
        }

        .tag-premium {
            background: #fef5e7;
            color: #e67e22;
        }

        .tag-language {
            background: #e8f4fd;
            color: #3498db;
        }

        .template-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .price {
            font-weight: 700;
            font-size: 1.2rem;
        }

        .price-free {
            color: #27ae60;
        }

        .price-premium {
            color: #e67e22;
        }

        .template-action {
            background: #4a6cf7;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .template-action:hover {
            background: #3a5ce5;
            transform: translateY(-1px);
        }

        /* Hosting Section - Clean professional design */
        .hosting {
            padding: 100px 0;
            background: #fff;
        }

        .hosting-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hosting-content h2 {
            font-size: 2.5rem;
            color: #272f4d;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .hosting-content p {
            color: #666;
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .hosting-features {
            list-style: none;
            margin-bottom: 35px;
        }

        .hosting-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
        }

        .hosting-features i {
            color: #4a6cf7;
            margin-right: 12px;
            font-size: 1.1rem;
        }

        .hosting-image {
            background: #f8f9fa;
            border-radius: 8px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            border: 1px solid #eaeaea;
        }

        .hosting-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Tools Section */
        .tools {
            padding: 100px 0;
            background: #fff;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .tool-card {
            background: white;
            border-radius: 8px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            border-top: 3px solid #4a6cf7;
        }

        .tool-card:hover {
            transform: translateY(-5px);
        }

        .tool-icon {
            font-size: 2.5rem;
            color: #4a6cf7;
            margin-bottom: 20px;
        }

        .tool-card h3 {
            margin-bottom: 15px;
            color: #272f4d;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .tool-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
   background: linear-gradient(rgba(10, 4, 45, 0.95), rgba(0, 0, 0, 0.78)), url('../images/st.jpg');
            background-size: cover;
            background-position: center;
                        color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            color:white;
        }

        .cta-section p {
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
            font-size: 1.1rem;
            line-height: 1.7;
            color:white;
        }

        /* Footer */
        footer {
            background: #272f4d;
            color: white;
            padding: 70px 0 35px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 45px;
            padding: 0 25px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: #4a6cf7;
        }

        .footer-column p {
            margin-bottom: 20px;
            opacity: 0.85;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #4a6cf7;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #4a6cf7;
            transform: translateY(-2px);
        }

        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 968px) {
            .hosting-container {
                grid-template-columns: 1fr;
            }
            
            .hosting-image {
                order: -1;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }