* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
}

body {
  background-color: #fff; /* Changed to light gray to show wrapper */
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
}

a[data-page],
a[data-page]:hover,
a[data-page]:visited,
a[data-page]:active {
  text-decoration: none;
}

.main-wrapper {
  width: 95%;
  /* max-width: 1600px; */
  margin: 10px auto 0 auto;
  background-color: #fff;
  border-radius: 30px; /* only top corners rounded */
  overflow: hidden;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);  */
}

.quote-btn {
  background-color: #e11d2f;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.quote-btn:hover {
  background-color: #ec2b38;
}

.cta-button {
  background: #ec2b38;
  color: white;
  padding: 10px 10px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  /* width: 200px; */
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 43, 56, 0.3);
}
/* Hero Container - Fixed positioning */
.hero-container {
  width: 100%;
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  align-items: center;
  padding: 0 clamp(2rem, 5vw, 4rem); /* Responsive padding */
  height: 100%;
  position: relative;
  z-index: 3;
}

/* Hero Content - Responsive and properly positioned */
.hero-content {
  max-width: 600px;
  width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateX(100px);
  animation: fadeInRight 1s ease forwards;
  position: relative;
  z-index: 4;
}

/* Hero Typography - Responsive */
.hero-content h1 {
  color: white;
  font-size: clamp(1.8rem, 5vw, 2.5rem); /* Responsive font size */
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.3; /* Better line height for readability */
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

.hero-content p {
  color: white;
  font-size: clamp(1rem, 3vw, 1.25rem); /* Responsive font size */
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.3;
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); */
}

.hero-btn {
  background-color: #e11d2f;
  color: white;
  padding: 15px 50px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #c41728;
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 992px) {
  .nav-links,
  .nav-icons {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .private_network_hero-container {
    justify-content: center;
    text-align: center;
  }
}

/* Desktop styles (default) */
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }

  .nav-icons {
    display: flex !important;
  }
}

/* Hero Section - Fixed */
/* Hero Section - Fixed for wrapper */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px; /* Ensure minimum height */
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0; /* Remove any margins */
  border-radius: 30px 15px 0 0; /* Match wrapper border radius */
  overflow: hidden;
  margin-top: 150px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 15px 0 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* bring it above the image but below content */
  background-color: rgba(0, 0, 0, 0.05); /* black with 50% opacity */
  border-radius: 30px 15px 0 0;
}

/* Internet hero content - Fixed positioning */
.hero-container-internet {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 6rem);
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-content-internet {
  max-width: 600px;
  width: 100%;
  text-align: left;
  margin-top: clamp(100px, 20vh, 200px);
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease forwards;
  color: #ffffff;
}

.hero-title-internet {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description-internet {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  margin-bottom: 2rem;
  line-height: 1.4;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Button styling */
.cta-button {
  background: #ec2b38;
  color: white;
  padding: clamp(8px, 1.5vw, 12px) clamp(32px, 5vw, 48px);
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(236, 43, 56, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 43, 56, 0.4);
  background: #d41f2c;
}

/* private network page hero */

.private_network_hero-container {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 0 4rem;
  height: 100%;
  position: relative;
  z-index: 1;
}

.private_network_hero-content {
  max-width: 500px;
  width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateX(-100px); /* animate from left */
  animation: fadeInLeft 1s ease forwards;
  color: #ffffff;
  margin-top: -50px; /* move upwards */
}

.private_network_hero-content h1 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  color: #ffffff;
}

.private_network_hero-content p {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0;
  color: #ffffff;
}

/* private network international page hero */

/* ENTERPRISE BROADBAND HERO */

.pni-container {
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: left; /* center vertically */
  padding: 0 2rem;
  z-index: 2;
  text-align: left;
}

.hero-content_pni {
  max-width: 500px;
  width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  color: #ffffff;
}

.hero-content_pni h1 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.hero-content_pni p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0;
  color: #ffffff;
}

/* ENTERPRISE BROADBAND HERO */

.enterprise_broadband-container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: left; /* center vertically */
  padding: 0 2rem;
  z-index: 2;
  text-align: left;
}

.hero-content_broadband {
  max-width: 400px;
  width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  color: #ffffff;
}

.hero-content_broadband h1 {
  font-size: 35px;
  margin-bottom: 1.1rem;
  line-height: 100%;
  font-weight: 500;
}

.hero-content_broadband p {
  font-size: 18px;
  line-height: 1.3rem; /* increased for better readability */
  margin-bottom: 2.5rem; /* extra space below paragraph */
  letter-spacing: 0;
  color: #ffffff;
}

.highlight {
  color: #0a0a0a;
}

.highlight-light {
  color: #ffffff;
}

.eb-wave {
  position: relative;
  background-color: #171717;
}

/* connectivty page */
.wave-hero-img {
  position: relative;
  /* width: 100vh; */
  background-color: #fcfcfc;
  width: 100%;
  margin-bottom: 0;
}

/* internet page  */
.eb-wave-internet {
  position: relative;
  background-color: #f2f2f2;
}

.wave-hero-int-img {
  position: relative;
  /* width: 100vh; */
  /* background-color: #f2f2f2; */
  width: 100%;
  margin-bottom: 0;
}

/* internet dia page  */
.eb-wave-internet-dia {
  position: relative;
  background-color: #171717;
}

.wave-hero-dia-img {
  position: relative;
  /* width: 100vh; */
  background-color: #171717;
  width: 100%;
  margin-bottom: 0;
}

/* enterprise broadband page  */
.eb-wave-enterprise-broadband {
  position: relative;
  background-color: #87827c;
}

.wave-hero-enterprise-broadband-img {
  position: relative;
  /* width: 100vh; */
  background-color: #87827c;
  width: 100%;
  margin-bottom: 0;
}

/* smes page  */
.eb-wave-smes {
  position: relative;
  background-color: #b5b7b4;
}

.wave-hero-smes-img {
  position: relative;
  /* width: 100vh; */
  background-color: #b5b7b4;
  width: 100%;
  margin-bottom: 0;
}

/* private-network page  */
.eb-wave-private-network {
  position: relative;
  background-color: #4d5658;
}

.wave-hero-private-network-img {
  position: relative;
  /* width: 100vh; */
  background-color: #4d5658;
  width: 100%;
  margin-bottom: 0;
}

/* private-network international page  */
.wave-private-network-int {
  position: relative;
  background-color: #171717;
}

.wave-hero-private-network-int-img {
  position: relative;
  /* width: 100vh; */
  background-color: #171717;
  width: 100%;
  margin-bottom: 0;
}

/* internet content hero */

.hero-container-internet {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* aligned left */
  align-items: flex-start; /* aligned top */
  padding: 6rem; /* top-right-bottom-left */
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-content-internet {
  max-width: 600px;
  width: 100%;
  text-align: left;

  margin-top: 200px;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease forwards;
  color: #ffffff;
}

.hero-title-internet {
  font-size: 35px;
  margin-bottom: 1.5rem;
  line-height: 100%;
  font-weight: 500;
}

.hero-description-internet {
  font-size: 20px;
  margin-bottom: 2rem;
  line-height: 100%;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}

/* Animation */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Container Styles - Fixed for consistent margins */
.container {
  margin: 0 auto;
  max-width: 1600px;
  padding: 3rem 2rem;
  border-radius: 30px;
  overflow: hidden;
}

.container-internet {
  margin: 0 auto;
  max-width: 1600px;
  padding: 3rem 2rem;
  border-radius: 30px;
  overflow: hidden;
}

.services-image.no-side-padding {
  width: 100vw;
  max-width: none;
  display: block;
  margin-left: calc(-1 * ((100vw - 100%) / 2));
  margin-right: calc(-1 * ((100vw - 100%) / 2));
  object-fit: cover;
}

.private-image.no-side-padding {
  width: 100vw;
  max-width: none;
  display: block;
  margin-left: calc(-1 * ((100vw - 100%) / 2));
  margin-right: calc(-1 * ((100vw - 100%) / 2));
  object-fit: cover;
}

/* .container .section-container{
        padding-right:0;
        padding-left:0;
        overflow: hidden;
    } */

/* Stay Connected Section - Fixed */
.stay-connected {
  padding: 2rem 0;
  background: #fcfcfc;
  position: relative;
  z-index: 10;
}

.stay-connected .container {
  background: #fcfcfc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.007);
  text-align: center;
  margin: 0 auto;
  max-width: 850px;
}

.section-title {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #ec2b38;
  line-height: 1.3;
  margin-bottom: 30px;
}

.section-title-0 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #ec2b38;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
}

.section-title-no-margin {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #ec2b38;
  line-height: 1.3;
}

.section-title1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ec2b38;
  line-height: 1.3;
}
.p-white {
  color: #ffffff;
  font-size: 18px;
  padding-right: 20px;
  margin-bottom: 15px;
}

.section-title-white {
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 0.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.section-title-black {
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 1.5rem;
  color: #000000;
  line-height: 1.3;
}

.section-title-dark {
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 1.5rem;
  color: #000000;
  line-height: 1.3;
  text-align: center;
}

.section-title .highlight {
  display: block;
  line-height: 1.3;
  margin: 0;
}

.section-subtitle {
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: #000000;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
  padding-right: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.section-subtitle1 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 3rem;
  /* max-width: auto; */
  width: 900px;
  /* margin-left: auto; */
  margin-right: auto;
  text-align: left;
}
.section-subtitle2 {
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: #000000;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  line-height: 1.6;
  padding-right: 1rem;
  transition: all 0.3s ease;
}
/* Animation */
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Services Section */
/* .services {
  background: #000;
  position: relative;
  margin: 5%;
} */

.services .container {
  background: #000;
  color: #fff;
  text-align: center;
  /* padding: 4rem 2rem; */
  border-radius: 30px;

  position: relative;
  z-index: 2;
  max-height: auto;
  margin-bottom: -20px;
  margin-top: 30px;
}

.services-inner {
  padding: 3rem 2rem 0 2rem; /* top & side padding only, no bottom padding */
}

.section-title1 {
  margin-bottom: 3rem;
  color: #f8f9fa;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #f3f3f3;
  line-height: 1.3;
}

.services-grid {
  display: flex;
  justify-content: center;
  /* gap: 1rem; */
  flex-wrap: wrap;
  margin-top: 100px;
}

.services-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center; /* Center grid items horizontally */
  align-items: center; /* Center grid items vertically (if needed) */
  margin: 100px auto 0 auto; /* Center the grid itself in the parent */
  max-width: 900px;
}

