/*Importing Font Style*/
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  /* Colors */
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #0000FF;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;

  /* Font size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-1: 1.5rem;
  --font-size-x1: 2rem;
  --font-size-xx1: 2.3rem;

  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border weight */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Site max width */
  --site-max-width: 1300px;

}

html {
  scroll-behavior: smooth;
}

/* Stylings for whole site */
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100px;
}

.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

.section-title {
  text-align: center;
  padding: 30px;
  text-transform: uppercase;
  font-size: var(--font-size-x1);
}

.section-title::after {
  content: "";
  width: 100px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: var(--border-radius-s);
  background: var(--secondary-color);

}

 
/* Navbar styling */
  header {
  position: fixed; 
   width: 100%; 
   z-index: 50; 
  /* top: 0; */
  /* display: flex;  */
  /* justify-content: space-between;  */
  /* align-items: center; */
  background: var(--secondary-color);
} 


.navbar {
  display: flex; 
  justify-content: space-between; 
  padding: 1rem 2rem; 
  width: 100%;
}

.navbar .nav-logo .logo-text {
  font-size: var(--font-size-x1);     
  font-weight: var(--font-weight-bold); 
  color: var(--white-color);          

}

.navbar .nav-menu .nav-link {
  padding: 0.5rem 1rem; 
  color: var(--white-color);
  border-radius: 0.375rem; 
  border: 2px solid transparent;
  border-radius: var(--border-radius-m);
  text-decoration: none;
}

 .navbar .nav-menu .nav-link:hover {
    color: var(--secondary-color);
    background: var(--white-color);
    border-color: var(--white-color);
} 

.navbar :where(#menu-close-button, #menu-open-button) {
  display: none;
}

/* Hero section styling */

.hero-section {
  display: flex;
  background: var(--secondary-color);
  min-height: 100vh;
  color: var(--white-color);
  align-items: center;
  padding: 7rem 2rem 2rem;
}

.hero-section .section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap; 
}

.hero-section .hero-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 50%;
  margin-top: 1rem;
} 

.hero-section .hero-details .title {
  font-size: var(--font-size-xx1);
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
}

.hero-details .description {
  max-width: 70%;
  font-size: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}


.hero-details .buttons {
  display: flex;
  gap: 23px;
}


.hero-details .button {
  padding: 10px 26px;
  border: 2px solid transparent;
  color: var(--secondary-color);
  border-radius: var(--border-radius-m);
  background: var(--white-color);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;

}

.hero-details .button:hover,
.hero-details .login {
  color: var(--white-color);
  border-color: var(--white-color);
  background: transparent;
}

.hero-section .hero-details .login:hover {
  border-color: var(--secondary-color);
}

.hero-image-wrapper {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80vh;
}


.hero-image {
  width: 100%; 
  max-height: auto;
  object-fit: contain;
}

/* Network section styling */
.network-section {
  padding: 10px;
  background-color: var(--white-color);
  text-align: center;
}

.network-section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  margin-top: 10px;
  color: var(--dark-color);
}

.networks {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 25px;
}

.network {
  background-color: var(--light-pink-color);
  border-radius: 12px;
  padding: 20px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 1.4rem;
  color: #000;
}

.network span {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
}

/* Hover effects for each network */
.network.mtn:hover {
  background-color: #ffcc00;
  color: #000;
  box-shadow: 0 40px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-0.5rem);
}

.network.glo:hover {
  background-color: #008000;
  color: #fff;
  box-shadow: 0 40px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-0.5rem);
}

.network.airtel:hover {
  background-color: #ee1c25;
  color: #fff;
  box-shadow: 0 40px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-0.5rem);
}

.network.mobile9:hover {
  background-color: #009a44;
  color: #fff;
  box-shadow: 0 40px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-0.5rem);
}
.network.wifi:hover {
  background-color: blue;
  color: #fff;
  box-shadow: 0 40px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-0.5rem);
}
.network.data:hover {
  background-color: purple;
  color: #fff;
  box-shadow: 0 40px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-0.5rem);
}



/* About Section Styling */
.about-section {
  padding: 10px;
  background: var(--light-pink-color);
  color: var(--dark-color);
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 20px 0 30px;
  margin-top: -15px;
  text-align: left;
  font-size: var(--font-size-m);
}

.about-section .about-details .text2 {
  line-height: 30px;
  margin: 50px 0 30px;
  text-align: left;
  display: flex;
  gap: 23px;

}

.about-section .about-details .register-button {
  padding: 10px 26px;
  margin-top: 5px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  background: var(--secondary-color);
  border-radius: var(--border-radius-m);
  border: 1px solid var(--white-color);
  transition: 0.3s ease;

}

