/* General Styles */
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px; /* Or any max width */
    margin: 0 auto; /* Centers the content */
    width: 100%; /* Ensures it spans the full width */
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}


/* Navbar Styles */
.nav-link {
    color: #333;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link:focus,
.active {
    color: #FF204E;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.group:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    transition: background-color 0.3s;
}

.dropdown-link:hover {
    background-color: #f4f4f4;
}

/* Animations */
@keyframes fade-slide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-slide-right {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-slide { animation: fade-slide 1s ease-out forwards; }
.animate-fade-slide-right { animation: fade-slide-right 1s ease-out forwards; }

/* Pricing Section */
.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #FF204E;
}

.buy-btn {
    display: inline-block;
    background: #FF204E;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
    margin-top: 30px;
}

.buy-btn:hover {
    background: #A0153E;
}

/* Tab Navigation */
.tab-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f5f5f5;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab-label i {
    font-size: 25px;
}

/* Active Tab Styling */
input[type="radio"]:checked ~ .tab-label {
    background: #FF204E;
    color: white;
}

.tab-label:hover {
    background: #cbd5e1;
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fade-slide 0.3s ease-in-out;
}

/* Show Active Panel */
#sleekweb:checked ~ .tab-content #sleekweb-content,
#aws:checked ~ .tab-content #aws-content,
#google:checked ~ .tab-content #google-content {
    display: block;
}

#managed:checked ~ .tab-content #managed-content,
#unmanaged:checked ~ .tab-content #unmanaged-content {
    display: block;
}

/* Feature Boxes */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

/* VPS Cards */
.vps-card,
.vps-project-card {
    padding: 24px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-slide 0.5s ease-in-out forwards;
}

.vps-card:hover,
.vps-project-card:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.vps-icon {
    font-size: 2rem;
    color: #FF204E;
    margin-bottom: 10px;
}

.vps-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}

.vps-text {
    color: #666;
    font-size: 1rem;
    margin-top: 5px;
}

/* Testimonial Slider */
.testimonial-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #FF204E;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq-item:hover {
    background: #e0f2fe;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FF204E;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}





/*This is the blog section */
.prose h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    line-height: 1.25;
  }

  .prose h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .prose h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .prose p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #374151; /* text-gray-700 */
    line-height: 1.75;
  }

  .prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .prose ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .prose li {
    margin-bottom: 0.5rem;
  }

  .prose a {
    color: #2563eb; /* text-blue-600 */
    text-decoration: underline;
  }

  .prose img {
    border-radius: 0.5rem;
    margin: 1rem 0;
    max-width: 100%;
    height: auto;
  }

  .prose blockquote {
    padding-left: 1rem;
    border-left: 4px solid #d1d5db; /* border-gray-300 */
    color: #6b7280; /* text-gray-500 */
    font-style: italic;
    margin: 1.5rem 0;
  }

  .prose strong {
    font-weight: bold;
  }

  .prose code {
    background-color: #f3f4f6; /* bg-gray-100 */
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: monospace;
  }