.service-card1 {
  width: 300px; /* or adjust to your design */
  margin: 0 10px; /* small margin between cards */
  padding: 0.5rem 0.5rem;
  background: transparent;
  text-align: center;
  border: none;
}

.service-card1 p {
  color: white;
}
.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 90px;
  height: 90px;
  filter: brightness(0) saturate(100%) invert(30%) sepia(89%) saturate(6481%)
    hue-rotate(345deg) brightness(96%) contrast(86%);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.services-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.services-image.full-width {
  width: 100vw;
  max-width: 100vw;
  height: auto;
  display: block;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  object-fit: cover;
}

/* Stay Connected Section - Fully Responsive */
.stay-connected {
  padding: clamp(1rem, 4vw, 2rem) 0;
  background: #fcfcfc;
  position: relative;
  z-index: 10;
}

.stay-connected .container {
  background: #fcfcfc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.007);
  text-align: center;
  margin: 0 auto;
  max-width: 850px;
  width: 100%;
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 30px;
  transition: all 0.3s ease;
}

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
  .stay-connected .container {
    max-width: 90%;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin: 0 1rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .stay-connected {
    padding: clamp(1.5rem, 5vw, 3rem) 0;
  }

  .stay-connected .container {
    max-width: 95%;
    padding: clamp(1.5rem, 5vw, 2rem);
    margin: 0 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .stay-connected {
    padding: clamp(1rem, 6vw, 2rem) 0;
  }

  .stay-connected .container {
    max-width: 100%;
    padding: clamp(1rem, 4vw, 1.5rem);
    margin: 0 0.25rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.015);
  }
}

/* Extra Small Devices */
@media (max-width: 320px) {
  .stay-connected .container {
    margin: 0 0.125rem;
    padding: 1rem 0.75rem;
    border-radius: 8px;
  }
}