.about-section .about-details .register-button:hover {
  color: var(--secondary-color);
  background: transparent;
}

.about-paragraphs {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-column {
  flex: 1;
  min-width: 280px;
}

.about-paragraphs .text,
.about-paragraphs .text2 {
  line-height: 30px;
  text-align: left;
  font-size: var(--font-size-m);
  margin-bottom: 20px;
}

.go-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.go-text {
  flex: 1;
  min-width: 200px;
  margin-top: 40px;
  margin-bottom: 40px;

}

.go-services {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}


.go-services li {
  margin-bottom: 12px;
  font-size: var(--font-size-m);
  display: flex;
  align-items: center;
  gap: 10px;
}

.go-services i {
  color: var(--secondary-color);
}

/* Sevice section styling */

.services-section {
  padding: 10px;
  background: var(--white-color);
  color: var(--dark-color);
}

.services-section .section-title {
  margin-top: -25px;
}

.services-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.services-text {
  flex: 1;
  min-width: 300px;
}

.services-subtext {
  font-size: var(--font-size-m);
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  margin-bottom: 12px;
  font-size: var(--font-size-m);
}

.services-list span {
  font-weight: var(--font-weight-bold);
  margin-right: 8px;
  color: var(--secondary-color);
}

.services-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.services-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat h3 {
  font-size: var(--font-size-1);
  margin-bottom: 8px;
}

.stat p {
  font-size: var(--font-size-x1);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}


/* Why choose us styling */
.why-choose-section {
  padding: 10px;
  background-color: var(--light-pink-color);
  color: var(--dark-color);
  text-align: center;
}

.why-choose-section .section-title {
  font-size: 2rem;
  margin-bottom: 5px;
  margin-top: -10px;
}

.why-choose-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.reason-card {
  background: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 40px 16px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.reason-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Partnership section styling */
.partnership-section {
  background-color: var(--white-color);
  text-align: center;
}

.partnership-section p {
  font-size: var(--font-size-m);
  margin-bottom: 20px;
  color: #444;
}

.partnership-section .button {
  display: inline-block;              
  padding: 10px 26px;
  margin: 20px auto 40px;              
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  background: var(--secondary-color);
  border-radius: var(--border-radius-m);
  border: 1px solid var(--secondary-color);
  transition: 0.3s ease;
  text-align: center;                  
}

.partnership-section .button:hover {
  color: var(--secondary-color);
  background: transparent;
}

/* Available network styling */
.availabe-network-section {
  padding: 60px 20px;
  background-color: var(--light-pink-color);
  color: var(--dark-color);
}

.availabe-network-section .section-title {
  margin-top: -50px;
}

.network-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.network-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #eee;
  border-radius: 12px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 350PX;
}

.network-card:hover {
  transform: translateY(-8px);
}

.network-card i {
  font-size: 2.7rem;
  margin-bottom: 15px;
  color: #fff;
}

.net-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

.net-stat p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.net-lists {
  color: #fff;
  text-align: left;
  padding-left: 20px;
  font-size: 1rem;
}

.network-btn {
  display: inline-block;
  padding: 10px 26px;
  margin: 20px auto; 
  margin-bottom: 5px;
  color: var(--dark-color);
  font-size: var(--font-size-m);
  background: #fff;
  border-radius: 200px;
  border: 1px solid #fff;
  transition: 0.3s ease;
  font-weight: var(--font-weight-medium);
}

/* isplay: inline-block;              
  padding: 10px 26px;
  margin: 20px auto 40px;              
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  background: var(--secondary-color);
  border-radius: var(--border-radius-m);
  border: 1px solid var(--secondary-color);
  transition: 0.3s ease;
  text-align: center;           */

.network-btn:hover {
  background: transparent;
  color: #fff;
}

/* INDIVIDUAL NETWORK COLORS */
.mtn2 { background: #ffcc00; }
.glo2 { background: #008000; }
.airtel2 { background: #ee1c25; }
.mobile92 { background: #009a44; }


/* FAQ Styling */
.faq-section {
  padding: 60px 20px;
  background: var(--white-color);
}

.faq-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-container.reverse {
  flex-direction: row-reverse;
}

.faq-content {
  flex: 1;
  padding: 30px;
}


.faq-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.faq-image img {
  width: 100%;
max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.faq-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #004aad;
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* Contact us styling */
.contact-us-section {
  padding: 50px;
  background: var(--light-pink-color);
  color: var(--dark-color)
}

.contact-us-section .section-title {
  margin-top: -30px;
}


.section-subtitle4 {
  text-align: center;
  color: #444;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-m);
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 10px;
}

.contact-card {
  background: var(--white-color);
  padding: 20px;
  border-radius: var(--border-radius-s);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: var(--font-size-s);
}

.contact-form {
  display: flex;
  flex-direction: column;
 display: flex;
  flex-direction: column;       
  align-items: center;          
  gap: 15px;
  max-width: 700px;             
  margin: 0 auto;               
}

.contact-form input,
.contact-form textarea {
  width: 90%;                   
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius-s);
  font-size: var(--font-size-m);
  resize: none;                 
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 5px rgba(243, 150, 28, 0.4);
}


.contact-form input[type="text"],
.contact-form input[type="email"] {
  flex: 1;                          
}

.contact-form button {
  background: var(--secondary-color);
  color: var(--white-color);
  margin-top: 10px;
  padding: 12px;
  border-radius: var(--border-radius-m);
  font-size: var(--font-size-m);
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: transparent;
  color: var(--secondary-color);
}

/* Footer Styling */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 40px 0 20px;
  font-size: var(--font-size-s);
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 15px;
  color: var(--white-color);
}

.footer-col p,
.footer-col a {
  color: var(--white-color);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 5px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}


/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
  :root {
    --font-size-m: 1rem;
    --font-size-1: 1.3rem;
    --font-size-x1: 1.5rem;
    --font-size-xx1: 1.8rem;
  }

  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
    z-index: 50;

  }

  /* Navbar Section */

  .navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: var(--font-size-1);
  }
  
  .navbar #menu-open-button {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1100; 
  }

  .navbar #menu-open-button,
  .navbar #menu-close-button {
    display: block;
    font-size: var(--font-size-1);
    color: var(--white-color);
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-menu #menu-close-button {
    align-self: flex-end;
    margin: 15px 20px 0 0;
    font-size: 1.8rem;
    color: var(--secondary-color);
  }


  .nav-menu {
    position: fixed;
    left: -300px;
    top: 0;
    width: 230px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    white-space: nowrap;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    background-color: var(--light-pink-color);     
  }

  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: var(--secondary-color);
    display: block;
    margin-top: 5px;
    font-size: var(--font-size-m);

  }

  .navbar .nav-menu .nav-link:hover {
    color: var(--white-color);
    background: var(--secondary-color);
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: var(--border-radius-m);
    transition: 0 3s ease;
  }

  /* Hero section */

  .hero-section .section-content {
    gap: 2rem;
    text-align: center;
    flex-direction: column;
  }

  .hero-image {
    display: flex;
    justify-content: center;
  } 

  .hero-image-wrapper {
    margin-top: -50px;
    justify-content: center;
    max-width: 400px;
    order: -1; 
  }

  .hero-section .title {
    margin-top: -50px;
  }

  .hero-details .description {
    max-width: 100%;
    margin-top: -5px;
  }
   
  .hero-details .buttons {
    margin-top: -30px;
    padding-top: 0;
    justify-content: center;
    margin-bottom: 20px;
  }


  /* .hero-section .hero-details :is(.subtitle, .description),
  .about-section .about-details,
  .contact-section .contact-form {
    max-width: 100%;
  }

  .help-grid {
    flex-direction: column;
    text-align: center;
  }

  /* .help-text,
  .help-image-wrapper {
    display: flex;
    justify-content: center;
    min-width: 350px;
  } */

   /* Services Section */
  .services-grid{
    margin-right: 100px;
  }

  .stats-grid {
    gap: 40px;
    margin-top: -20px;
    margin-bottom: 5px;
  }

  .services-image img {
    margin-top: -40px;
    max-width: 90%;
  }
}

