/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", "Roboto", sans-serif;
  line-height: 1.6;
  color: #373636;
  background-color: #faf9f7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header Styles */
header {
  background-color: #030303;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* position: sticky;
  top: 0;
  z-index: 100; */
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h1 {
  color: #db2a29;
  font-size: 20px;
}

.logo img {
  width: 60px;
  height: auto;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-left: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  /* color: #fff; */
}

.contact-item i {
  /* font-size: 1.5rem; */
  color: #db2a29;
  font-size: 20px;
}

.contact-item span {
  font-size: 0.9rem;
  color: #90908c;
}

.contact-item h3 {
  /* font-size: 1rem; */
  /* color: #373636; */
  color: #fff;
  font-size: 16px;
}

.quote-btn {
  background-color: #db2a29;
  color: white;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #c12221;
}

nav {
  background-color: #db2a29;
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 10px 0;
}

nav ul li {
  margin: 5px 15px;
}

nav ul li a {
  color: white;
  display: block;
  padding: 15px 20px;
  font-weight: 600;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* response style header  */

@media (max-width: 992px) {
  nav ul {
    flex-wrap: wrap;
  }

  .form-heading {
    width: 100%;
    padding: 30px;
  }

  .form-container {
    width: 100%;
  }

  .quote-form {
    flex-direction: column;
  }

  .footer-top,
  .footer-middle {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .services-grid,
  .benefits-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 200px;
  }
}

/* Hamburger base styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.4s;
}

/* Navigation container */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Mobile styles */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #333;
    margin-top: 10px;
  }

  .nav-links li {
    padding: 10px 20px;
    border-top: 1px solid #444;
  }

  .nav-links.show {
    display: flex;
  }
}

@media (max-width: 768px) {
  .contact-info {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #db2a29;
  color: white;
  padding: 12px 30px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #c12221;
}

/* Welcome Section */
.welcome {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  color: #373636;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #373636;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
}

.section-subtitle:after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: #db2a29;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2.5rem;
  color: #db2a29;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #373636;
}

.service-card p {
  color: #90908c;
  font-size: 0.9rem;
}

/* Experience Section */
.experience {
  background-color: #f5f5f5;
  padding: 80px 20px;
}

.experience-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

.experience-content h4 {
  color: #db2a29;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 15px;
}

.experience-content h2 {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background-color: white;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
  font-size: 2rem;
  color: #db2a29;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #90908c;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1507208773393-40d9fc670c31?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial p:before,
.testimonial p:after {
  font-size: 3rem;
  position: absolute;
  opacity: 0.3;
}

.testimonial p:before {
  content: '"';
  top: -20px;
  left: -20px;
}

.testimonial p:after {
  content: '"';
  bottom: -40px;
  right: -20px;
}

.client-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.client-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background-color: #fff;
}

.gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery .container .section-subtitle {
  text-align: center;
}

.gallery-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 250px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(219, 42, 41, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-info {
  text-align: center;
  color: white;
  padding: 20px;
}

.gallery-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.gallery-info p {
  font-size: 0.9rem;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Quote Form Section */
.quote-form {
  display: flex;
  background-color: #db2a29;
  color: white;
}

.form-heading {
  width: 30%;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-heading h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.form-container {
  width: 70%;
  background-color: white;
  padding: 50px;
  color: #373636;
}

.form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.radio-group {
  margin-bottom: 10px;
}

.radio-group input[type="radio"] {
  margin-right: 10px;
  width: auto;
}

.radio-group label {
  display: inline-block;
  font-weight: normal;
}

.submit-btn {
  background-color: #db2a29;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #c12221;
}

/* Footer Styles */
footer {
  background-color: #373636;
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #db2a29;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
  max-width: 400px;
}

.footer-info h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-info p {
  margin-bottom: 20px;
  color: #cacbca;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #db2a29;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cacbca;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #db2a29;
}

.footer-bottom {
  background-color: #2a2a2a;
  text-align: center;
  padding: 20px;
  color: #cacbca;
  font-size: 0.9rem;
}

/* call us style */

.call-button {
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.call-button:hover {
  background-color: #45a049;
}

/* Additional Styles for About Page */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  padding: 80px 20px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-content {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-section {
  margin-bottom: 80px;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #db2a29;
}

.about-section p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background-color: #f9f9f9;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.about-card:hover {
  transform: translateY(-10px);
}

.about-card-content {
  padding: 25px;
}

.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #db2a29;
}

.about-card p {
  color: #666;
  margin-bottom: 15px;
}

.about-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #db2a29;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: white;
  border: 4px solid #db2a29;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f9f9f9;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f9f9f9;
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f9f9f9;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f9f9f9 transparent transparent;
}

.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: #f9f9f9;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  color: #db2a29;
  margin-bottom: 10px;
}

.team-section {
  text-align: center;
  margin: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.team-member {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-info span {
  color: #db2a29;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.team-info p {
  color: #666;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::before {
    left: 60px;
    border: medium solid #f9f9f9;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f9f9f9 transparent transparent;
  }

  .left::after,
  .right::after {
    left: 19px;
  }

  .right {
    left: 0%;
  }
}

/* Additional Styles for Services Page */
.services-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  padding: 80px 20px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.services-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.service-box {
  display: flex;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-box:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.service-content {
  flex: 1;
  padding: 40px;
}

.service-content h2 {
  color: #db2a29;
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.service-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #db2a29;
}

.service-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #666;
}

.service-features {
  margin-top: 20px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.service-feature i {
  color: #db2a29;
  margin-right: 10px;
  margin-top: 5px;
}

.pricing-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.pricing-heading {
  margin-bottom: 50px;
}

.pricing-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #373636;
}

.pricing-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-header {
  background-color: #db2a29;
  color: white;
  padding: 20px;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.pricing-header p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 30px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
}

.pricing-features {
  padding: 30px;
  text-align: left;
}

.pricing-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  color: #666;
}

.pricing-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #db2a29;
}

