/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #e0f7fa;
  scroll-behavior: smooth;
  overflow-x: hidden; /* 💥 added this to fully prevent horizontal scroll site-wide */
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.nav-logo {
  width: 80px;
  margin-bottom: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  color: #b2ebf2;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00e5ff;
}

/* Burger menu */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #00e5ff;
  transition: all 0.3s ease;
}

.burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.burger.toggle .line2 {
  opacity: 0;
}
.burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Buttons */
.btn,
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1rem;
  color: #0a0a0a;
  background: #00e5ff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover,
.cta-btn:hover {
  background: #00bcd4;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #001f1f, #000000);
  text-align: center;
}

.hero-logo {
  width: 600px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #00e5ff;
}

.hero p {
  font-size: 1.2rem;
  color: #b2ebf2;
}

/* Sections */
.about, .portfolio, .services, .hosting, .why, .testimonials, .contact {
  padding: 80px 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #00e5ff;
}

.features, .service-cards, .counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature, .service-card, .counter {
  flex: 1 1 250px;
  background: #121212;
  border: 1px solid #00e5ff33;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.feature:hover, .service-card:hover {
  transform: translateY(-10px);
  border-color: #00e5ff;
}

.feature h3, .service-card h3, .counter h3 {
  color: #00e5ff;
  margin-bottom: 10px;
}

/* Pricing & Popular */
.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00e5ff;
  margin: 10px 0;
}

.popular {
  border: 2px solid #00e5ff;
  position: relative;
}

.badge {
  background: #00e5ff;
  color: #0a0a0a;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Hosting */
.hosting {
  background: #121212;
}

.hosting p {
  max-width: 700px;
  margin: 0 auto 20px;
}

.hosting-card {
  background: #0d0d0d;
  border: 1px solid #00e5ff33;
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hosting-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.hosting-card ul li {
  margin: 8px 0;
  position: relative;
  padding-left: 20px;
}

.hosting-card ul li::before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #00e5ff;
}

/* Testimonials */
.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-slider {
  display: flex;
  width: fit-content;
  animation: scroll 80s linear infinite;
}

.testimonial {
  flex: 0 0 300px;
  padding: 30px;
  background: #0d0d0d;
  border: 1px solid #00e5ff33;
  border-radius: 10px;
  margin: 0 15px;
  box-sizing: border-box;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial h4 {
  color: #00e5ff;
  font-weight: 600;
}

/* Trust Section */
.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.trust-list li {
  background: #121212;
  border: 1px solid #00e5ff33;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0f7fa;
}

/* Social Proof Logos */
.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.social-proof-logos img {
  height: 150px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  object-fit: contain;
}

.social-proof-logos img:hover {
  filter: grayscale(0%);
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto 30px;
  gap: 15px;
}

form input, form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info p {
  margin: 5px 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0d0d0d;
  font-size: 0.9rem;
  color: #b2ebf2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #b2ebf2;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00e5ff;
}

/* Animations */
@keyframes glow {
  from { filter: drop-shadow(0 0 10px #00e5ff); }
  to { filter: drop-shadow(0 0 25px #00e5ff); }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Back to Top */
#backToTop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  border: none;
  outline: none;
  background: #00e5ff;
  color: #0a0a0a;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s ease;
}

#backToTop:hover {
  background: #00bcd4;
  color: #fff;
}

/* Cookie Consent */
#cookieConsent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.95);
  color: #e0f7fa;
  padding: 15px 20px;
  border-radius: 8px;
  display: none;
  z-index: 9999;
  font-size: 0.9rem;
  text-align: center;
}

#cookieConsent p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cookieConsent a {
  color: #00e5ff;
  text-decoration: underline;
}

#cookieConsent button {
  padding: 8px 15px;
  background: #00e5ff;
  color: #0a0a0a;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

#cookieConsent button:hover {
  background: #00bcd4;
  color: #fff;
}

 /* Responsive */
 @media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 200px;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: right 0.3s ease;
    z-index: 998;
  }

  .nav-links.active {
    right: 0;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 999;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background: #00e5ff;
    transition: all 0.3s ease;
  }

  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .burger.toggle .line2 {
    opacity: 0;
  }
  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-post {
  background: #121212;
  border: 1px solid #00e5ff33;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: left;
}

.blog-post:hover {
  transform: translateY(-10px);
  border-color: #00e5ff;
}

.blog-post h3 a {
  color: #00e5ff;
  text-decoration: none;
}

.blog-post h3 a:hover {
  text-decoration: underline;
}

.blog-meta {
  font-size: 0.9rem;
  color: #b2ebf2;
  margin-bottom: 10px;
}
/* Smaller Hero */
.small-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #001f1f, #000000);
}

/* Blog Content Styling */
.blog-content {
  padding: 60px 0;
  text-align: left;
}

.blog-content h2, .blog-content h3 {
  color: #00e5ff;
  margin-top: 30px;
}

.blog-content p {
  margin: 15px 0;
  line-height: 1.7;
  color: #e0f7fa;
}

.blog-content a {
  color: #00e5ff;
  text-decoration: underline;
}

.blog-content a:hover {
  color: #00bcd4;
}
.btn,
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1rem;
  color: #0a0a0a !important;  /* FORCE the text color to stay visible */
  background: #00e5ff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover,
.cta-btn:hover {
  background: #00bcd4;
  color: #ffffff !important;  /* Set white text on hover */
}
.blog-preview {
  background: #121212;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00e5ff33;
  margin-bottom: 30px;
  text-align: left;
  transition: transform 0.3s ease;
}

.blog-preview:hover {
  transform: translateY(-5px);
  border-color: #00e5ff;
}

.blog-preview h2 {
  color: #00e5ff;
  margin-bottom: 10px;
}

.blog-preview p {
  margin-bottom: 10px;
  color: #e0f7fa;
}

.blog-date {
  font-size: 0.9rem;
  color: #b2ebf2;
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.blog-post-card {
  flex: 1 1 300px;
  background: #121212;
  border: 1px solid #00e5ff33;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
  max-width: 350px;
}

.blog-post-card:hover {
  transform: translateY(-10px);
  border-color: #00e5ff;
}

.blog-post-card h2 {
  font-size: 1.5rem;
  color: #00e5ff;
  margin-bottom: 10px;
}

.blog-post-card .post-date {
  font-size: 0.9rem;
  color: #b2ebf2;
  margin-bottom: 15px;
}