/* Services Section */
@media (max-width: 768px) {
  .services-list li {
    font-size: var(--font-size-m);
  }

  .services-image {
    display: flex;
    justify-content: center; 
  }

  .stat {
    flex: 1 1 100px;
  }
}

@media screen and (max-width: 900px) {
 .services-section,
  .why-choose-section,
  .available-network-section {
    padding: 30px 15px;
  }

  .section-title {
    padding: 30px 10px;
  }
}

/* About section */
@media screen and (max-width: 900px) {
  .about-paragraphs {
    flex-direction: column;
    align-items: center;
  }

  .about-column {
    width: 100%;
    text-align: center;
  }

.go-text {
  margin-bottom: -60px;
}

  .text
  .text2 {
    margin-top: -10px;

  }
}

.about-section .about-details .register-button {
  margin-top: -15px;
  margin-bottom: 10px;
}

@media screen and (max-width: 900px) {

  .button,
  .register-button,
  .network-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

}

/* Services Section */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    gap: 20px;
  }

  .services-section .section-title {
    white-space: nowrap;
  }

  .services-text {
    text-align: left; /* Keep text aligned left */
  }

  .services-list li {
    font-size: var(--font-size-x2);
    white-space: nowrap;
  }

  .services-image {
    display: flex;
    justify-content: center; /* Center image on mobile */
  }

  .services-image img {
    max-width: 90%; /* Slightly smaller image on mobile */
  }

  .stats-grid {
    justify-content: center;
    gap: 20px;
  }

  .stat {
    flex: 1 1 100px;
  }
}


