/* Coded by t.me/teampropoganda */

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;
    }
}

/* Mobile Menu Styling */
@media (max-width: 767px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.95); /* Slightly darker background */
        backdrop-filter: blur(20px); /* Stronger blur for a modern look */
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
        padding: 20px 0; /* Increased padding for a more spacious feel */
        border-radius: 0 0 15px 15px; /* Rounded bottom corners */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    }

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

    .nav-menu a {
        padding: 15px 20px; /* More padding for easier clicking */
        margin: 10px 0; /* Increased margin between list items */
        font-size: 1.2rem; /* Slightly larger font for readability */
        color: #fff;
        background-color: rgba(255, 255, 255, 0.1); /* Light background on items */
        border-radius: 5px; /* Rounded corners for list items */
        text-align: center;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.2); /* Slightly darker on hover */
        transform: scale(1.05); /* Slightly enlarge on hover */
        color: #00ffcc;
    }

    .hamburger-menu {
        position: relative;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger-menu span {
        position: absolute;
        height: 2px;
        width: 100%;
        background-color: white;
        border-radius: 2px;
        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;
    }

    .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 {
    height: 35px; /* Adjust this value to make the navbar thinner */
    padding: 0 30px; /* Adjust padding to control spacing inside the navbar */
    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: #00ffcc98;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header-button:hover {
    background: #313636;
}

.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 */
    }
}

/* 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;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Hide elements on desktop */
.desktop-only {
    display: none;
}

/* Show elements on mobile */
.mobile-only {
    display: block;
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-only {
        display: flex;
    }
    .mobile-only {
        display: none;
    }
    
    .nav-menu {
        padding: 10px 15px; /* Adjust padding for the links */
        display: flex;
    }

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

@media (max-width: 767px) {
    .nav-menu {
        display: none;
        flex-direction: column;
    }

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

    .header-buttons {
        display: none;
    }

    .header-buttons.mobile-only {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

.logo img {
    max-height: 40px; /* 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;
    }
}
.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 99999;
}
/* The dot */
.dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 160px;
  height: 100px;
  margin-top: -50px;
  margin-left: -80px;
  border-radius: 5px;
  background-color: #1e3f57;
  transform-type: preserve-3d;
  animation: dot1 3s cubic-bezier(0.55, 0.3, 0.24, 0.99) infinite; }

.dot:nth-child(2) {
  z-index: 11;
  width: 150px;
  height: 90px;
  margin-top: -45px;
  margin-left: -75px;
  border-radius: 3px;
  background-color: #3c617d;
  animation-name: dot2; }

.dot:nth-child(3) {
  z-index: 12;
  width: 40px;
  height: 20px;
  margin-top: 50px;
  margin-left: -20px;
  border-radius: 0 0 5px 5px;
  background-color: #6bb2cd;
  animation-name: dot3; }

@keyframes dot1 {
  3%,
    97% {
    width: 160px;
    height: 100px;
    margin-top: -50px;
    margin-left: -80px; }
  30%,
    36% {
    width: 80px;
    height: 120px;
    margin-top: -60px;
    margin-left: -40px; }
  63%,
    69% {
    width: 40px;
    height: 80px;
    margin-top: -40px;
    margin-left: -20px; } }
@keyframes dot2 {
  3%,
    97% {
    width: 150px;
    height: 90px;
    margin-top: -45px;
    margin-left: -75px; }
  30%,
    36% {
    width: 70px;
    height: 96px;
    margin-top: -48px;
    margin-left: -35px; }
  63%,
    69% {
    width: 32px;
    height: 60px;
    margin-top: -30px;
    margin-left: -16px; } }
@keyframes dot3 {
  3%,
    97% {
    width: 40px;
    height: 20px;
    margin-top: 50px;
    margin-left: -20px; }
  30%,
    36% {
    width: 8px;
    height: 8px;
    margin-top: 49px;
    margin-left: -5px;
    border-radius: 8px; }
  63%,
    69% {
    width: 16px;
    height: 4px;
    margin-top: -37px;
    margin-left: -8px;
    border-radius: 10px; } }

body.no-scroll {
        overflow: hidden;
    }

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #00ffcc;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

/* Custom scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #00ffcc #f1f1f1;
}

.disco-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Thin layer */
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ff00ff, #00ffff, #ffff00);
    background-size: 600% 100%;
    animation: disco 5s linear infinite;
    z-index: 10000;
}

@keyframes disco {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Coded by t.me/teampropoganda */