/* High Resolution Displays */
@media (min-width: 1200px) {
  .stay-connected {
    padding: 3rem 0;
  }

  .stay-connected .container {
    max-width: 900px;
    padding: 2.5rem 3rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  .stay-connected .container {
    max-width: 1000px;
    padding: 3rem 4rem;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .stay-connected {
    padding: 1rem 0;
  }

  .stay-connected .container {
    padding: 1.5rem;
  }
}

/* solution grid data centre */

/* Solutions Section */
.solutions {
  padding: 3rem 0;
  /* margin-top: 30px; */
}

.solutions .container {
  background: #fcfcfc;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  text-align: center;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

/* Fix for anchor tags to maintain card height */
.solutions-grid a {
  display: block;
  text-decoration: none;
  /* color: inherit; */
  height: 100%;
  text-decoration: underline;
}

.solution-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(236, 43, 56, 0.15);
  border-color: #ec2b38;
}

.solution-icon {
  width: 200px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon img {
  width: 200px;
  height: 200px;
}

.solutions-grid h3 {
  color: #ec2b38;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
  flex-shrink: 0;
  text-decoration: none;
}

.solution-card a {
  text-decoration: none;
}

.solution-card p {
  color: #666;
  text-align: left;
  font-size: 18px;
  flex-grow: 1;
  margin: 0;
}

.button-wrapper {
  text-align: center;
  /* margin-top: 4rem; */
}

.learn-more-local-private-network {
  background-color: #ec2b38;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.learn-more-local-private-network:hover {
  background-color: #d12530;
}

.services-image {
  width: 100%;
  margin-top: 2rem;
}

.services-image.bottom {
  margin-top: 4rem;
}

.no-side-padding {
  margin-left: -2rem;
  margin-right: -2rem;
  width: calc(100% + 4rem);
}

/* Responsive Design */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .solution-card {
    padding: 2rem 1.5rem;
  }

  .solution-icon {
    width: 150px;
  }

  .solution-icon img {
    width: 150px;
    height: 150px;
  }
}

.read-more {
  color: #ec2b38;
  /* text-decoration: none; */
  font-weight: 600;
  margin-top: 6rem;
  display: inline-block;
  transition: color 0.3s ease;
  text-align: left;
}

.read-more:hover {
  color: #d41f2c;
}

.read-more1 {
  color: #ec2b38;
  /* text-decoration: none; */
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s ease;
  text-align: left;
}

.read-more1:hover {
  color: #d41f2c;
}

.services-image.bottom {
  /*margin-bottom: -6rem;  Optional */
  vertical-align: bottom;
  line-height: 0;
}

/* Private Network Section */
.private-network {
  padding: 0;
  background: #f8f9fa;
}

.wave-image.no-top-padding {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
.private-network {
  background-color: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.private-network .container {
  padding: 2rem; /* reduced padding */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start; /* align content to the top */
  background: rgb(19, 18, 18) url("../assets/Dots.png") center center / cover
    no-repeat;
  animation: moveBackground 20s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* Animated background layer */
.private-network::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url('../assets/Dots.png') center center / cover no-repeat; */
  animation: moveBackground 30s ease-in-out infinite;
  z-index: 1;
  opacity: 0.4;
}

.private-network .private-network-content,
.private-network .private-network-image {
  position: relative;
  z-index: 3;
  margin-top: 20%;
  padding-left: 6rem;
}

.private-network .stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.private-network .stars-container img {
  height: auto;
  display: block;
}

.private-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.private-image.full-width {
  width: 100vw;
  max-width: 100vw;
  height: auto;
  display: block;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  object-fit: cover;
}

.private-image.top {
  margin-top: -1rem; /* Optional */
}

.private-network-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.private-network-content p {
  font-size: 18px;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #ffffff;
}

.private-network-image {
  position: relative;
  z-index: 2;
}

.private-network-image img {
  width: 70%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* internet connectivity */

/* Section: Emtel Business Internet */
.private-network1 {
  background: #fafafa;
  padding: 3rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
}
.private-network2 {
  padding: 3rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
}
.private-local-network {
  margin-bottom: 30px;
  background: #515151;
  padding: 4rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
}
.private-local-network1 {
  margin-bottom: 30px;
  background: #515151;
  padding: 4rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
}
.network-benefits-header-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #101010; /* red */
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px; /* pill shape */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.network-benefits-header-button:hover {
  background-color: #101010;
  transform: translateY(-2px);
}

.broadband-section {
  background: #87827c;
  padding: 4rem 2rem;
  border-radius: 0 0 30px 30px; /* ⬅ Only bottom-left and bottom-right corners */
}

.broadband-section-smes {
  background: #b5b7b4;
  padding: 4rem 2rem;
  border-radius: 0 0 30px 30px; /* ⬅ Only bottom-left and bottom-right corners */
}

.dedicated-private-network {
  background: #171717;
  padding: 4rem 2rem;
  border-radius: 0 0 30px 30px; /* ⬅ Only bottom-left and bottom-right corners */
}

.international-private-network {
  background: #171717;
  padding: 4rem 2rem;
  border-radius: 0 0 30px 30px; /* ⬅ Only bottom-left and bottom-right corners */
}

.internet-dia1 {
  background: #171717;
  padding: 4rem 2rem;
  border-radius: 0 0 30px 30px; /* ⬅ Only bottom-left and bottom-right corners */
  /* margin-bottom: 30px; */
}

.choose-emtel1 {
  background: #f8f9fa;
  padding: 4rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
  padding-top: 50px;
  margin-top: 30px;
}
.choose-emtel2 {
  padding: 4rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
  padding-top: 50px;
  margin-top: 30px;
}
.role-high-speed {
  background: #ffffff;
  padding: 4rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
}
.role-high-speed1 {
  background: #d4d4d4;
  padding: 4rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
}
.container-internet1 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
}

.private-network-content1 h2 {
  font-size: 35px;
  line-height: 1.2; /* Reduce line spacing */
  margin-bottom: 1.5rem; /* Optional: control bottom spacing */
  font-weight: 0;
}

/* .private-network-content1 p {
      font-size: 18px;
      margin-bottom: 1.2rem;
      color: #000000;
    } */

.private-network-content1-n {
  font-size: 18px;
  color: #000000;
}

.private-network-content1-bold {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1.2rem;
}

/* learn more local and international private network button */

.learn-more-local-private-network {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ec2b38; /* red */
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px; /* pill shape */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  width: 400px;
}

.learn-more-local-private-network:hover {
  background-color: #c9151c;
  transform: translateY(-2px);
}

.learn-more-international-private-network {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ec2b38; /* red */
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px; /* pill shape */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  width: 400px;
}

.learn-more-international-private-network:hover {
  background-color: #c9151c;
  transform: translateY(-2px);
}
/* vector image */

.internet-icon-heading {
  color: #ec2b38;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px; /* Adds space between icon and text */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.vector-icon {
  width: 20px; /* Adjust as needed */
  height: auto;
  display: inline-block;
}

.private-local-network-content1 h2 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.private-local-network-content1 {
  /* margin-bottom: 5px; */
  color: #ffffff;
}

.private-local-network-content-p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.private-network-image1 img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

/* Animated Stars Background */
.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite ease-in-out, float 6s infinite ease-in-out;
  opacity: 0;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

/* Why Choose Section - Fully Responsive */
.why-choose {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #fcfcfc;
  margin-top: 30px;
  border-radius: 30px;
}

.why-choose .container {
  background: #fcfcfc;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  transition: all 0.3s ease;
}

.why-choose-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: clamp(10px, 2vw, 15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.why-choose-image img:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-choose-content {
  width: 100%;
}

.why-choose-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  color: #ec2b38;
  /* font-weight: 700; */
}

.why-choose-content .highlight {
  display: block;
  line-height: 1.3;
  margin: 0;
  color: #0a0a0a;
}
.why-choose-content1 {
  width: 100%;
}

.why-choose-content1 h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  color: #ec2b38;
  /* font-weight: 700; */
}

.why-choose-content1 .highlight {
  display: block;
  line-height: 1.3;
  margin: 0;
  color: #0a0a0a;
}
.section-subtitle1 {
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: #000000;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  text-align: left;
}

.section-subtitle1:last-child {
  margin-bottom: 0;
}

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
  .why-choose .container {
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 5vw, 3rem);
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  }

  .trust-section {
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  }

  .why-choose-image img {
    max-width: 400px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .why-choose {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .trust-section {
    padding: 2rem;
  }

  .why-choose .container {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    text-align: center;
    padding: 0 clamp(1rem, 4vw, 2rem);
  }

  .why-choose-image {
    order: 1;
  }

  .why-choose-content {
    order: 2;
  }

  .why-choose-image img {
    max-width: 350px;
    border-radius: 12px;
  }

  .why-choose-content h2 {
    text-align: center;
  }

  .section-subtitle1 {
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .why-choose {
    padding: clamp(2rem, 8vw, 3rem) 0;
  }

  .why-choose .container {
    gap: clamp(1.5rem, 6vw, 2rem);
    padding: 0 clamp(0.5rem, 4vw, 1rem);
  }

  .why-choose-image img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .why-choose-content h2 {
    margin-bottom: 1rem;
  }

  .section-subtitle1 {
    font-size: clamp(0.9rem, 4vw, 1rem);
    margin-bottom: 1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 320px) {
  .why-choose .container {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }

  .why-choose-image img {
    max-width: 280px;
    border-radius: 8px;
  }

  .section-subtitle1 {
    font-size: 0.9rem;
  }
}

/* High Resolution Displays */
@media (min-width: 1200px) {
  .why-choose {
    padding: 8rem 0;
  }

  .why-choose .container {
    max-width: 1600px;
    gap: 5rem;
    padding: 0 3rem;
  }

  .why-choose-image img {
    max-width: 600px;
  }

  .why-choose-content h2 {
    font-size: 35px;
  }

  .section-subtitle1 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  .why-choose .container {
    max-width: 1800px;
    gap: 6rem;
    padding: 0 4rem;
  }

  .why-choose-image img {
    max-width: 700px;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .why-choose {
    padding: 2rem 0;
  }

  .why-choose .container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
  }

  .why-choose-image {
    order: 1;
  }

  .why-choose-content {
    order: 2;
  }

  .why-choose-content h2,
  .section-subtitle1 {
    text-align: left;
  }

  .section-subtitle1 {
    margin-left: 0;
    margin-right: 0;
  }
}
/* Possibilities Section */
.possibilities {
  padding: 3rem 0;
  background: #f8f9fa;
  position: relative;
  border-radius: 30px;
  margin-bottom: 30px;
}

.possibilities-dark {
  padding: 3rem 0;
  background: #000000;
  position: relative;
  margin-bottom: 30px;
  border-radius: 30px;
  margin-top: 30px;
  padding-left: 200px;
  padding-right: 200px;
}

.possibilities-light {
  padding: 3rem 0;
  background: #f6f6f6;
  position: relative;
  margin-bottom: 30px;
  border-radius: 30px;
  margin-top: 30px;
  padding-left: 200px;
  padding-right: 200px;
}

.possibilities .container {
  background: #f6f6f6;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.possibilities-header {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem;
}

.possibilities-title {
  margin: 0;
  text-align: center;
  justify-self: center;
}

.possibilities-image {
  text-align: right;
}

.possibilities-image img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.possibilities-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.possibilities-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.possibility-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.possibility-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Card Header with Image and Title */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.card-title {
  color: #ec2b38;
  font-size: 1.4rem;
  margin: 0;
  padding-right: 1rem;
  flex: 1;
}

.card-img {
  width: 60px;
  height: 60px;
  margin: 0;
  flex-shrink: 0;
}

.possibility-item p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

/* MOBILE-FIRST ENHANCEMENTS */

@media (max-width: 992px) {
  .top-nav-container {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .top-nav-left,
  .top-nav-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar {
    top: 0;
    padding: 1rem 0;
  }

  .nav-container {
    padding: 0 1rem;
    position: relative;
  }

  .network-benefits-wrapper {
    padding: 3rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-icons {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Hero and content adjustments */
  .hero {
    padding-top: 120px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .private_network_hero-container {
    max-width: 100%;
  }

  .private_network_hero-container h1 {
    font-size: 2.5rem;
  }

  .why-choose .container,
  .private-network .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .private-network-content,
  .private-network-image {
    text-align: center;
  }

  .contact .container {
    padding: 1.5rem;
  }

  .services-grid,
  .solutions-grid,
  .possibilities-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .solution-card {
    padding: 2rem 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  form {
    grid-template-columns: 1fr;
  }

  form textarea {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .top-nav-container {
    padding: 0 0.5rem;
  }

  .network-benefits-wrapper {
    padding: 3rem;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .private_network_hero-container {
    max-width: 100%;
  }

  .private_network_hero-container h1 {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .possibilities-image img {
    width: 150px;
  }

  .container {
    padding: 1.5rem 1rem;
  }

  .service-icon img,
  .solution-icon img {
    width: 50px;
    height: 50px;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-section ul li {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 90px;
  }

  .wave-image.no-top-padding {
    height: auto;
  }
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: #000;
  color: white;
  text-align: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-top: 30px;
}

.contact .container {
  max-width: 1500px;
  margin: 0 auto;
  background: #000;
  padding: 2rem;
  border-radius: 20px;
}

.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact p {
  font-size: 18px;
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.left-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.right-field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.right-field textarea {
  flex: 1;
  min-height: 100%;
  height: 100%;
}

form button.submit-btn {
  grid-column: span 2;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  text-align: left;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  grid-column: span 1;
}

.form-group label {
  margin-bottom: 10px;
}

form textarea {
  grid-column: 2 / 3;
  height: 100%;
  resize: none;
  min-height: 200px;
}

form input,
form select,
form textarea {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-size: 1rem;
}

form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20viewBox%3D%220%200%204%205%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M2%200L0%202h4L2%200zM2%205L0%203h4l-2%202z%22%20fill%3D%22%23000%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

form button.submit-btn {
  grid-column: span 2;
  margin: 2rem auto 0;
  display: block;
  background: #ec2b38;
  color: white;
  padding: 0.8rem 3rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 43, 56, 0.3);
}

/* Wave Before Footer */
.wave-before-footer {
  position: relative;
  height: 100px;
  overflow: hidden;
  /* background: #000; */
}

.wave-before-footer img {
  display: block;
  width: 100%;
  /* height: 100%; */
}

/* Footer */
.footer {
  background: #ec2b38;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section a {
  text-decoration: none;
  color: white; /* set link color */
}

.footer-section a:hover {
  color: #ffffff; /* optional hover effect */
}

.footer-section a:visited {
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
}

/* Animations */

/* Animation */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  form button.submit-btn {
    grid-column: span 1;
  }

  .services-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .container {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
  }

  .top-nav-container {
    padding: 0 1rem;
  }

  .navbar {
    top: 35px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    margin-top: 120px;
  }

  .hero-container {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .private_network_hero-container {
    max-width: 100%;
  }

  .private_network_hero-container h1 {
    font-size: 2.5rem;
  }

  .private-network .container,
  .why-choose .container,
  .contact .container {
    grid-template-columns: 1fr;
  }

  .possibilities-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .possibilities-image {
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .services-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .possibilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  form {
    grid-template-columns: 1fr;
  }

  form textarea {
    grid-column: span 1 !important;
  }

  form button.submit-btn {
    grid-column: span 1;
    width: 100%;
  }

  .top-nav {
    font-size: 0.8rem;
  }

  .top-nav-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .navbar {
    top: 0;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
  }

  .services-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .possibilities-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .possibilities-image {
    text-align: center;
  }

  .possibilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .network-benefits-wrapper {
    padding: 3rem;
  }

  .hero-content_pni {
    max-width: 100%;
  }

  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .private_network_hero-container h1 {
    font-size: 2.5rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-content p,
  .section-subtitle {
    font-size: 1rem;
  }

  .service-card,
  .solution-card {
    padding: 1.5rem 1rem;
  }

  .contact h2 {
    font-size: 1.5rem;
  }

  .contact p {
    font-size: 0.95rem;
  }

  form input,
  form select,
  form textarea {
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  form button.submit-btn {
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
    grid-column: span 1;
    width: 100%;
  }
}

/* Connectivity Map Section */
.connectivity-map-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

.connectivity-map-section .choose-emtel1 {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 2rem;
}
/* Connectivity Map Section */
.connectivity-map-section1 {
  padding: 4rem 0;
  text-align: center;
}

.connectivity-map-section1 .choose-emtel2 {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 2rem;
}
.connectivity-map-text h2 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  /* color: #333; */
}

.connectivity-map-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 2rem;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 10px; */
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

.hero-section1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 60px 40px 120px 40px;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  min-height: 500px;
}

/* Particle Animation */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

/* Different particle sizes and colors */
.particle.tiny {
  width: 2px;
  height: 2px;
  background: rgba(180, 180, 180, 0.9);
}

.particle.small {
  width: 4px;
  height: 4px;
  background: rgba(160, 160, 160, 0.8);
}

.particle.medium {
  width: 8px;
  height: 8px;
  background: rgba(140, 140, 140, 0.7);
}

.particle.large {
  width: 12px;
  height: 12px;
  background: rgba(120, 120, 120, 0.6);
}

.particle.extra-large {
  width: 16px;
  height: 16px;
  background: rgba(100, 100, 100, 0.5);
}

.particle.huge {
  width: 22px;
  height: 22px;
  background: rgba(90, 90, 90, 0.4);
}

.particle.giant {
  width: 28px;
  height: 28px;
  background: rgba(80, 80, 80, 0.3);
}

/* Animation keyframes */
@keyframes floatUp1 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(20px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatUp2 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100vh) translateX(-15px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatUp3 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) translateX(10px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* .hero-content1 {
            position: relative;
            z-index: 2;
            max-width: 800px;
            text-align: center;
            color: white;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
        } */

.hero-section1 .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-section1 > * {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.options-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
/*
        .option {
           background: rgba(255, 255, 255, 0.15);
            padding: 1.5rem;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3); 
        }
*/
.option-guarantee {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .options-container {
    grid-template-columns: 1fr;
  }

  .hero-content1 {
    padding: 2rem;
  }
}
/* 
        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1); }
        } */

.hero-content1 {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-content1 .container {
  background: #000;
  color: white;
  text-align: center;
  box-shadow: 0 5px 10px rgba(239, 44, 57, 0.589);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subtitle {
  color: #ec2b38;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #cccccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.options-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 60px;
}

.option {
  text-align: left;
  max-width: 400px;
}

.option-title {
  color: #ec2b38;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.option-guarantee {
  color: #ec2b38;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.option-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cccccc;
}

/* Comparison Table */
.comparison-section {
  background: white;
  border-radius: 30px;
  padding: 40px;
  margin-top: -150px;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.comparison-title {
  text-align: center;
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.comparison-table {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.plan-column {
  flex: 1;
  padding: 30px 20px;
  text-align: center;
}

.platinum {
  background: linear-gradient(45deg, #dcdcdc 0%, #c0c0c0 50%, #a9a9a9 100%);
  color: white;
}

.gold {
  background: linear-gradient(45deg, #ffd932 0%, #ecbb50 50%, #ffc403 100%);
  color: white;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.plan-guarantee {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin-bottom: 20px;
}

.plan-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.plan-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 1.1rem;
}

.feature-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-bottom: 10px;
}

.checkmark {
  width: 20px;
  height: 20px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.feature-text {
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.4;
  padding: 0 10px;
}

.plan-target {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.9;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .hero-section1 {
    padding: 40px 20px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .options-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .comparison-table {
    flex-direction: column;
  }

  .comparison-section {
    margin: 20px;
    padding: 30px 20px;
  }
}

.benefits-section {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 30px;
  padding-top: 100px;
}
.benefits-section1 {
  background-color: #f9f9f9;
  margin-top: 100px;
  margin-bottom: 100px;
}
.trust-section {
  max-width: 1400px;
  margin: 0 auto;
}

.analytics-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.analytics-section-title {
  max-width: 600px;
  flex: 1;
  font-size: 35px;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  color: #000;
}

.analytics-section-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  flex: 1;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .analytics-section-header {
    flex-direction: column;
    gap: 20px;
  }

  .analytics-section-title {
    font-size: 28px;
  }

  .analytics-section-subtitle {
    font-size: 1rem;
  }
}

.section-header {
  margin-bottom: 60px;
}

.section-header-enterprise {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  /* max-width: 1200px; */
  margin: 0 auto;
  text-align: left;
}

.section-title-enterprise {
  max-width: 700px;
  font-size: 35px;
  font-weight: 400;
  margin: 0;
  flex: 0 0 50%; /* Takes 50% width, doesn't grow or shrink */
  animation: fadeInUp 0.8s ease-out;
}

.section-description-enterprise {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1; /* Takes remaining space */
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Alternative layout with more precise control */
.section-header-enterprise.alternative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  text-align: left;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .section-header-enterprise {
    flex-direction: column;
    gap: 20px;
  }

  .section-title-enterprise {
    flex: none;
    font-size: 28px;
  }

  .section-description-enterprise {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title-enterprise {
    font-size: 24px;
  }

  .section-description-enterprise {
    font-size: 0.9rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* enterprise broadband why choose emtel business */

.section-header-enterprise-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* flex-wrap: wrap; */
  gap: 2rem;
  margin-bottom: 60px;
  text-align: left;
}

.section-title-enterprise-1 {
  flex: 1 1 90%;
  font-size: 35px;
  font-weight: 400;
  margin: 0;
  animation: fadeInLeft 0.8s ease-out;
  line-height: 1.3;
  text-align: left;
}

.section-description-enterprise-1 {
  flex: 1 1 80%;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(
    3,
    auto
  ); /* or remove this line to let rows auto-size */
  gap: 20px;
  /* height: 600px; */
}

.feature-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
  min-height: 200px;
}

.full-width-feature {
  grid-column: span 3;
  /* margin-bottom: 400px; */
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* FIXED: Remove white background from main feature */
.feature-card.main-feature {
  background: transparent !important; /* Override the white background */
  box-shadow: none; /* Remove shadow */
  padding: 0; /* Remove padding */
  position: relative;
  overflow: hidden;
  animation-delay: 0.1s;
}

.main-feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 30px !important;
  z-index: 1;
  display: block; /* Remove any inline spacing */
}

.main-feature-image-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;

  display: block; /* Remove any inline spacing */
}

.main-feature-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Alternative approach - cleaner structure */
.main-feature-alt {
  background: transparent;
  border-radius: 30px;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.main-feature-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.features-grid .feature-card.main-feature {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
}

.businessman-illustration {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 15px;
  line-height: 1.3;
}

.main-feature .feature-title {
  color: white;
  font-size: 1.4rem;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #515151;
}

.main-feature .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .main-feature {
    grid-row: span 1;
    min-height: 300px;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 25px;
  }
}

/* IMAGE ON TOP ANS FOUR CADDS */

.dedicated-benefits-section {
  margin: 100px 0;
  background-color: #f6f6f6;
  border-radius: 30px;
}

.dedicated-container {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 100px 50px;
}

.dedicated-header {
  text-align: center;
  margin-bottom: 40px;
}

.dedicated-title {
  font-size: 2.5rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 15px;
}

.dedicated-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.dedicated-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 40px;
}

.dedicated-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 30px;
}

.dedicated-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.dedicated-card {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.dedicated-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dedicated-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 40px;
}

.dedicated-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 12px;
}

.dedicated-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .dedicated-title {
    font-size: 2rem;
  }

  .dedicated-description {
    font-size: 1rem;
  }

  .dedicated-card {
    padding: 25px;
  }
}

/* woman on the last row */

.network-benefits-section {
  margin: 100px 0;
}

.network-benefits-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.network-benefits-header {
  text-align: center;
  margin-bottom: 40px;
}

.network-benefits-title {
  font-size: 35px;
  color: #333;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.3;
}

.network-benefits-header p {
  text-align: center;
  font-size: 18px;
}

/* Grid Layout */
.network-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 30px;
}

/* Cards */
.network-card {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.network-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.network-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 40px;
}

.network-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 12px;
}

.network-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Image Card */
.network-image-card {
  background: none;
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
}

.network-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Full-width card spans all 3 columns */
.full-span {
  grid-column: span 3;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .network-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-span {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .network-benefits-grid {
    grid-template-columns: 1fr;
  }

  .full-span {
    grid-column: span 1;
  }

  .network-benefits-title {
    font-size: 2rem;
  }

  .network-card {
    padding: 25px;
  }

  .network-benefits-wrapper {
    padding: 3rem;
  }
}

/* Data Center Section */
.data-centre-section {
  background-color: #000;
  padding: 150px 150px;
  /* max-width: 1400px; */
  margin: 0 auto;
  color: #fff;
  border-radius: 30px;
}

.section-header-data-centre {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.section-title-data-centre {
  max-width: 600px;
  flex: 1 1 10%;
  font-size: 35px;
  font-weight: 400;
  margin: 0;
  animation: fadeInLeft 0.8s ease-out;
  line-height: 1.3;
}

.solution-card-data-centre:hover {
  border: 1px solid #ec2b38; /* Visible red border */
  transform: translateY(-5px); /* Moves it up by 5px */
  transition: all 0.3s ease; /* Smooth animation */
}

.section-description-data-centre {
  font-size: 1.1rem;
  line-height: 1.8;
  flex: 1;
  color: #ccc;
}

/* Fix for anchor tags to maintain card height */
.solutions-left-data-centre a {
  display: block;
  flex: 1;
}

.solutions-grid-data-centre {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: stretch;
}

.solutions-left-data-centre {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.solution-card-data-centre {
  background-color: #fff;
  color: #000;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-height: 250px;
}

.solution-icon-data-centre {
  width: 40px;
  height: 40px;
  border: 3px solid #ec2b38;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.solution-icon-data-centre::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ec2b38;
  border-radius: 50%;
}

.solution-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ec2b38;
}

.solution-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.button-wrapper {
  text-align: center;
}

/* DATA CENTRE CLOUD HERO CONTENT*/

.data-centre-container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically */
  padding: 0 2rem;
  z-index: 2;
  text-align: center;
}

.hero-content_data-centre {
  max-width: 500px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  color: #ffffff;
}

.hero-content_data-centre h1 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}

.hero-content_data-centre p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0;
  color: #ffffff;
}

.p-style {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  /* margin: 100px auto; */
}

/* Solutions Section */
.solutions-dark {
  padding: 3rem 0;
  background: #000000;
}

.solutions-dark .container {
  background: #000000;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  text-align: center;
}

.services-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  /* background-color: #fff; */
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  width: 100%;
}

.service-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 400px;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-title {
  color: #ec2b38;
  font-size: 1.4rem;
  margin: 0;
  padding-right: 1rem;
  flex: 1;
}

.service-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.checkmark-container {
  display: inline-flex;
  gap: 0.75rem; /* space between image and text */
  justify-content: flex-start;
  padding-right: 10px;
}

.checkmark-image {
  width: 50px; /* adjust as needed */
  height: 50px; /* maintain proportion */
}

.icon-row p {
  text-align: left;
  color: white;
}

.contact-info p {
  text-align: center;
  color: white;
}

/* colation why choose emtel business */
/* Container and layout */
.colocation-benefits {
  padding: 100px 10px;
  background-color: #f8f8f8;
  border-radius: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.colocation-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header: Title left, Description right */
.colocation-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 60px;
  text-align: left;
}

.colocation-title-box {
  flex: 1 1 40%;
}

.colocation-description-box {
  flex: 1 1 60%;
}

.colocation-title {
  flex: 1 1 45%;
  font-size: 35px;
  font-weight: 400;
  margin: 0;
  animation: fadeInLeft 0.8s ease-out;
  line-height: 1.3;
}

.colocation-subtitle {
  flex: 1 1 30%;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* Grid */
.colocation-grid {
  background-color: #fafafa;
  display: grid;
  grid-template-columns: repeat(
    4,
    1fr
  ); /* 4 units, to allow 1.5 = 3/2, 0.75 = 3/4 */
  gap: 20px;
}

/* Card Base */
/* Card Base - FIXED: Remove white background for feature cards */
.colocation-card-feature {
  background: transparent; /* Changed from white to transparent */
  border-radius: 30px;
  box-shadow: none; /* Remove shadow since there's no background */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Card Base */
.colocation-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.colocation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Column spans */
.col-span-1-5 {
  grid-column: span 2;
}

.col-span-1-0 {
  grid-column: span 1.5;
}

.col-span-0-75 {
  grid-column: span 1;
}

.col-span-3 {
  grid-column: span 4;
}

/* Icon, Heading, Text */
.colocation-icon {
  width: 40px;
  margin-bottom: 20px;
}

.colocation-heading {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #ec2b38;
}

.colocation-text {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

.colocation-main-feature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  animation-delay: 0.1s;
}

.colocation-main-feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.colocation-main-feature-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
  .colocation-grid {
    grid-template-columns: 1fr;
  }

  .col-span-1-5,
  .col-span-0-75 {
    grid-column: span 1;
  }

  .colocation-header-row {
    flex-direction: column;
  }
}

.benefits-section-colation {
  padding: 100px;
  background-color: black;
  border-radius: 30px;
}

.section-title-enterprise-white {
  flex: 1 1 45%;
  font-size: 35px;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
  animation: fadeInLeft 0.8s ease-out;
  line-height: 1.3;
}

.section-description-enterprise-white {
  flex: 1 1 50%;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* lift and shift section */

.liftandshift-section {
  padding: 40px 20px;
  background-color: #fbfbfb;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.liftandshift-section-dark {
  padding: 40px 20px;
  background-color: #000000;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 20px;
}

.liftandshift-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
  /* height: 300px; */
}

.liftandshift-cards-managed-sdwan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  height: auto;
  margin-top: 3rem;
}

.liftandshift-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.datacentre-cloud-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  /* margin-top: 50px; */
  /* height: 450px; */
  padding-right: 120px;
  padding-left: 120px;
}

.datacentre-cloud-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.datacentre-cloud-card h4 {
  margin-bottom: none !important;
}

.card-number {
  font-size: 20px;
  color: #ec2b38;
  font-weight: 700;
  background: #ffffff;
  border: 2px solid #ec2b38; /* This line adds the visible red border */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #ec2b38;
  line-height: 1.3;
  margin-bottom: 20px;
}

.card-description {
  font-size: 18px;
  color: #000000;
}

.section-description-liftandshift-section-white {
  flex: 1 1 50%;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 50px;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* star */

.star-icon img {
  width: 30px;
  height: auto;
  margin-bottom: 15px;
}

/* Work Area Recovery */

.icon-info-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.icon-info-card {
  flex: 1 1 250px;
  /* background-color: white; */
  border-radius: 12px;
  padding: 30px 20px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
}

.icon-info-card img {
  width: 40px;
  height: auto;
  margin-bottom: 15px;
}

.icon-info-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ec2b38;
}

.icon-info-desc {
  font-size: 18px;
  color: #000000;
}

.liftandshift-cards-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* exactly 5 columns */
  gap: 20px;
  justify-content: center;
  align-items: start;
  padding: 20px 0;
}

.liftandshift-card-5 {
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  height: 300px;
}

.data-centre-cloud-btn {
  margin: 2rem auto 0;
  display: block;
  background: #ec2b38;
  color: white;
  padding: 0.8rem 3rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

/* IAAS SECTION */

.iaas-container {
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: left; /* center vertically */
  padding: 0 2rem;
  z-index: 2;
  text-align: left;
  color: #ffffff;
}

.hero-content_iaas {
  max-width: 700px;
  width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  color: #ffffff;
}

.hero-content_iaas h1 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.hero-content_iaas p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0;
  color: #ffffff;
}

.infras-section-iaas {
  background: #ffffff;
  padding: 4rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
}

/* equal 6 IAAS container  */

.iaas-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(
    3,
    auto
  ); /* or remove this line to let rows auto-size */
  gap: 20px;
  /* height: 600px; */
}

.iaas-feature-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
  height: 400px;
}

.iaas-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.iaas-benefits-section {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 100px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
  border-radius: 30px;
}

/* Cloud Bakup Section */

.cloud-backup-container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: left; /* center vertically */
  padding: 0 2rem;
  z-index: 2;
  text-align: left;
}

.hero-content_cloud-backup {
  max-width: 700px;
  width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  color: #ffffff;
}

.hero-content_cloud-backup h1 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.hero-content_cloud-backup p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0;
  color: #ffffff;
}

/* DR Section */

.dr-container {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: left; /* center vertically */
  padding: 0 2rem;
  z-index: 2;
  text-align: left;
}

.hero-content_dr {
  max-width: 700px;
  width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  color: #ffffff;
}

.hero-content_dr h1 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.hero-content_dr p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0;
  color: #ffffff;
}

.dr-cards {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* exactly 2 cards */
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.dr-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  width: 400px;
  height: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  box-sizing: border-box;
}

/* DR Section - Centered Title Responsive */
.dr-section-middle {
  background-color: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0; /* Increased padding */
  position: relative;
  margin: clamp(80px, 12vw, 120px) 0; /* Increased margin */
  clear: both; /* Clear any floats */
}

.dr-container1-middle {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 20px);
}

/* Centered Title Styling */
.dr-container1-middle h2 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 3rem;
  line-height: 1.3;
  font-weight: 500;
  color: #000000;
  max-width: 800px; /* Limit width for better readability */
  margin-left: auto;
  margin-right: auto;
}

.dr-section {
  background-color: #ffffff;
  padding: 3rem 0;
  position: relative;
  margin: 100px;
}

.dr-container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header-enterprise {
  margin-bottom: 50px;
}

.section-title-enterprise {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.section-description-enterprise {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.dr-content {
  display: flex;
  gap: 80px;
  align-items: stretch; /* Changed to stretch for equal heights */
}

.dr-left {
  flex: 1;
  max-width: 500px;
}

.dr-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: clamp(300px, 50vw, 600px);
  min-height: 300px;
}

.dr-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.dr-image-img {
  display: block; /* remove inline gap */
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills container while cropping */
  background: transparent;
  filter: brightness(1.1) contrast(1.1);
}

.dr-right {
  flex: 1;
  display: flex; /* Make it flex container */
}

.dr-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  height: 400px; /* Match the image height */
  width: 100%;
}

.dr-feature {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dr-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-icon img {
  width: 50px;
  height: 50px;
}

.dr-feature-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ec2b38;
}

.dr-feature-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 968px) {
  .dr-content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .dr-left {
    max-width: 100%;
  }

  .dr-features {
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
  }

  .dr-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .dr-section {
    padding: 60px 0;
    margin: 50px;
  }

  .dr-container1 {
    padding: 0 15px;
  }

  .section-title-enterprise {
    font-size: 1.8rem;
  }

  .section-description-enterprise {
    font-size: 1rem;
  }

  .dr-feature {
    padding: 20px;
  }
}
/* network and security section */

.network-security-container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically */
  padding: 0 2rem;
  z-index: 2;
  text-align: center;
}

.hero-content_network-security {
  max-width: 750px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  color: #ffffff;
}
p {
  font-size: 18px;
  color: black;
}

.hero-content_network-security h1 {
  font-size: 35px;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.hero-content_network-security p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0;
  color: #ffffff;
}

.text-center-block {
  text-align: center;
  margin-bottom: 40px; /* Adjust as needed */
}

.text-center-block h2 {
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 0.5rem;
  color: #000000;
  line-height: 1.3;
}

.networks-dark {
  background: #000000;
  padding: 4rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
  margin-bottom: 20px;
}

.networks-light {
  background: #f8f8f8;
  padding: 3rem 2rem;
  border-radius: 30px; /* ⬅ Only bottom-left and bottom-right corners */
  margin-bottom: 30px;
  margin-top: 30px;
}

.networks-readmore-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ec2b38; /* red */
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px; /* pill shape */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  /* width: 400px; */
}

.networks-readmore-btn:hover {
  background-color: #c9151c;
  transform: translateY(-2px);
}

/* SDWAN SECTION */

/* .sdwan-section {
  background-image: url('../assets/black-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */

.sdwan-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  color: white;
  border-radius: 30px;
  margin-top: 20px;
  background-color: #000000; /* Fallback color */
}

.sdwan-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 30px;
}

.sdwan-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sdwan-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sdwan-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
  color: white;
}

.sdwan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.sdwan-card {
  text-align: left;
  padding: 30px;
  border-radius: 30px;

  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(40, 40, 40, 0.1) 100%
  );
  color: white;

  border: 1px solid rgba(255, 255, 255, 0.192);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(
      145deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(40, 40, 40, 0.1) 100%
    ),
    radial-gradient(
      circle at top left,
      rgba(82, 82, 82, 0.6),
      rgba(255, 255, 255, 0.1)
    );

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sdwan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #ec2b38;
}

