@font-face {
  font-family: "zenex";
  src: url(../vender/fonts/Nunito-Regular.ttf);
}

body,
html {
  font-family: "zenex";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.bg-img-pricing {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("/images/seeling&price\ page\ img.jpg") no-repeat center center/cover;
}
.bg-img-terms {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("/images/trems&policy.jpg") no-repeat center center/cover;
}
.bg-img-about {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("/images/about.jpg") no-repeat center center/cover;
}
.bg-img-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("/images/contact.jpg") no-repeat center center/cover;
}

header {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header .btn {
  background-color: #00aeff;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid transparent;
}

header .btn:hover {
  background-color: #007bbd;
  border: 2px solid #007bbd;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

nav-1 {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-shadow: 0 0 10px 0 #ffffff1a;
}

nav-1 ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav-1 ul li {
  margin-left: 1.5rem;
}

nav-1 ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  position: relative;
}

.logo img {
  max-height: 60px;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Nunito', 'zenex', Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: 20px;
  position: relative;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
}

.menu li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #00aeff;
  transition: width 0.5s;
  position: absolute;
  left: 0;
  bottom: 0;
}

.menu li a:hover::after {
  width: 100%;
}

#menu-toggle {
  display: none;
}

.close-btn {
  display: none;
}

.counters {
  display: flex;
  justify-content: space-around;
  background-color: #f0f0f0;
  padding: 2rem 1rem;
  text-align: center;
}

.counter {
  flex: 1;
  margin: 0 1rem;
}

.counter h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
  position: relative;
}

.counter h3::before {
  content: "";
}