.pricing-button {
  display: block;
  text-align: center;
  padding: 15px;
  background-color: #db2a29;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.pricing-button:hover {
  background-color: #c12221;
}

.faq-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.faq-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #373636;
}

.faq-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: #db2a29;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.cta-section {
  background-color: #db2a29;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #db2a29;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 3px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #f5f5f5;
}

@media (max-width: 992px) {
  .service-box {
    flex-direction: column !important;
  }

  .service-image {
    min-height: 250px;
  }
}

/* Additional Styles for Networks Page */
.networks-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1547653872-052e3539decc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  padding: 80px 20px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
}

.networks-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.networks-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.networks-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.networks-intro {
  text-align: center;
  margin-bottom: 50px;
}

.networks-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #373636;
}

.networks-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
}

.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.state-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.state-card:hover {
  transform: translateY(-10px);
}

.state-header {
  background-color: #db2a29;
  color: white;
  padding: 20px;
  text-align: center;
}

.state-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.city-list {
  padding: 20px;
}

.city-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-list ul li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.city-list ul li:last-child {
  border-bottom: none;
}

.city-list ul li i {
  color: #db2a29;
  margin-right: 10px;
}

.city-list ul li a {
  color: #373636;
  transition: color 0.3s;
}

.city-list ul li a:hover {
  color: #db2a29;
}

.coverage-map {
  margin-bottom: 80px;
}

.coverage-map h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #373636;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #373636;
}

.contact-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #666;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  background-color: #db2a29;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s;
}

.contact-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.contact-btn:hover {
  background-color: #c12221;
}

.contact-btn.outline {
  background-color: transparent;
  border: 2px solid #db2a29;
  color: #db2a29;
}

.contact-btn.outline:hover {
  background-color: #db2a29;
  color: white;
}

@media screen and (max-width: 768px) {
  .networks-hero h1 {
    font-size: 2.5rem;
  }

  .networks-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Additional Styles for Payment Page */
.payment-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  padding: 80px 20px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
}

.payment-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.payment-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.payment-container {
  text-align: center;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.payment-intro {
  text-align: center;
  margin-bottom: 50px;
}

.payment-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #373636;
}

.payment-intro p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #666;
  line-height: 1.6;
}

.payment-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.payment-tabs::-webkit-scrollbar {
  display: none;
}

.payment-tab {
  padding: 15px 25px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.payment-tab.active {
  color: #db2a29;
  border-bottom-color: #db2a29;
}

.payment-content {
  display: none;
}

.payment-content.active {
  display: block;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.payment-method {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.payment-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.payment-method img {
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}

.payment-method h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #373636;
}

.payment-method p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.upi-section {
  text-align: center;
  margin-bottom: 50px;
}

.upi-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.upi-option {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 150px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.upi-option:hover {
  transform: translateY(-5px);
}

.upi-option img {
  height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.upi-option p {
  font-size: 0.9rem;
  margin: 0;
  font-weight: 600;
}

.qr-code-container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  margin: 0 auto;
}

.qr-code-container img {
  width: 100%;
  margin-bottom: 20px;
}

.qr-code-container h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #373636;
}

.qr-code-container p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.upi-id {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #373636;
}

.copy-btn {
  background-color: #db2a29;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.copy-btn:hover {
  background-color: #c12221;
}

.bank-details {
  margin-top: 40px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bank-details h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #373636;
  text-align: center;
}

.bank-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.bank-info {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
}

.bank-info h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #db2a29;
  text-align: center;
}

.bank-info-item {
  margin-bottom: 15px;
}

.bank-info-item label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #373636;
}

.bank-info-value {
  background-color: white;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #eee;
  font-family: monospace;
  font-size: 1rem;
}

.payment-note {
  margin: 50px 0;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  border-left: 5px solid #db2a29;
}

.payment-note h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #373636;
}

.payment-note p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.payment-note ul {
  margin: 15px 0;
  padding-left: 20px;
}

.payment-note ul li {
  margin-bottom: 10px;
  color: #666;
}

.verify-payment {
  text-align: center;
  margin-top: 50px;
}

.verify-payment h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #373636;
}

.verify-payment p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #666;
}

.verify-btn {
  display: inline-block;
  background-color: #db2a29;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.verify-btn:hover {
  background-color: #c12221;
}

@media screen and (max-width: 768px) {
  .payment-hero h1 {
    font-size: 2.5rem;
  }

  .payment-methods,
  .bank-info-grid {
    grid-template-columns: 1fr;
  }

  .upi-options {
    gap: 15px;
  }

  .upi-option {
    width: 120px;
  }
}

/* Additional Styles for Contact Page */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  padding: 80px 20px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contact-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  padding: 80px 0;
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  color: #373636;
}

.contact-info h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #db2a29;
}

.contact-details {
  margin-bottom: 40px;
  /* position: absolute; */
}

.contact-detail {
  display: flex;
  position: relative;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #db2a29;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #373636;
}

.contact-text p {
  color: #666;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #373636;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: #db2a29;
  color: white;
}

.contact-form {
  flex: 1;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #373636;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #373636;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #db2a29;
  outline: none;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background-color: #db2a29;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #c12221;
}

.error-message {
  color: #db2a29;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.error .form-control {
  border-color: #db2a29;
}

.form-group.error .error-message {
  display: block;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: none;
}

.map-section {
  margin: 80px 0;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #373636;
}

.map-frame {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .map-frame {
    height: 350px;
  }
}

/* custumer review style  */