.sdwan-card p {
  color: #ffffff;
  font-size: 18px;
}

.sdwan-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 15px;
  line-height: 1.4;
}

.sdwan-card p,
.sdwan-card li {
  font-size: 18px;
  line-height: 1.6;
}

.sdwan-card ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-top: 10px;
}

.sdwan-row-span {
  grid-column: span 2;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(40, 40, 40, 0.1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.192);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.sdwan-row-span h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 15px;
}

.sdwan-row-span p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}

/* cross selling section - sdwan */

.cross-sell-section {
  background-color: #fafafa;
  padding: 100px 10px;
  color: #222;
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 15px;
  border-radius: 30px;
  margin-top: 30px;
}

.cross-sell-content {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding-bottom: 50px;
}

.cross-sell-top img.cross-sell-image {
  /* max-width: 100%; */
  height: auto;
  border-radius: 20px;
  margin-bottom: 40px;
}

.cross-sell-title {
  color: #ec2b38;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cross-sell-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.cross-sell-description {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.cross-sell-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cross-sell-card {
  background: white;
  border-radius: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  width: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card-img-placeholder {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.card-img-placeholder img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
}
.card-body {
  padding: 20px;
}

.card-body h4 {
  font-size: 20px;
  color: #ec2b38;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-body p {
  font-size: 18px;
  color: #444;
  margin-bottom: 15px;
}

.card-body a {
  color: #ec2b38;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.card-body a:hover {
  text-decoration: underline;
}

.cross-sell-wide-row {
  width: calc((350px * 2) + 30px); /* width of 2 cards + 1 gap (30px) */
  background: white;
  border-radius: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  padding: 20px;
  text-align: left;
}

.wide-card-content h4 {
  font-size: 18px;
  color: #ec2b38;
  margin-bottom: 10px;
}

.wide-card-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

/* cyber security */

.cyber-security-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f3f3f366;
  margin-top: 20px;
  margin: 20px auto;
  margin-bottom: 20px;
  border-radius: 30px;
}
.cyber-security-container .cyber-header {
  text-align: center;
}
.cyber-security-container-dark {
  /* max-width: 1200px; */
 margin: 0 auto;
  padding: 60px 20px;
  background-color: #000000;
  margin-top: 20px;
  margin: 20px auto;
  margin-bottom: 20px;
  border-radius: 30px;
}
.cyber-security-container-dark .cyber-header {
  text-align: center;
}
.content-container-light .subtitle {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
}