.counter .currency::before {
  content: "$";
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.icon {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

#count-size {
  font-size: 2.3rem;
  color: #00aeff;
  font-weight: 900;
}

.counter-text {
  color: #00aeff;
  font-weight: 700;
  font-size: 20px;
}

section {
  padding: 4rem 1rem;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service {
  margin-bottom: 2rem;
}

.text-image-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-image-container img {
  max-width: 50%;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.text-image-container img.animate {
  opacity: 1;
  transform: translateY(0);
}

.text-1 {
  margin-left: 100px;
  max-width: 30%;
  text-align: justify;
  line-height: 1.8rem;
}

.text-2 {
  line-height: 1.8rem;
  margin-right: 100px;
  max-width: 30%;
  text-align: justify;
}
.testimonial-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 45%;
  max-width: 45%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.testimonial-img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e0e0e0;
}

.testimonial-card p {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  margin-top: 15px;
  order: 2;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  order: 3;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.rating {
  text-align: left;
}

.email {
  text-align: right;
}

.rating i {
  color: #ffd700;
  margin-right: 5px;
}

/* Reverse the order for the reverse-card class */
.reverse-card {
  flex-direction: column-reverse;
}

.reverse-card .testimonial-img {
  order: 3;
  margin-top: 15px;
}

.reverse-card p {
  order: 1;
}

.reverse-card .testimonial-footer {
  order: 2;
}

/* Responsive design */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.faq-section {
  background-color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.faq {
  max-width: 600px;
  margin: 0 auto 1rem auto;
  text-align: left;
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 0.5rem;
  position: relative;
}

.faq h3 {
  margin: 0;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq p {
  display: none;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #666;
}

.faq.active p {
  display: block;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-btn {
  background-color: #00aeff;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid transparent;
  margin-bottom: 1rem;
}

.contact-btn:hover {
  background-color: #007bbd;
  border: 2px solid #007bbd;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

form label {
  text-align: left;
}

form input,
form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #333;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #555;
}

/* Pricing & Plans */
/* General Styles */
/* Pricing & Plans */

#pricing-header {
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

#pricing-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#pricing-header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.pricing-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #f4f4f4;
  padding: 4rem 1rem;
  text-align: center;
}

.pricing-plan {
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
}

.pricing-plan h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.pricing-plan p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #00aeff;
}

.pricing-plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-plan ul li {
  margin-bottom: 0.5rem;
}

.pricing-plan .btn {
  background-color: #00aeff;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.pricing-plan .btn:hover {
  background-color: #007bbd;
  border: 2px solid #007bbd;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-btn {
  background-color: #00aeff;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid transparent;
  margin-bottom: 1rem;
}

.contact-btn:hover {
  background-color: #007bbd;
  border: 2px solid #007bbd;
}

/* Media Queries */

/* conatcts section css */

#contact {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  text-align: center;
  padding: 0 1rem;
}

.container {
  width: 90%;
  margin: auto;
  overflow: hidden;
  padding: 2rem 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.contact-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 #0000001a;
  display: flex;
  align-items: center;
  color: #333;
  transition: transform 0.3s;
}

.contact-box:hover {
  transform: scale(1.05);
}

.contact-box .icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: #00aeff;
}

.contact-box h3 {
  margin: 0;
  font-size: 1.2rem;
}

.contact-box p {
  margin: 0.5rem 0;
}

.contact-box.bg-primary {
  background-color: #00aeff;
  color: white;
}

.contact-box.bg-primary .icon {
  color: white;
}

.form-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-form {
  background: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 #0000001a;
}

.contact-form .form-group {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.5s;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.contact-form button {
  margin: auto;
  width: 50%;
  background: #00aeff;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #007bbd;
}

.map {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 #0000001a;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Popup container */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Popup content */
.popup-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  text-align: left;
}
/* Add styles for the new button */
.popup-content .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #00aeff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.popup-content .btn:hover {
  background-color: #008ecc;
}

.popup-content h2 {
  color: #00aeff;
}

.popup-content p {
  margin: 10px 0;
}

.popup-content button {
  background-color: #00aeff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px 5px;
  cursor: pointer;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .form-map-container {
    grid-template-columns: 1fr;
  }
}

/* About Us */

/* Existing styles */
/* Existing styles */

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1rem;
  text-align: center;
}

.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: calc(33% - 2rem);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card i {
  margin-bottom: 1rem;
  color: #00aeff;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00aeff;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive styles */

/* New Terms & Privacy Policy Section start */

.terms-policy {
  padding: 4rem 1rem;
  background-color: #f0f0f0;
  text-align: left;
}

.terms-policy .container {
  max-width: 800px;
  margin: 0 auto;
}

.terms-policy h2 {
  text-align: center;
  color: #00aeff;
  margin-bottom: 2rem;
}

.terms-policy h3 {
  color: #333;
  margin-top: 1.5rem;
}

.terms-policy p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* New Terms & Privacy Policy Section end */

/* Media Queries for Responsiveness */

@media (min-width: 769px) and (max-width: 1080px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .card {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .bg-img {
    height: 200vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
      url(/images/Landing\ Page\ Bg.jpg);
  }

  nav-1 {
    flex-direction: row;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    padding: 1rem;
  }

  nav-1 ul {
    flex-direction: row;
    width: 100%;
    display: none;
  }

  nav-1 ul li {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  header {
    padding: 2rem 1rem;
  }

  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .counters {
    flex-direction: column;
  }

  .counter {
    margin: 1rem 0;
  }

  .text-image-container {
    flex-direction: column;
  }

  .text-image-container img,
  .text-image-container .text {
    max-width: 100%;
  }

  #contact {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    color: white;
    text-align: center;
    padding: 0 1rem;
    background-size: cover;
    background-position: center;
  }

  .contact-form input,
  .contact-form textarea {
    width: 45%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin-bottom: 1rem;
  }

  .contact-form button {
    background: #35424a;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 35%;
    margin: revert;
  }

  .contact-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #0000001a;
    display: flex;
    align-items: center;
    color: #333;
    transition: transform 0.3s;
    width: 85%;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -250px;
    height: 80%;
    width: 194px;
    background: rgba(0, 0, 0, 0.9);
    /* padding-top: -10px; */
    transition: right 0.3s;
    z-index: 10;
    border-radius: 10px;
  }

  .menu li {
    margin: 20px 0;
    text-align: center;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
    right: 0;
  }

  .menu-icon {
    display: block;
    color: white;
    font-size: 30px;
  }

  .close-btn {
    display: block;
    text-align: right;
    margin: 10px 20px 0 0;
    font-size: 20px;
    color: white;
    cursor: pointer;
  }

  nav-1 {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    box-shadow: 0 0 10px 0 #ffffff1a;
  }
  .terms-policy {
    padding: 2rem 1rem;
  }

  .terms-policy .container {
    padding: 0 1rem;
  }

  .pricing-section {
    padding: 2rem 1rem;
  }

  .pricing-plan {
    max-width: 100%;
  }

  .text-1 {
    margin-left: 0px;
    text-align: justify;
    line-height: 1.5rem;
    max-width: 100%;
  }

  .text-2 {
    margin-right: 0px;
    text-align: justify;
    line-height: 1.5rem;
    max-width: 100%;
  }

  section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  section {
    padding: 1rem 1rem;
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea {
    width: 97%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin-bottom: 1rem;
  }
  .card {
    width: 100%;
  }
}

h1,
p {
  margin: 10px 0;
}

/* Container for carousel and progress bar */
.carousel-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  box-sizing: border-box;
  position: relative;
}

/* Carousel styling */
.review-carousel {
  width: 100%;
  position: relative;
  padding-bottom: 20px; /* Add a little bottom padding for spacing */
}

/* Review card styling */
.review-card {
  width: calc(100% - 40px);
  max-width: 300px;
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.review-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.flickity-viewport {
  overflow: visible;
}

/* Client information styling */
.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f0f0f0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ddd;
  margin-right: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.client-job-title {
  font-size: 12px;
  color: #777;
}

/* Review text styling */
.review-text {
  font-size: 14px;
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.4;
}

.customer-email {
  font-size: 12px;
  margin-bottom: 15px;
  color: #777;
  opacity: 0.8;
}

/* Star rating styling */
.star-rating {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 10px;
}

.star-rating i {
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating i:hover,
.star-rating i:hover ~ i {
  color: #ffd700;
}

/* Social icons styling */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  color: #555;
  transition: color 0.3s;
  font-size: 16px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}

/* Line indicator styling */
/* Line indicator styling */
.line-indicator-container {
  width: 40%;
  height: 3px;
  background-color: #e0e0e0;
  position: absolute; /* Change to absolute to position it freely */
  top: 95%; /* Position it in the center vertically */
  left: 50%; /* Position it in the center horizontally */
  transform: translate(-50%, -50%); /* Center the element */
}

.line-indicator-bar {
  position: absolute;
  height: 100%;
  background-color: #007bff;
  width: 0;
  transition: width 0.3s ease;
}
