/* Global Styles */
:root {
    --primary-color: #10b981;
    --secondary-color: #059669;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --white: #ffffff;
    --gray: #6b7280;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-color);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Flash Messages */
.flash-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #fff 0%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Domain Search */
.domain-search {
    padding: 3rem 0;
    background: var(--light-color);
}

.domain-search-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.domain-search-box h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.domain-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.domain-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.domain-form select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--white);
}

.domain-prices {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

/* Hosting Categories */
.hosting-categories {
    padding: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-card.featured {
    border: 3px solid var(--primary-color);
}

.category-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--gray);
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* Why Choose */
.why-choose {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #d1d5db;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
}

/* Chat Widget */
.chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    z-index: 999;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-widget {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--light-color);
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    max-width: 80%;
}

.bot-message {
    background: var(--white);
    margin-right: auto;
}

.user-message {
    background: var(--primary-color);
    color: var(--white);
    margin-left: auto;
}

.chat-footer {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.chat-footer input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.chat-footer button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .domain-form .input-group {
        flex-direction: column;
    }

    .chat-widget {
        width: 90%;
        right: 5%;
    }
}
/* Additional Styles for About Us */
.about-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .about-section {
            padding: 4rem 0;
        }
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .stats-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .stat-box {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .values-section {
            padding: 4rem 0;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .value-card {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
        }
        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
        }
        .team-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .team-card {
            background: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .team-avatar {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 4rem;
        }
        .team-info {
            padding: 1.5rem;
        }
        /* Additional Styles for Contact Us*/
        .contact-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .contact-section {
            padding: 4rem 0;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }
        .contact-info-card {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 1rem;
        }
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .contact-form-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
        }
        .map-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Additional style for Dashboard */
        .dashboard-layout {
            display: flex;
            min-height: 100vh;
            padding-top: 70px;
        }
        .dashboard-sidebar {
            width: 250px;
            background: var(--dark-color);
            color: var(--white);
            padding: 2rem 0;
            position: fixed;
            height: calc(100vh - 70px);
            overflow-y: auto;
        }
        .dashboard-sidebar .user-info {
            padding: 0 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        .dashboard-sidebar .user-avatar {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
        }
        .dashboard-sidebar .user-name {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        .dashboard-sidebar .user-email {
            font-size: 0.875rem;
            color: #9ca3af;
        }
        .dashboard-menu {
            list-style: none;
        }
        .dashboard-menu li a {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            color: var(--white);
            transition: all 0.3s;
        }
        .dashboard-menu li a:hover,
        .dashboard-menu li a.active {
            background: var(--primary-color);
        }
        .dashboard-content {
            flex: 1;
            margin-left: 250px;
            padding: 2rem;
            background: var(--light-color);
        }
        .dashboard-header {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .dashboard-header h1 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .stat-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        .stat-info h3 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 0.25rem;
        }
        .stat-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .section-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .section-card h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        .table {
            width: 100%;
            border-collapse: collapse;
        }
        .table th,
        .table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        .table th {
            background: var(--light-color);
            font-weight: 600;
            color: var(--dark-color);
        }
        .table tr:hover {
            background: var(--light-color);
        }
        .status-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        .status-active {
            background: #d1fae5;
            color: #065f46;
        }
        .status-pending {
            background: #fef3c7;
            color: #92400e;
        }
        .status-suspended {
            background: #fee2e2;
            color: #991b1b;
        }
        .empty-state {
            text-align: center;
            padding: 3rem;
            color: var(--gray);
        }
        .empty-state i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.3;
        }
        /* Additional style for Dedicated Server */
        .hosting-header {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .hosting-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .hosting-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        .pricing-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .pricing-toggle {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .pricing-toggle button {
            padding: 0.75rem 2rem;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .pricing-toggle button.active {
            background: var(--primary-color);
            color: var(--white);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .pricing-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }
        .pricing-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.featured {
            border-color: var(--primary-color);
            border-width: 3px;
            position: relative;
        }
        .pricing-card.featured::before {
            content: "Recommended";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        .plan-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        .plan-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .plan-price span {
            font-size: 1rem;
            color: var(--gray);
        }
        .plan-cycle {
            color: var(--gray);
            margin-bottom: 2rem;
        }
        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        .plan-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .plan-features li:last-child {
            border-bottom: none;
        }
        .feature-label {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .feature-value {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 0.9rem;
        }
        .features-section {
            padding: 4rem 0;
            background: var(--white);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .feature-box {
            text-align: center;
            padding: 2rem;
            background: var(--light-color);
            border-radius: 1rem;
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .feature-box h3 {
            margin-bottom: 0.5rem;
        }
/* Digital Marketing Styles */
  .service-header {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .service-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .services-showcase {
            padding: 4rem 0;
        }
        .service-packages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .package-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s;
        }
        .package-card:hover {
            border-color: #10b981;
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .package-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: var(--white);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        .package-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .package-price {
            font-size: 2rem;
            color: #10b981;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .package-features {
            list-style: none;
            margin: 1.5rem 0;
        }
        .package-features li {
            padding: 0.5rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .package-features i {
            color: var(--success);
        }
        .stats-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: var(--white);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .process-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .process-step {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            position: relative;
        }
        .step-number {
            width: 50px;
            height: 50px;
            background: #10b981;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }
        .form-section {
            padding: 4rem 0;
            background: var(--white);
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        .form-column {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 1rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
        }
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Domain */
        .page-header {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        @media (max-width: 768px) {
            .dashboard-sidebar {
                display: none;
            }
            .dashboard-content {
                margin-left: 0;
            }
        }

        /* Invoices Page */
        .invoices-table {
            background: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .table {
            width: 100%;
            border-collapse: collapse;
        }
        .table th,
        .table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        .table th {
            background: #10b981;
            color: var(--white);
            font-weight: 600;
        }
        .table tr:hover {
            background: var(--light-color);
        }
        .status-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        .status-completed {
            background: #d1fae5;
            color: #065f46;
        }
        .status-pending {
            background: #fef3c7;
            color: #92400e;
        }
        .status-failed {
            background: #fee2e2;
            color: #991b1b;
        }
        @media (max-width: 768px) {
            .dashboard-sidebar {
                display: none;
            }
            .dashboard-content {
                margin-left: 0;
            }
            .table {
                font-size: 0.875rem;
            }
        }
       /* Login Page */
       .auth-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 2rem 0;
        }
        .auth-container {
            background: var(--white);
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
            max-width: 450px;
            width: 100%;
            padding: 3rem;
        }
        .auth-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .auth-logo {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .auth-header h1 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }
        .auth-header p {
            color: var(--gray);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            font-weight: 500;
        }
        .form-group input {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .form-group .input-icon {
            position: relative;
        }
        .form-group .input-icon i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }
        .form-group .input-icon input {
            padding-left: 3rem;
        }
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .remember-me {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .remember-me input[type="checkbox"] {
            width: auto;
        }
        .forgot-password {
            color: var(--primary-color);
            font-size: 0.9rem;
        }
        .error-message {
            background: #fee2e2;
            color: #991b1b;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .success-message {
            background: #d1fae5;
            color: #065f46;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .auth-footer {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }
        .auth-footer a {
            color: var(--primary-color);
            font-weight: 600;
        }
        .back-home {
            text-align: center;
            margin-top: 1rem;
        }
        .back-home a {
            color: var(--white);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        } 
        /* Managed VPS Styles */
        .hosting-header {
            background: linear-gradient(135deg,  #10b981 0%, #059669 100%);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .hosting-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .pricing-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .pricing-toggle {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .pricing-toggle button {
            padding: 0.75rem 2rem;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .pricing-toggle button.active {
            background: var(--primary-color);
            color: var(--white);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .pricing-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }
        .pricing-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.best-value {
            border-color:  #10b981;
            border-width: 3px;
            position: relative;
        }
        .pricing-card.best-value::before {
            content: "Best Value";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #10b981;
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        .plan-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        .plan-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .plan-price span {
            font-size: 1rem;
            color: var(--gray);
        }
        .plan-cycle {
            color: var(--gray);
            margin-bottom: 2rem;
        }
        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        .plan-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .plan-features li:last-child {
            border-bottom: none;
        }
        .feature-label {
            color: var(--gray);
        }
        .feature-value {
            font-weight: 600;
            color: var(--dark-color);
        }
        .managed-benefits {
            padding: 4rem 0;
            background: var(--white);
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .benefit-card {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
        }
        .benefit-card i {
            font-size: 3rem;
            color: #10b981;
            margin-bottom: 1rem;
        }

        /* my-cloud */
        .cloud-header {
            background: linear-gradient(135deg, #10b981 0%,#059669);
            color: var(--white);
            padding: 2rem 0;
        }
        .cloud-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .stat-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }
        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg,#10b981 0%,#059669);
            color: var(--white);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .upload-section {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .upload-area {
            border: 2px dashed var(--border-color);
            border-radius: 1rem;
            padding: 3rem;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }
        .upload-area:hover {
            border-color: #10b981;
            background: var(--light-color);
        }
        .upload-area.dragover {
            border-color: #10b981;
            background: rgba(6, 182, 212, 0.1);
        }
        .files-section {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }
        .files-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .file-card {
            background: var(--light-color);
            padding: 1.5rem;
            border-radius: 0.5rem;
            text-align: center;
            position: relative;
            transition: all 0.3s;
        }
        .file-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .file-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }
        .file-actions {
            margin-top: 1rem;
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }
        .file-actions button {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            font-size: 0.875rem;
        }
        .progress-bar {
            width: 100%;
            height: 20px;
            background: var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 0.5rem;
        }
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg,#10b981 0%,#059669);
            transition: width 0.3s;
        }

        /* Order Pay */
        .order-page {
            padding: 4rem 0;
            background: var(--light-color);
            min-height: 100vh;
        }
        .order-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .order-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 2rem;
        }
        .order-form-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }
        .order-form-card h2 {
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        .order-summary {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 100px;
        }
        .order-summary h3 {
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        .plan-info {
            background: var(--light-color);
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .plan-info h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .plan-features {
            list-style: none;
            margin: 1rem 0;
        }
        .plan-features li {
            padding: 0.5rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .plan-features i {
            color: var(--success);
        }
        .price-breakdown {
            border-top: 2px solid var(--border-color);
            padding-top: 1rem;
        }
        .price-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }
        .price-item.total {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--primary-color);
            border-top: 2px solid var(--border-color);
            padding-top: 1rem;
            margin-top: 1rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            font-weight: 500;
        }
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .billing-cycle-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .billing-option {
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        .billing-option input {
            display: none;
        }
        .billing-option:hover {
            border-color: var(--primary-color);
        }
        .billing-option.selected {
            border-color: var(--primary-color);
            background: rgba(16, 185, 129, 0.1);
        }
        .billing-option .cycle-name {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }
        .billing-option .cycle-price {
            font-size: 1.25rem;
            color: var(--primary-color);
            font-weight: bold;
        }
        .billing-option .cycle-save {
            color: var(--success);
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        .error-messages {
            background: #fee2e2;
            color: #991b1b;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .secure-checkout {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .order-grid {
                grid-template-columns: 1fr;
            }
            .order-summary {
                position: static;
            }
        }

        /* Paymemt Page */
        .payment-page {
            min-height: 100vh;
            background: var(--light-color);
            padding: 6rem 0 2rem;
        }
        .payment-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 2rem;
        }
        .payment-methods {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }
        .method-option {
            border: 2px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .method-option:hover {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.05);
        }
        .method-option input {
            width: 20px;
            height: 20px;
        }
        .method-option.selected {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.1);
        }
        .method-icon {
            width: 50px;
            height: 50px;
            background: var(--light-color);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #10b981;
        }
        .order-summary {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 100px;
        }
        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .summary-item.total {
            font-size: 1.25rem;
            font-weight: bold;
            color: #10b981;
            border-top: 2px solid var(--border-color);
            border-bottom: none;
            padding-top: 1rem;
            margin-top: 1rem;
        }
        .secure-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 0.5rem;
            margin-top: 1rem;
            color: #10b981;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .payment-grid {
                grid-template-columns: 1fr;
            }
            .order-summary {
                position: static;
            }
        }

        /* Profile Page */
        .page-header {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .settings-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 100px;
        }
        @media (max-width: 768px) {
            .dashboard-sidebar {
                display: none;
            }
            .dashboard-content {
                margin-left: 0;
            }
        }

        /* Services Page */
        .page-header {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .services-grid {
            display: grid;
            gap: 1.5rem;
        }
        .service-card {
            background: var(--white);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow);
            border-left: 4px solid #10b981;
        }
        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .service-info h3 {
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }
        .service-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .status-badge {
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        .status-active {
            background: #d1fae5;
            color: #065f46;
        }
        .status-pending {
            background: #fef3c7;
            color: #92400e;
        }
        .status-suspended {
            background: #fee2e2;
            color: #991b1b;
        }
        .service-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .detail-item {
            padding: 0.75rem;
            background: var(--light-color);
            border-radius: 0.5rem;
        }
        .detail-label {
            font-size: 0.875rem;
            color: var(--gray);
            margin-bottom: 0.25rem;
        }
        .detail-value {
            font-weight: 600;
            color: var(--dark-color);
        }
        .service-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .dashboard-sidebar {
                display: none;
            }
            .dashboard-content {
                margin-left: 0;
            }
        }

        /* Shared-hosting Styles */
        .hosting-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .hosting-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .pricing-section {
            padding: 4rem 0;
        }
        .pricing-toggle {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .pricing-toggle button {
            padding: 0.75rem 2rem;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .pricing-toggle button.active {
            background: var(--primary-color);
            color: var(--white);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .pricing-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }
        .pricing-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.featured {
            border-color: var(--primary-color);
            border-width: 3px;
            position: relative;
        }
        .pricing-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        .plan-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        .plan-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .plan-price span {
            font-size: 1rem;
            color: var(--gray);
        }
        .plan-cycle {
            color: var(--gray);
            margin-bottom: 2rem;
        }
        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        .plan-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .plan-features li:last-child {
            border-bottom: none;
        }
        .feature-label {
            color: var(--gray);
        }
        .feature-value {
            font-weight: 600;
            color: var(--dark-color);
        }
        .feature-value.check {
            color: var(--success);
        }
        .comparison-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .comparison-table {
            overflow-x: auto;
            background: var(--white);
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        .comparison-table th {
            background: var(--primary-color);
            color: var(--white);
            font-weight: 600;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table .check {
            color: var(--success);
            text-align: center;
        }

        .green-text{
            color: #10b981;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-variant: normal;
        }

        /* Training Page */
        .service-header {
            background: linear-gradient(135deg, #10b981 0%,#059669  100%);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .service-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .courses-section {
            padding: 4rem 0;
        }
        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .course-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s;
        }
        .course-card:hover {
            border-color: #f59e0b;
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .course-header {
            background: linear-gradient(135deg, #10b981  #059669 );
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }
        .course-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .course-body {
            padding: 2rem;
        }
        .course-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .course-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray);
        }
        .course-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        .course-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray);
        }
        .course-features i {
            color: var(--success);
        }
        .course-price {
            font-size: 2rem;
            font-weight: bold;
            color: #10b981;
            text-align: center;
            margin-bottom: 1rem;
        }
        .benefits-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .benefit-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
        }
        .benefit-card i {
            font-size: 3rem;
            color: #10b981;
            margin-bottom: 1rem;
        }
        .testimonials-section {
            padding: 4rem 0;
            background: var(--white);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .testimonial-card {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 1rem;
        }
        .student-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        .student-avatar {
            width: 50px;
            height: 50px;
            background: #10b981;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .enrollment-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        .form-column {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
        }
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* VPS Hosting Styles */
         .hosting-header {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .hosting-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .pricing-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .pricing-toggle {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .pricing-toggle button {
            padding: 0.75rem 2rem;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .pricing-toggle button.active {
            background: var(--primary-color);
            color: var(--white);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .pricing-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        .pricing-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.popular {
            border-color: var(--primary-color);
            border-width: 3px;
            position: relative;
        }
        .pricing-card.popular::before {
            content: "Popular";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--white);
            padding: 0.4rem 1.2rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .plan-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        .plan-price {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .plan-price span {
            font-size: 1rem;
            color: var(--gray);
        }
        .plan-cycle {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 1.5rem;
        }
        .plan-features li {
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }
        .plan-features li:last-child {
            border-bottom: none;
        }
        .feature-label {
            color: var(--gray);
        }
        .feature-value {
            font-weight: 600;
            color: var(--dark-color);
        }
        /* Web Development Styles */
        .service-header {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .service-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .services-showcase {
            padding: 4rem 0;
        }
        .service-packages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .package-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s;
        }
        .package-card:hover {
            border-color: #10b981;
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .package-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: var(--white);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        .package-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .package-price {
            font-size: 2rem;
            color: #10b981;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .package-features {
            list-style: none;
            margin: 1.5rem 0;
        }
        .package-features li {
            padding: 0.5rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .package-features i {
            color: var(--success);
        }
        .portfolio-section {
            padding: 4rem 0;
            background: var(--light-color);
        }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .portfolio-item {
            background: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }
        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .portfolio-image {
            height: 200px;
            background: linear-gradient(135deg, #10b981, #059669);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
        }
        .portfolio-content {
            padding: 1.5rem;
        }
        .contact-form-section {
            padding: 4rem 0;
            background: var(--white);
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        .form-column {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 1rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
        }
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