.content-container-light-1 .subtitle {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
}

.content-container-light-1 {
  flex: 0 0 50%;
  /* padding-left: 60px;
  padding-right: 150px; */
}

.content-container-light-1 p,
.content-container-light-1 h3 {
  color: #ffffff;
}

.content-container p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 25px;
}

.header,
.header-dark {
  text-align: center;
}

.header-dark {
  text-align: center;
  margin-bottom: 50px;
}

.header h1,
.header-dark h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.intro-text {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
}


.solution-section {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            gap: 40px;
        }

        .solution-section:last-child {
            margin-bottom: 0;
        }

        .solution-section.reverse {
            flex-direction: row-reverse;
        }

        .image-container {
            flex: 0 0 45%;
            max-width: 45%;
        }

        .image-container img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .content-container {
            flex: 1;
            padding: 0 20px;
        }
.content-container h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}

.content-container .subtitle {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 500;
}

.content-container p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 25px;
}

.learn-more-btn {
  background: #ec2b38;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  text-decoration: none !important;
}


.learn-more-btn a{
  text-decoration: none !important;
}

.learn-more-btn:hover {
  background: #ec2b38;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

@media (max-width: 768px) {
  .solution-section,
  .solution-section.reverse {
    flex-direction: column;
  }

  .image-container {
    min-height: 200px;
  }

  .content-container {
    padding: 30px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}

/* COMPREHENSIVE RESPONSIVE BREAKPOINTS */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
  .container,
  .container-internet {
    padding: 2rem 1.5rem;
  }

  .container-internet1 {
    gap: 2rem;
  }

  .private-network .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .why-choose .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .options-container {
    gap: 40px;
  }

  .comparison-section {
    max-width: 95%;
    padding: 30px 20px;
  }

  .comparison-table {
    flex-direction: column;
    max-width: 400px;
  }

  .section-header-enterprise,
  .section-header-data-centre,
  .colocation-header-row {
    flex-direction: column;
    text-align: center;
  }

  .section-title-enterprise,
  .section-description-enterprise,
  .section-title-data-centre,
  .section-description-data-centre {
    flex: 1 1 100%;
  }

  .solutions-grid-data-centre {
    grid-template-columns: 1fr;
  }

  .dr-content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .dr-left {
    max-width: 100%;
  }

  .dr-image {
    height: 250px;
  }

  .sdwan-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .solution-section {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .container,
  .container-internet {
    padding: 2rem 1rem;
  }

  .container-internet1 {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero {
    padding-top: 80px;
    min-height: 80vh;
  }

  .hero-container,
  .private_network_hero-container {
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-content,
  .private_network_hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-container-internet {
    padding: 1rem;
    justify-content: center;
    text-align: center;
  }

  .hero-content-internet {
    margin-top: 100px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 30px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .possibilities-grid,
  .possibilities-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  form {
    grid-template-columns: 1fr;
  }

  form textarea {
    grid-column: span 1 !important;
  }

  form button.submit-btn {
    grid-column: span 1;
    width: 100%;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
  }

  .options-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .option {
    text-align: center;
    max-width: 100%;
  }

  .comparison-section {
    margin: 20px;
    padding: 25px 15px;
  }

  .features-grid,
  .iaas-features-grid {
    grid-template-columns: 1fr;
  }

  .main-feature {
    min-height: 200px;
  }

  .network-benefits-grid {
    grid-template-columns: 1fr;
  }

  .full-span {
    grid-column: span 1;
  }

  .data-centre-section {
    padding: 60px 15px;
  }

  .liftandshift-cards,
  .liftandshift-cards-5 {
    grid-template-columns: 1fr;
  }

 

  .dr-cards {
    grid-template-columns: 1fr;
  }

  .dr-card {
    min-height: auto;
    height: auto;
  }

  .dr-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sdwan-grid {
    grid-template-columns: 1fr;
  }

  .sdwan-card {
    padding: 25px;
  }

  .cross-sell-cards {
    grid-template-columns: 1fr;
  }

  .solution-section,
  .solution-section.reverse {
    flex-direction: column;
    margin-left: 5px;
    margin-right: 5px;
  }

  .image-container {
    min-height: 200px;
  }

  .content-container {
    padding: 30px 20px;
  }

  .colocation-grid {
    grid-template-columns: 1fr;
  }

  .benefits-section-colation {
    padding: 60px 15px;
  }

  .learn-more-local-private-network,
  .learn-more-international-private-network {
    width: 100%;
    max-width: none;
  }

  .icon-info-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .container,
  .container-internet {
    padding: 1.5rem 0.5rem;
  }

  .hero {
    padding-top: 60px;
    min-height: 70vh;
  }

  .hero-container,
  .private_network_hero-container,
  .hero-container-internet {
    padding: 0 0.5rem;
  }

  .hero-content-internet {
    margin-top: 60px;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .cta-button {
    width: 120px;
    padding: 8px;
    font-size: 12px;
  }

  .services-inner {
    padding: 2rem 1rem 0 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-icon img {
    width: 60px;
    height: 60px;
  }

  .solution-card,
  .possibility-item {
    padding: 1.5rem 1rem;
  }

  .contact h2 {
    font-size: 1.3rem;
  }

  .contact p {
    font-size: 0.9rem;
  }

  form input,
  form select,
  form textarea {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  form button.submit-btn {
    font-size: 0.9rem;
    padding: 0.7rem 2rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .possibilities-image img {
    width: 120px;
  }

  .footer {
    padding: 2rem 0.5rem;
  }

  .footer-section h3 {
    font-size: 0.9rem;
  }

  .footer-section ul li {
    font-size: 0.8rem;
  }

  .hero-section1 {
    padding: 40px 15px 80px 15px;
  }

  .comparison-section {
    margin: 10px;
    padding: 20px 10px;
  }

  .feature-card,
  .dedicated-card,
  .network-card {
    padding: 20px 15px;
  }

  .data-centre-section {
    padding: 50px 10px;
  }

  .solution-card-data-centre {
    padding: 20px;
    min-height: 200px;
  }

  .liftandshift-section,
  .liftandshift-section-dark {
    padding: 60px 10px;
  }

  .liftandshift-card,
  .datacentre-cloud-card,
  .liftandshift-card-5 {
    padding: 25px 15px;
    min-height: auto;
  }

  .dr-section {
    margin: 60px 10px;
  }

  .dr-card {
    padding: 25px 15px;
  }

  .dr-feature {
    padding: 20px 15px;
  }

  .sdwan-section {
    padding: 60px 10px;
  }

  .sdwan-card,
  .sdwan-row-span {
    padding: 20px 15px;
  }

  .cross-sell-section {
    padding: 60px 5px;
  }

  .cross-sell-card {
    margin: 0 5px;
  }

  .card-body {
    padding: 15px;
  }

  .cyber-security-container {
    padding: 30px 10px;
  }

  .solution-section {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .content-container {
    padding: 25px 15px;
  }

  .benefits-section-colation {
    padding: 50px 10px;
  }

  .colocation-card {
    padding: 20px 15px;
  }

  .dedicated-benefits-section,
  .network-benefits-section,
  .benefits-section {
    margin: 60px 0;
  }

  .dedicated-container,
  .network-benefits-wrapper {
    padding: 3rem;
  }

  .private-network-content1,
  .private-local-network-content1 {
    text-align: center;
  }

  .stay-connected {
    text-align: center;
  }

  .private-network-image1 {
    text-align: center;
    margin-top: 2rem;
  }
}

/* Extra Small Devices */
@media (max-width: 320px) {
  .container,
  .container-internet {
    padding: 1rem 0.25rem;
  }

  .nav-container {
    padding: 0 0.25rem;
  }

  .cta-button {
    width: 100px;
    padding: 6px;
    font-size: 11px;
  }

  .services-inner {
    padding: 1.5rem 0.5rem 0 0.5rem;
  }

  .service-icon img {
    width: 50px;
    height: 50px;
  }

  .solution-card,
  .possibility-item {
    padding: 1rem 0.75rem;
  }

  .contact {
    padding: 4rem 0;
  }

  .contact .container {
    padding: 1.5rem 0.5rem;
  }

  form input,
  form select,
  form textarea {
    padding: 0.6rem;
    font-size: 0.8rem;
  }

  .footer {
    padding: 1.5rem 0.25rem;
  }

  .hero-section1 {
    padding: 30px 10px 60px 10px;
  }

  .comparison-section {
    margin: 5px;
    padding: 15px 5px;
  }

  .feature-card,
  .dedicated-card,
  .network-card {
    padding: 15px 10px;
  }

  .liftandshift-card,
  .datacentre-cloud-card,
  .liftandshift-card-5 {
    padding: 20px 10px;
  }

  .dr-card {
    padding: 20px 10px;
  }

  .sdwan-card,
  .sdwan-row-span {
    padding: 15px 10px;
  }

  .cross-sell-card {
    margin: 0 2px;
  }

  .card-body {
    padding: 10px;
  }

  .content-container {
    padding: 20px 10px;
  }

  .colocation-card {
    padding: 15px 10px;
  }
}

/* High Resolution Displays */
@media (min-width: 1200px) {
  .container,
  .container-internet {
    max-width: 1800px;
    padding: 4rem 3rem;
  }

  .container-internet1 {
    max-width: 1400px;
    gap: 6rem;
  }

  .services-inner {
    padding: 4rem 3rem 0 3rem;
  }

  .hero-container,
  .private_network_hero-container {
    padding: 0 3rem;
  }

  .features-grid {
    gap: 30px;
  }

  .solutions-grid-data-centre {
    gap: 50px;
  }

  .data-centre-section {
    padding: 150px 150px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  .container,
  .container-internet {
    max-width: 2000px;
    padding: 5rem 4rem;
  }

  .hero-container,
  .private_network_hero-container {
    padding: 0 4rem;
  }

  .services-inner {
    padding: 5rem 4rem 0 4rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .top-nav,
  .mobile-menu,
  .footer {
    display: none;
  }

  .hero {
    padding-top: 0;
  }

  .container,
  .container-internet {
    padding: 1rem;
    box-shadow: none;
  }

  .services .container {
    background: white;
    color: black;
    box-shadow: none;
  }

  .section-title1,
  .section-title-white {
    color: black;
  }

  .private-network-content p,
  .private-local-network-content-p,
  .p-white {
    color: rgb(253, 253, 253);
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .solution-card,
  .possibility-item,
  .feature-card,
  .dedicated-card,
  .network-card {
    background: #2a2a2a;
    color: #fff;
  }

  .solution-card p,
  .possibility-item p,
  .feature-description,
  .dedicated-card-text,
  .network-card-text {
    color: #ccc;
  }
}

/* Focus styles for better accessibility */
.cta-button:focus,
.submit-btn:focus,
.learn-more-btn:focus,
.networks-readmore-btn:focus,
.learn-more-local-private-network:focus,
.learn-more-international-private-network:focus {
  outline: 2px solid #ec2b38;
  outline-offset: 2px;
}

.nav-links a:focus,
.top-nav-item:focus {
  outline: 2px solid #ec2b38;
  outline-offset: 1px;
}

/* Ensure minimum touch target sizes on mobile */
@media (max-width: 768px) {
  .nav-links a,
  .top-nav-item,
  .cta-button,
  .submit-btn,
  .learn-more-btn {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 60vh;
    padding-top: 60px;
  }

  .hero-content-internet {
    margin-top: 40px;
  }

  .hero-section1 {
    padding: 30px 20px 60px 20px;
    min-height: 400px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon img,
  .solution-icon img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Container queries for modern browsers */
@supports (container-type: inline-size) {
  .services-grid {
    container-type: inline-size;
  }

  @container (max-width: 600px) {
    .service-card1 {
      width: 100%;
      margin: 0;
    }
  }
}

/* MOBILE-FIRST ENHANCEMENTS */

@media (max-width: 992px) {
  .top-nav-container {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .top-nav-left,
  .top-nav-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar {
    top: 0;
    padding: 1rem 0;
  }

  .nav-container {
    padding: 0 1rem;
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-icons {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Hero and content adjustments */
  .hero {
    padding-top: 120px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .private_network_hero-container {
    max-width: 100%;
  }

  .private_network_hero-container h1 {
    font-size: 2.5rem;
  }

  .why-choose .container,
  .private-network .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .private-network-content,
  .private-network-image {
    text-align: center;
  }

  .contact .container {
    padding: 1.5rem;
  }

  .services-grid,
  .solutions-grid,
  .possibilities-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .solution-card {
    padding: 2rem 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  form {
    grid-template-columns: 1fr;
  }

  form textarea {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .top-nav-container {
    padding: 0 0.5rem;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .private_network_hero-container {
    max-width: 100%;
  }

  .private_network_hero-container h1 {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .possibilities-image img {
    width: 150px;
  }

  .container {
    padding: 1.5rem 1rem;
  }

  .service-icon img,
  .solution-icon img {
    width: 50px;
    height: 50px;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-section ul li {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 90px;
  }

  .wave-image.no-top-padding {
    height: auto;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  form button.submit-btn {
    grid-column: span 1;
  }

  .services-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .container {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
  }

  .top-nav-container {
    padding: 0 1rem;
  }

  .navbar {
    top: 35px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-container {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .private_network_hero-container {
    max-width: 100%;
  }

  .private_network_hero-container h1 {
    font-size: 2.5rem;
  }

  .private-network .container,
  .why-choose .container,
  .contact .container {
    grid-template-columns: 1fr;
  }

  .possibilities-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .possibilities-image {
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .services-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .possibilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  form {
    grid-template-columns: 1fr;
  }

  form textarea {
    grid-column: span 1 !important;
  }

  form button.submit-btn {
    grid-column: span 1;
    width: 100%;
  }

  .top-nav {
    font-size: 0.8rem;
  }

  .top-nav-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .navbar {
    top: 0;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
  }

  .services-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .possibilities-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .possibilities-image {
    text-align: center;
  }

  .possibilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-content_pni {
    max-width: 100%;
  }

  .private_network_hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .private_network_hero-container h1 {
    font-size: 2.5rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-content p,
  .section-subtitle {
    font-size: 1rem;
  }

  .service-card,
  .solution-card {
    padding: 1.5rem 1rem;
  }

  .contact h2 {
    font-size: 1.5rem;
  }

  .contact p {
    font-size: 0.95rem;
  }

  form input,
  form select,
  form textarea {
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  form button.submit-btn {
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
    grid-column: span 1;
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .colocation-grid {
    grid-template-columns: 1fr;
  }

  .col-span-1-5,
  .col-span-0-75 {
    grid-column: span 1;
  }

  .colocation-header-row {
    flex-direction: column;
  }
}

@media (max-width: 968px) {
  .dr-content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .dr-left {
    max-width: 100%;
  }

  .dr-features {
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
  }

  .dr-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .dr-section {
    padding: 60px 0;
  }

  .dr-container {
    padding: 0 15px;
  }

  .dr-title {
    font-size: 1.8rem;
  }

  .dr-description {
    font-size: 1rem;
  }

  .dr-feature {
    padding: 20px;
  }
}

/* DDOS PROTECTION */

.ddos-protection-dark {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 100px 300px;
  background-color: black;
  border-radius: 30px;
}

.ddos-title {
  text-align: center;
  margin-bottom: 80px;
}

.ddos-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  margin-top: 80px;
}

.ddos-feature {
  text-align: left;
}

.ddos-feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.ddos-checkmark {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.ddos-checkmark::after {
  content: "✓";
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.ddos-feature h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.ddos-feature p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .ddos-protection-dark {
    padding: 60px 20px;
  }

  .ddos-title h1 {
    font-size: 2.4rem;
  }

  .ddos-features {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .ddos-feature h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .ddos-title h1 {
    font-size: 2rem;
  }

  .ddos-feature-header {
    align-items: flex-start;
  }

  .ddos-checkmark {
    margin-top: 2px;
  }
}

/* DDOS LIMITATIONS SECTION */

.ddos-limitations-section {
  background: #ec2b38;
  color: #fff;
  padding: 80px 40px;
  border-radius: 24px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.ddos-limitations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ddos-limitations-header {
  text-align: center;
  margin-bottom: 60px;
}

.ddos-limitations-title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ddos-limitations-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  color: white;
}

.ddos-limitations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 60px;
}

.ddos-limitation-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ddos-limitation-icon {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ddos-limitation-icon::after {
  content: "✕";
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.ddos-limitation-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ddos-limitations-section {
    padding: 60px 20px;
    border-radius: 16px;
  }

  .ddos-limitations-title {
    font-size: 2.4rem;
  }

  .ddos-limitations-subtitle {
    font-size: 1.1rem;
  }

  .ddos-limitations-grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .ddos-limitation-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ddos-limitations-title {
    font-size: 2rem;
  }

  .ddos-limitations-subtitle {
    font-size: 1rem;
  }
}

/* SASE */

.sase-benefits-section {
  background: #000;
  color: #fff;
  padding: 80px 40px;
  border-radius: 30px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.sase-benefits-container {
  max-width: 1300px;
  margin: 0 auto;
}

.sase-benefits-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.sase-benefits-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.sase-benefits-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  text-align: left;
}

.sase-benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sase-benefits-image {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
.sase-benefits-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
    linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
    linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
  background-size: 30px 30px;
  background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
  opacity: 0.3;
}

.sase-benefits-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 600px;
}

.sase-benefit-card {
  background: #fff;
  color: #333;
  padding: 32px;
  border-radius: 30px;
  position: relative;
}

.sase-benefit-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sase-benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 12px;
  line-height: 1.2;
}

.sase-benefit-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .sase-benefits-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sase-benefits-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sase-benefits-title {
    font-size: 3rem;
  }

  .sase-benefits-image {
    height: 400px;
  }

  .sase-benefits-right {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .sase-benefits-section {
    padding: 60px 20px;
  }

  .sase-benefits-title {
    font-size: 2.5rem;
  }

  .sase-benefits-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    height: auto;
  }

  .sase-benefit-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .sase-benefits-title {
    font-size: 2rem;
  }

  .sase-benefits-description {
    font-size: 1rem;
  }
}

/* APP SECTION */
.sase-applications-section {
  background: #4a4a4a;
  color: #fff;
  padding: 80px 40px;
  border-radius: 30px;
  margin: 0 auto;
}

.sase-applications-container {
  max-width: 1300px;
  margin: 0 auto;
}

.sase-applications-header {
  text-align: center;
  margin-bottom: 60px;
}

.sase-applications-title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.sase-applications-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 1400px;
  margin: 0 auto;
}

.sase-applications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 600px;
}

.sase-application-card {
  background: #fff;
  color: #3f3f3f;
  padding: 32px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}

.sase-application-large {
  grid-column: 3;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.sase-application-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
    linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
    linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
  background-size: 30px 30px;
  background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
  opacity: 0.3;
}

.sase-application-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 3px solid #ec2b38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sase-application-icon::after {
  content: "⏰";
  font-size: 20px;
}

.sase-application-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sase-application-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .sase-applications-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .sase-application-large {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 300px;
  }

  .sase-applications-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .sase-applications-section {
    padding: 60px 20px;
  }

  .sase-applications-title {
    font-size: 2.4rem;
  }

  .sase-applications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sase-application-large {
    grid-column: 1;
    height: 250px;
  }

  .sase-application-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .sase-applications-title {
    font-size: 2rem;
  }

  .sase-applications-subtitle {
    font-size: 1rem;
  }
}

/* endpoint section */

.endpoint-protection-container {
  margin: 0 auto;
  padding: 60px;
  background: #000000;
  border-radius: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.endpoint-protection-header {
  text-align: center;
  margin-bottom: 60px;
}

.endpoint-protection-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 30px;
  line-height: 1.2;
}

.endpoint-protection-intro {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
  max-width: 1200px;
  margin: 0 auto;
}

.endpoint-protection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.endpoint-protection-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.endpoint-protection-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 30px;
  line-height: 1.3;
}

.endpoint-protection-section-title span {
  color: #ffffff;
}

.endpoint-protection-section p {
  color: white;
}

.endpoint-protection-image {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  object-position: center;
}

.endpoint-protection-text {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.endpoint-protection-features {
  list-style: none;
}

.endpoint-protection-features li {
  margin-bottom: 20px;
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.endpoint-protection-features li strong {
  color: #ffffff;
  font-weight: 600;
}

.endpoint-protection-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 8px;
  flex-shrink: 0;
}

.endpoint-light {
  list-style: none;
}

.endpoint-light li {
  margin-bottom: 20px;
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.endpoint-light li strong {
  color: #000000;
  font-weight: 600;
}

.endpoint-protection-bullet-light {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  body {
    padding: 20px 15px;
  }

  .endpoint-protection-container {
    padding: 40px 20px;
  }

  .endpoint-protection-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }

  .endpoint-protection-title {
    font-size: 2rem;
  }

  .endpoint-protection-intro {
    font-size: 0.95rem;
  }

  .endpoint-protection-section-title {
    font-size: 1rem;
  }

  .endpoint-protection-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px 10px;
  }

  .endpoint-protection-container {
    padding: 30px 15px;
  }

  .endpoint-protection-title {
    font-size: 1.8rem;
  }

  .endpoint-protection-intro {
    font-size: 0.9rem;
  }

  .endpoint-protection-section {
    padding: 15px;
  }
}

.emtel-choice-section {
  background: #000;
  color: #fff;
  padding: 80px 40px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  margin-top: 30px;
}

.emtel-choice-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.emtel-choice-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.emtel-choice-title {
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 3.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.emtel-choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.emtel-choice-card {
  background: #fff;
  color: #333;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.emtel-choice-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  margin-bottom: 30px;
  object-fit: cover;
  object-position: center;
}

.emtel-choice-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ec2b38;
  margin-bottom: 20px;
  line-height: 1.3;
}

.emtel-choice-card-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .emtel-choice-section {
    padding: 60px 20px;
  }

  .emtel-choice-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .emtel-choice-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .emtel-choice-card {
    padding: 30px;
  }

  .emtel-choice-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .emtel-choice-title {
    font-size: 2rem;
  }

  .emtel-choice-card {
    padding: 20px;
  }

  .emtel-choice-card-title {
    font-size: 1.2rem;
  }

  .emtel-choice-card-text {
    font-size: 0.95rem;
  }
}

.service-operations-section {
  background: #515151;
  color: #fff;
  padding: 80px 40px;
  border-radius: 30px;

  margin: 0 auto;
}

.service-operations-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.service-operations-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
}

.service-operations-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.service-operations-tagline {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .service-operations-section {
    padding: 60px 20px;
  }

  .service-operations-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .service-operations-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .service-operations-tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .service-operations-section {
    padding: 50px 15px;
  }

  .service-operations-title {
    font-size: 2rem;
  }

  .service-operations-description {
    font-size: 0.95rem;
  }

  .service-operations-tagline {
    font-size: 1rem;
  }
}

.possibilities-dark-2 {
  padding: 3rem 0;
  background: #000000;
  position: relative;
  margin-bottom: 30px;
  border-radius: 30px;
  margin-top: 30px;
}

.possibilities-dark-2 {
  position: relative;
  overflow: hidden; /* Prevents image from overflowing */
  /* Your existing styles */
}

.emtel-choice-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1; /* Behind content */
}

/* Optional: Add overlay for better text readability */
.possibilities-dark-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.possibilities-dark-2 .container {
  position: relative;
  z-index: 3; /* Content appears above image and overlay */
}

/* sip */

/* Business Container Section */
.business-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ededed;
  padding: 60px 40px;
  border-radius: 12px;
  gap: 60px;
  flex-wrap: wrap;
  margin: 60px 0;
}

.business-img {
  width: auto;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.business-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.business-content {
  max-width: 500px;
  flex: 1;
  min-width: 300px;
}

.business-content h2 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #000000;
  line-height: 1.2;
}

.business-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

/* Why Container Section */
.why-container {
  background: #000;
  color: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  margin: 60px 0;
  text-align: center;
}

.why-container h2 {
  margin-bottom: 40px;
}

.why-img {
  height: 400px;
  border-radius: 8px;
  margin: 0 auto 40px;
  max-width: 80%;
  overflow: hidden;
}

.why-img img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.why-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.why-left {
  flex: 1 1 45%;
  min-width: 300px;
}

.why-right {
  flex: 1 1 45%;
  min-width: 300px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.checkmark-image {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.why-text {
  font-size: 18px;
  line-height: 1.6;
}

.why-text strong {
  font-weight: 600;
  color: #fff;
}

.why-box {
  margin-bottom: 30px;
}

.why-box h3.red {
  color: #e11d2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.why-box ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.7;
}

.why-box li {
  font-size: 18px;

  margin-bottom: 8px;
}

.section-divider {
  border: none;
  height: 1px;
  background: #333;
  margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .business-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .business-img {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }

  .business-content {
    max-width: 100%;
    text-align: center;
  }

  .business-content h2 {
    font-size: 28px;
  }

  .business-content p {
    font-size: 18px;
  }

  .why-container {
    padding: 40px 20px;
  }

  .why-container h2 {
    font-size: 24px;
  }

  .why-columns {
    flex-direction: column;
    gap: 30px;
  }

  .why-left,
  .why-right {
    flex: 1 1 100%;
  }

  .why-img {
    height: 150px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .business-container {
    padding: 30px 15px;
  }

  .why-container {
    padding: 30px 15px;
  }

  .business-content h2 {
    font-size: 24px;
  }

  .business-content p {
    font-size: 15px;
  }
}

/* bio */

.description-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.description-paragraph-light {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 1.5rem;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.description-paragraph:last-of-type {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .internet-dia1 {
    padding: 60px 15px;
  }

  .section-title-white {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .description-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .container-internet1 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title-white {
    font-size: 2rem;
  }

  .description-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .internet-dia1 {
    padding: 50px 10px;
  }
}

.internet-dia2 {
  background-color: #171717;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px; /* ⬅ Only bottom-left and bottom-right corners */
  margin-bottom: 30px;
}

.container-internet2 {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.internet-dia3 {
  background-color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.container-internet3 {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* business communication */

.sip-trunking-section {
  background: #e6e6e6;
  padding: 60px 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-radius: 30px;
}

.container-4 {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.content-area {
  padding: 0;
}

.service-tag {
  display: inline-block;
  background: #ff4757;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.description {
  font-size: 18px;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.6;
}

.features-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 18px;
  color: #000000;
  line-height: 1.4;
}

.features-list li::before {
  content: "•";
  color: #000000;
  font-size: 20px;
  margin-right: 12px;
  margin-top: -2px;
}

.best-for-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.best-for-text {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sip-trunking-section {
    padding: 40px 20px;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .image-container-1 {
    height: 400px;
  }
}

/* second container - business communication */

.pabx-hero-section {
  background-color: #4d4d4d;
  padding: 60px 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 30px;
  border-radius: 30px;
}

.pabx-container {
  margin: 0 auto;
  width: 100%;
}

.pabx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pabx-content {
  padding: 0;
  color: white;
}

.pabx-label {
  display: inline-block;
  background: transparent;
  color: #ff4757;
  padding: 0;
  border-radius: 0;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.pabx-title {
  font-size: 2.8rem;
  font-weight: 400;
  color: white;
  margin-bottom: 32px;
  line-height: 1.2;
}

.pabx-text {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 48px;
  line-height: 1.6;
}

.pabx-features h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.pabx-list {
  list-style: none;
  margin-bottom: 48px;
}

.pabx-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.5;
}

.pabx-list li::before {
  content: "•";
  color: #e0e0e0;
  font-size: 20px;
  margin-right: 16px;
  margin-top: -2px;
}

.pabx-target h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.pabx-target-text {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 48px;
}

.pabx-btn {
  display: inline-block;
  background: #ff4757;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 400;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.pabx-btn:hover {
  background: #ff3742;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.image-container-1 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* background: linear-gradient(145deg, #1a2332 0%, #2c3e50 50%, #34495e 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 100%;
}

.image-container-1 img {
  max-width: 80%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .pabx-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pabx-hero-section {
    padding: 40px 20px;
    margin: 10px;
  }

  .pabx-title {
    font-size: 2.2rem;
  }

  .pabx-image {
    height: 300px;
  }
}

.sms-hero-section {
  background: #000000;
  padding: 60px 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 30px;
  border-radius: 30px;
}

.sms-container {
  margin: 0 auto;
  width: 100%;
}

.sms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sms-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
  height: auto;
  min-height: 100%;
}

.sms-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.sms-content {
  padding: 0;
  color: white;
}

.sms-label {
  display: inline-block;
  background: transparent;
  color: #ff4757;
  padding: 0;
  border-radius: 0;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.sms-title {
  font-size: 2.8rem;
  font-weight: 400;
  color: white;
  margin-bottom: 32px;
  line-height: 1.2;
}

.sms-text {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 48px;
  line-height: 1.6;
}

.sms-features h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.sms-list {
  list-style: none;
  margin-bottom: 48px;
}

.sms-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.5;
}

.sms-list li::before {
  content: "•";
  color: #e0e0e0;
  font-size: 20px;
  margin-right: 16px;
  margin-top: -2px;
}

.sms-target h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.sms-target-text {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 48px;
}

.sms-btn {
  display: inline-block;
  background: #ff4757;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 400;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.sms-btn:hover {
  background: #ff3742;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

@media (max-width: 768px) {
  .sms-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sms-hero-section {
    padding: 40px 20px;
    margin: 10px;
  }

  .sms-title {
    font-size: 2.2rem;
  }

  .sms-image {
    height: 300px;
  }
}

.ddos-container {
  margin-top: 30px;
  background: #f6f6f6;
  /* min-height: 100vh; */
  padding: 100px 20px;
  border-radius: 30px;
}

.ddos-container h1,
.ddos-container h2 {
  text-align: center;
}

.ddos-main-title {
  text-align: center;
  color: #e74c3c;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.ddos-subtitle {
  text-align: center;
  color: #000000;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 80px;
}

.ddos-cards-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ddos-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ddos-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.ddos-image-container {
  /* height: 200px; */
  overflow: hidden;
  position: relative;
}

.ddos-image {
  box-sizing: border-box; /* padding stays inside the set width */
  width: 100%;
  height: 100%;
  background: white;
  position: relative;
  padding: 10px;
}

.ddos-image img {
  display: block;
  width: 100%;
  height: auto;
}

.ddos-card-content {
  padding: 30px 25px;
}

.ddos-card-title {
  color: #ec2b38;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ddos-card-description {
  color: #7f8c8d;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 768px) {
  .ddos-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .ddos-main-title {
    font-size: 32px;
  }

  .ddos-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
  }
}


#learn-more-6{
  margin-top: 50px;
}


/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
  .section-header-enterprise-1, .section-header-enterprise .alternative {
    flex-direction: column; /* stack vertically */
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 40px;
  }

  .section-title-enterprise-1, .section-header-enterprise .alternative {
    font-size: 26px;   /* smaller heading */
    text-align: center;
  }

  .section-description-enterprise-1, .section-description-enterprise {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title-enterprise-1, .section-title-enterprise {
    font-size: 22px;   /* even smaller for small phones */
    line-height: 1.4;
  }

  .section-description-enterprise-1, .section-description-enterprise {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}