/* Faq Section */
@media (max-width: 768px) {
  .faq-container,
  .faq-container.reverse {
    flex-direction: column; /* Stack on mobile */
    text-align: center;
  }

  .faq-image img {
    margin-top: -100PX;
    width: 100%;
    height: auto;
  }

  .why-choose-section .section-title {
  margin-top: -20px;
}
.reason-card {
  flex-direction: column;
  width: fit-content;
  font-size: medium;
}
}



/* Partnership section */
@media (max-width: 768px) {
  .partnership-section .button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* RESPONSIVE TWEAKS */
/* @media (max-width: 768px) {

  .why-box {
    padding: 15px;
  }
} */


/* Availabe network-section */

@media screen and (max-width: 900px) {
  .network-card {
    width: 100%;
    height: auto;
  }
}  

/* CONTACT US SECTION */

@media screen and (max-width: 900px) {
  .contact-info-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 900px) {
  .contact-form {
    width: 100%;
    padding: 0 15px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }
}

/* FAQ SECTION */
  @media (max-width: 900px) {
  .faq-container,
  .faq-container.reverse {
    flex-direction: column;
    text-align: center;
  }

  .faq-content {
    margin-top: -40px;
  }

.faq-image img {
    margin-bottom: -30px;
  }

  .faq-text-box {
    padding: 0 10px;
  }
}


/* FOOTER SECTION */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 50px;
    gap: 10px;
  }
  .footer-col {
    margin-bottom: 30px;
    width: 100%;
  }
}


/* About Page */

.about-section .about-details .texta {
  line-height: 30px;
  margin-top: 10px;
  text-align: left;
  display: flex;
}

.section-titlea {
  text-align: center;
  padding: 70px;
  margin-top: 30px;
  margin-bottom: -60px;
  text-transform: uppercase;
  font-size: var(--font-size-x1);
  white-space: nowrap;
}


/* Why choose us Page styling */
.why-choose-section2 {
  padding: 20px;  
  background-color: var(--white-color);
  color: var(--dark-color);
  text-align: center;
}

.why-choose-section2 .section-titlea{
  margin-top: -70px;
}

/* Privacy Policy Page */
.privacy-policy-section2 {
  padding: 20px;
  background: var(--light-pink-color);
  color: var(--dark-color);
}


.privacy-policy-section2 p,
.privacy-policy-section2 ul {
  font-size: var(--font-size-m);
  line-height: 1.6;
  margin-bottom: 10px;
}

.privacy-policy-section2 ul li {
  margin-left: 20px;
  list-style: disc;
}

.privacy-policy-section2 ul ul {
  margin-top: 8px;
  margin-bottom: 8px;
  list-style: circle;
}


.pp1 {
  text-align: left;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-m);
  color: #444;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Terms and condition page styling */
.terms-condition-section2 {
  padding: 20px;
  background: var(--light-pink-color);
  color: var(--dark-color);
  line-height: 30px;
}

.terms-condition-section2 .section-titlea {
  white-space: nowrap;
}

.terms-condition-section2 .section-subtitle2 {
  margin-top: 10px;
  white-space: nowrap;
}

.section-subtitle2 {
  color: var(--secondary-color);
  text-align: center;
}

.pp2 {
  text-align: left;
  font-weight: var(--font-weight-semibold);
  color: #444;
  margin-bottom: 10px;
  font-size: var(--font-size-m);
}

.pp2a {
  margin-top: -20px;
  margin-bottom: 10px;
}

/* Disclaimer Page */
.disclaimer-section2 {
  padding: 20px;
  background: var(--light-pink-color);
  color: var(--dark-color);
  line-height: 30px;
}

/* Contact Page */
.contact-us-section2 {
  padding: 10px;
  background: var(--light-pink-color);
  color: var(--dark-color)
}



/* html, body {
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
}

.hero-image {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
}

.services-grid {
  flex-wrap: wrap;
}

.network-card {
  width: 100%;
  max-width: 300px;
}

.nav-menu {
  max-width: 100%;
} */
