/* Topbar */
.topbar {
  background: #004d61;
  color: white;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 1rem;
  flex-wrap: wrap;
}

.topbar a,
.topbar span {
  color: white;
  text-decoration: none;
  margin-right: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-icon {
  font-size: 1.1rem;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 1.5rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #004d61;
  justify-self: start;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  justify-self: center;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00bcd4;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #004d61;
  justify-self: end;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.carousel {
  background: #f5f9fc;
  padding: 4rem 1rem;
  text-align: center;
}

.carousel-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #004d61;
}

.carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  transition: transform 0.5s;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
}

.carousel-text {
  background: white;
  padding: 1.2rem 1.5rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 0 0 8px 8px;
}

.carousel-text h3 {
  color: #00bcd4;
  margin-bottom: 0.5rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255,255,255,0.7);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 8px;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}


.why-netbeam {
  background: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}

.why-title {
  font-size: 2rem;
  color: #004d61;
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  background: #f7fafd;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  color: #00bcd4;
}


.compare-plans {
  background: linear-gradient(to right, #eefaff 50%, #ffffff 50%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
}

.compare-title {
  text-align: center;
  font-size: 2rem;
  color: #004d61;
  margin-bottom: 3rem;
}

.plan-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.plan-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  width: 300px;
  position: relative;
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-8px);
}

.plan-card h3 {
  font-size: 1.4rem;
  color: #00bcd4;
  margin-bottom: 0.5rem;
}

.plan-card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  color: #333;
}

.plan-card ul li {
  margin: 0.4rem 0;
}

.featured {
  border: 2px solid #00bcd4;
  background: #f0faff;
}

.tv-section {
  background: #ffffff;
  padding: 5rem 2rem;
}

.tv-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.tv-text {
  flex: 1 1 500px;
}

.tv-text h2 {
  color: #004d61;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tv-text p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tv-text ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #333;
}

.tv-text ul li {
  margin: 0.5rem 0;
}

.tv-image {
  flex: 1 1 400px;
  text-align: center;
}

.tv-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.internet-section {
  background: #f7fcff;
  padding: 5rem 2rem;
}

.internet-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.internet-image {
  flex: 1 1 400px;
  text-align: center;
}

.internet-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.internet-text {
  flex: 1 1 500px;
}

.internet-text h2 {
  color: #004d61;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.internet-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.internet-text ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #333;
}

.internet-text ul li {
  margin: 0.5rem 0;
}


.cta-section {
  background: url('../images/logo/cta.png') center/cover no-repeat;
  padding: 6rem 2rem;
  position: relative;
  text-align: center;
  color: white;
}

.cta-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-overlay h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00e0ff;
}

.cta-overlay p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  background: #00bcd4;
  color: white;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #0097a7;
}


.services-section {
  background: linear-gradient(to right, #e1f5fe, #f9ffff);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-title {
  font-size: 2rem;
  color: #004d61;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.icon-glass {
  font-size: 2.2rem;
  background: rgba(0, 188, 212, 0.15);
  padding: 1rem;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}


.info-section {
  background: url('../images/logo/inner.png') center/cover no-repeat;
  padding: 6rem 2rem;
  position: relative;
  color: white;
}

.info-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem 2rem;
  max-width: 950px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.info-content h2 {
  font-size: 2rem;
  color: #00e0ff;
  margin-bottom: 1rem;
}

.info-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.info-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #00bcd4;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.info-btn:hover {
  background: #0097a7;
}

.disclaimer-section {
  background: #f1f1f1;
  padding: 2rem;
  font-size: 0.9rem;
  text-align: center;
  color: #666;
  border-top: 1px solid #ddd;
}

.disclaimer-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}

.site-footer {
  background: #f0f0f0;
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid #ddd;
  font-size: 0.95rem;
}

.footer-links a {
  color: #555;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bcd4;
}

.callnow-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00bcd4;
  color: white;
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.callnow-fixed:hover {
  background: #0097a7;
  transform: scale(1.05);
}

.contact-section {
  background: #f4fdff;
  padding: 5rem 2rem;
  text-align: center;
}

.contact-header {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #004d61;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
  justify-content: center;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-form button {
  background: #00bcd4;
  color: white;
  padding: 0.8rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0097a7;
}

.contact-details {
  flex: 1 1 300px;
  text-align: left;
}

.contact-details h3 {
  margin-bottom: 1rem;
  color: #00bcd4;
}

.contact-details p {
  margin: 0.5rem 0;
  color: #444;
}

.social-links a {
  font-size: 1.5rem;
  margin-right: 0.8rem;
  text-decoration: none;
}
