/* Coded by @nophq */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: white;
    scroll-behavior: smooth;
}

.header, .feature-list, .plan-cards {
    display: flex;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

.nav-menu a {
    text-decoration: none;
    color: #bbb;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #fff;
}

@media (min-width: 768px) {
    .nav-menu a, .feature-item, .plan-card {
        flex: 1;
        margin-bottom: 0;
        text-align: left;
    }

    .nav-menu {
        flex-direction: row;
        position: static;
        background: none;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.9);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
        padding: 10px 0; /* Reduced padding for menu */
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .nav-menu a {
        padding: 10px 20px; /* Reduced padding for list items */
        margin: 5px 0; /* Reduced margin between list items */
    }
}
/* Coded by @nophq */
/* Hamburger Icon */
.hamburger-menu {
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-menu span {
    position: absolute;
    height: 4px;
    width: 80%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
    bottom: 0;
}

/* Animation for menu opening */
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Header with Blurry iOS-like Effect */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: rgba(18, 18, 18, 0.6);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 20px;
}

.header-button {
    width: 40px;
    height: 40px;
    background: #00ffcc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header-button:hover {
    background: #00bfa5;
}

.header-button img {
    width: 20px;
    height: 20px;
}

/* Hero Section with Gradient and Animation */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-button {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-button.primary {
    background: #00ffcc;
    color: #121212;
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.5);
}

.hero-button.primary:hover {
    background: #00bfa5;
}

.hero-button.secondary {
    background: transparent;
    border: 2px solid #00ffcc;
    color: #fff;
}

.hero-button.secondary:hover {
    border-color: #00bfa5;
}

.animation-ball {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 70%;
    animation: move 5s infinite alternate;
    z-index: 1;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(800px, 600px); }
}

.animation-ball:nth-child(1) {
    top: 10%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-duration: 12s;
}

.animation-ball:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-duration: 15s;
}

.animation-ball:nth-child(3) {
    top: 50%;
    left: 40%;
    width: 100px;
    height: 100px;
    animation-duration: 20s;
}

/* Features Section */
.features {
    padding: 80px 50px;
    background: #121212;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #00ffcc;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    background: #1e1e1e;
    padding: 50px;
    border-radius: 20px;
    width: 45%; /* Default width for larger screens */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px; /* Spacing between cards */
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.feature-item p {
    font-size: 1.2rem;
    color: #bbb;
}

@media (max-width: 767px) {
    .feature-item {
        width: 100%; /* Full width on mobile */
        padding: 30px; /* Adjust padding for smaller screens */
    }
}

/* Hosting Plans Section */
.hosting-plans {
    padding: 80px 50px;
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    text-align: center;
}

.hosting-plans h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #00ffcc;
}

.plan-cards {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background: #1e1e1e;
    padding: 60px;
    border-radius: 20px;
    width: 45%; /* Default width for larger screens */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px; /* Spacing between cards */
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.plan-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #bbb;
}

.plan-card .features-list {
    text-align: left;
    margin-bottom: 30px;
}

.plan-card .features-list li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.plan-card .price {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00ffcc;
}

.plan-card .plan-button {
    padding: 15px 30px;
    border-radius: 30px;
    background: #00ffcc;
    color: #121212;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease;
}

.plan-card .plan-button:hover {
    background: #00bfa5;
}

@media (max-width: 767px) {
    .plan-card {
        width: 100%; /* Full width on mobile */
        padding: 30px; /* Adjust padding for smaller screens */
    }
}

/* Coded by @nophq */
/* Footer */
.footer {
    padding: 50px;
    background: #1e1e1e;
    color: #bbb;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 1rem;
}

.footer a {
    color: #00ffcc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* About Us Section */
.about-us {
    padding: 80px 50px;
    background: #1e1e1e;
    color: #fff;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #00ffcc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #bbb;
}
/* Coded by @nophq */
.about-content p {
    margin-bottom: 20px;
}
/* Coded by @nophq */
.about-content p:last-child {
    margin-bottom: 0;
}

/* Hide elements on desktop */
.desktop-only {
    display: none;
}
/* Coded by @nophq */
/* Show elements on mobile */
.mobile-only {
    display: block;
}
/* Coded by @nophq */
/* Responsive Design */
@media (min-width: 768px) {
    .desktop-only {
        display: flex;
    }
    .mobile-only {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }

    .nav-menu.open {
        display: flex;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
        flex-direction: column;
    }
/* Coded by @nophq */
    .nav-menu.open {
        display: flex;
    }

    .header-buttons {
        display: none;
    }

    .header-buttons.mobile-only {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Coded by @nophq */
.logo img {
    max-height: 50px; /* Adjust the max-height to fit your header */
    height: auto;
    width: auto;
    display: block;
}

#typed-text.active::after, #typed-subtext.active::after {
    content: '|';
    animation: blink 0.7s infinite;
}

#typed-text.inactive::after {
    content: '';
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Coded by @nophq */
