*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter'sans-serif;
}
body {
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
      }
      /*Header*/
      header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff; /* or your background */
  width: 100%;
}
      .text-logo{
        font-size: 1.5rem;
        line-height: 13px;
      }
      .text-logo-tag{
        font-size: 15px;
      }
           /*Text-Mainbanner */
        .text-banner {
      position: relative;
      width: 100%;
      height: auto;
    }

    .text-banner img {
      width: 100%;
      height: 33rem;
      display: block;
    }

    .x1-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      font-size: 9.5rem;
      font-weight: 500;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
      padding: 0 10px;
    }
    /*End of Text-mainbanner*/
    /*Text-section 1*/
    .text-section {
    background-color: #ffffff;
      padding: 2rem 1rem;
      text-align: center;
      color: #020202;
}
 .text-section h1 {
      font-size: 1.25rem;
      font-weight: 0;
      margin: 0 auto;
      max-width: 800px;
    }
    .text-section h2{
        font-size: 24px;
    }
.container {
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 0rem;
    }
    .container strong{
      font-weight: 600;
    }

    section {
      margin-bottom: 2rem;
    }

    h2 {
      font-size: 28px;
      color: #085ad9;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .highlight {
      color: #020202;
      font-weight: 700;
    }

    ul {
      list-style: none;
      padding-left: 0;
    }

    li {
      margin-bottom: 1rem;
      font-size: 18px;
    }

    strong {
      color: #000;
      font-weight: 600;
    }
    
    /*End of Text-Section 1*/
    /* Double Text Section */
    .about-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .about-section h4 {
      text-align: center;
      font-weight: 400;
      margin-bottom: 10px;
      font-size: 27px;
    }

    .about-section h1 {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #00754a;
    }

    .about-section p.subtitle {
      text-align: center;
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 40px;
      color: #333;
    }

    .about-columns {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .about-columns div {
      flex: 1 1 45%;
      min-width: 300px;
    }

    .about-columns p {
      font-size: 17px;
      color: #555;
      margin-bottom: 11px;
    }
/* End of Double Text Section */
/* Investors*/
 .investors-section {
      text-align: center;
      max-width: 1200px;
      margin: auto;
      margin-top: -64px;
    }

    .investors-section h2 {
      margin-bottom: 10px;
      font-size: 27px;
    }

    .investors-section p {
      color: #555;
      margin-bottom: 30px;
      font-size: 17px;
      margin-top: 22px;
    }

    .investor-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .card {
      flex: 1 1 300px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 20px;
      max-width: 350px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
      background-color: #fff;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      height: 9rem;
      margin-bottom: 15px;
      margin: 0 auto;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }

    .card p {
      color: #555;
      font-size: 15px;
    }
    /*investors End*/
    /*Imagesslides*/
    
    .life-section {
      text-align: center;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .slider {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: auto;
      overflow: hidden;
      border-radius: 10px;
    }

    .slides {
      display: flex;
      width: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .slides img {
      width: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .navigation {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 10px;
    }

    .nav-btn {
      background-color: rgba(0,0,0,0.4);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      font-size: 18px;
      border-radius: 50%;
    }

    .life-section p {
      margin-top: 20px;
      color: #444;
      font-size: 16px;
      line-height: 1.6;
    }

/* End of Imageslides */
/*Team Member Section*/
 /*Team Members */
   .team-section {
      text-align: center;
    }

    .team-section h2 {
      font-size: 2em;
      margin-bottom: 30px;
    }

    .team-members {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .member {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 20px;
      width: 220px;
      text-align: center;
    }

    .member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto; /* This centers the image horizontally */
  display: block;  /* Required for margin auto to work */
  margin-bottom: 15px;
}

    .member h3 {
      font-size: 1em;
      margin: 10px 0 5px;
    }

    .member p.role {
      font-weight: bold;
      font-size: 0.9em;
      color: #666;
      margin-bottom: 10px;
    }

    .member p.description {
      font-size: 0.85em;
      color: #555;
    }

    /*End of Team Section */
    /* Comment Slides */
    /* Slideshow container */
.slideshow-container {
  position: relative;
  background: #f1f1f1f1;
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 20px;
    background: #ddd;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: cornflowerblue;}
/*commentslides End*\
/*Newsletter Section*/
 .newsletter-container {
      text-align: center;
      padding: 20px;
    }

    .newsletter-container h1 {
      font-size: 2.5em;
      margin-bottom: 10px;
    }

    .newsletter-container p {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      border: 1px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .social-icons a img {
      width: 34px;
      height: 34px;
    }

    .social-icons a:hover {
      background: #f0f0f0;
    }
/* Newsletter End */
/*Scrool Top */
/* Scrool Top */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}
/* End Scrool Top */
/*footer Starts here */
.footer {
      background: linear-gradient(to bottom right, #0d2064, #24015d);
      color: #fff;
      padding: 40px 20px;
      font-size: 14px;
    }

    .footer a {
      color: #fff;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .footer .top-text {
      margin-bottom: 20px;
      color: #86bbeb;
      font-weight: bold;
    }

    .footer .company-details {
      margin: 15px 0;
      color: #ccc;
    }

    .footer .columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 30px;
      margin-top: 20px;
      margin-bottom: 30px;
    }

    .footer .column h4 {
      color: #8ecfff;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 600;
    }

    .footer .column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer .column ul li {
      margin-bottom: 8px;
      font-size: 15px;
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 20px;
    }

    .footer-bottom .links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .footer-bottom .store-links img {
      height: 36px;
      margin: 0 8px;
    }
    
    /*footer ends here*/
    /*download section*/
    .download-section {
      background-color: #000066;
      color: white;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      text-align: center;
    }

    .download-section h2 {
      font-size: 18px;
      margin-right: 15px;
      font-weight: bold;
      color: white;
    }

    .store-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      align-items: center;
    }

    .store-buttons img {
      height: 40px;
      max-width: 150px;
    }
    /*Download Sectiuon Ends Here*/
    /*FreeListing Page STARTS*/
    /*Main Section*/
     .mainsection {
      display: flex;
      flex-wrap: wrap;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .left-column {
      flex: 1;
      min-width: 300px;
      padding: 40px;
    }

    .left-column h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .left-column h1 span {
      color: #007bff;
      font-weight: 500;
    }

    .left-column p {
      margin: 15px 0;
      color: #555;
    }

    .features {
      list-style: none;
      margin: 20px 0;
    }

    .features li {
      margin-bottom: 10px;
      color: #2e7d32;
    }

    .btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #28a745;
      color: white;
      text-decoration: none;
      font-weight: 400;
      border-radius: 5px;
    }

    .right-column {
      flex: 1;
      min-width: 300px;
      background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	
	animation: gradient 15s ease infinite;
      color: white;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: center;
      padding: 20px;
      gap: 20px;
      flex-wrap: wrap;
    }
     @keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

    .right-column img {
      max-width: 300px;
      border-radius: 10px;
      height: 400px;
      margin-left: -15px;
    }

    .info-boxes {
      display: flex;
      flex-direction: column;
      gap: 15px;
      flex: 1;
      min-width: 200px;
    }

    .info-box {
      background-color: rgba(255, 255, 255, 0.15);
      padding: 20px;
      border-radius: 10px;
      width: 100%;
    }

    .info-box h3 {
      margin-bottom: 8px;
      color: #fff;
    }

    .info-box p {
      font-size: 0.95rem;
      color: #f0f0f0;
    }

    /*Main Section Ends Here*/
    /*Free Listing Section */
    .steps-section {
      max-width: 1200px;
      margin: 0 auto;
    }

    .steps-section h2 {
      font-size: 1.5rem;
      margin-bottom: 40px;
      text-align: center;
      margin-top: 17px;
    }

    .steps-section h2 span {
      color: #007bff;
    }

    .steps-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .step-box {
      flex: 1 1 250px;
      max-width: 300px;
      padding: 20px;
    }

    .step-box img {
      width: 100px;
      height: auto;
      margin-bottom: 15px;
      margin-left: 4rem;
    }

    .step-box h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .step-box p {
      font-size: 0.95rem;
      color: #333;
    }
    /*Free Listing Section Ends Here*/
    /*Side by Side */
     /* Section 3 */
    .sidebyside {
      max-width: 1200px;
      margin: auto;
      margin-top: 12px;
      background: #ffffff;
      padding: 10px 30px;
      border-radius: 12px;
    }

    .header3 {
      text-align: center;
      margin-bottom: 40px;
    }

    .header3 h2 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .header3 h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0;
    }

    .content3 {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .image-box {
      flex: 1 1 300px;
      min-width: 250px;
      max-width: 400px;
    }

    .image-box img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
    }

    .info-box-section{
      flex: 2 1 500px;
    }

    .stats3 {
      display: flex;
      flex-wrap: wrap;
      background: #e5de7bab;
      border-radius: 12px;
      padding: 20px;
      gap: 20px;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .stat3 {
      flex: 1 1 150px;
      text-align: center;
    }

    .stat3 h4 {
      font-size: 1.8rem;
      margin: 0;
      font-weight: 600;
    }

    .stat3 p {
      font-size: 0.95rem;
      color: #333;
      margin-top: 8px;
    }

    .description3 {
      font-size: 1rem;
      line-height: 1.6;
      color: #333;
    }

    .highlight {
      font-weight: 600;
    }
    /*Side by Side Ends Here */
    /*Total Insight*/
    .stats-section {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 30px 20px;
      background-color: #9adbff;
      flex-wrap: wrap;
    }

    .stat-card {
      flex: 1 1 250px;
      background-color: white;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      min-width: 200px;
      max-width: 320px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    }

    .stat-number {
      color: #007bff;
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 15px;
      color: #333;
    }

    /*Total Insight Ends Here*/
    /*Business Tutorials*/
    .section-title {
      text-align: center;
      font-size: 26px;
      font-weight: bold;
      padding: 30px 20px 10px;
    }

    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      overflow: hidden;
      max-width: 320px;
      width: 100%;
      transition: transform 0.2s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .card-content {
      padding: 20px;
    }

    .card-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .learn-more {
      color: #007bff;
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }

    .learn-more:hover {
      text-decoration: underline;
    }

    /* Popup Modal */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .modal-content {
      background: #000;
      padding: 0;
      max-width: 90%;
      width: 700px;
      border-radius: 8px;
      position: relative;
      overflow: hidden;
    }

    .modal iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
    }
    /*Business Tutorials*/
      @media (max-width: 768px) {
    .modal iframe {
        height: 240px;
      }
    }
            
    /*Business Tutorials Ends Here*/
    /*Images Slide */
    .card-shadow {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .carousel-container {
      overflow: hidden;
      position: relative;
    }
    .carousel-track {
      display: flex;
      animation: scroll 40s linear infinite;
    }
    .carousel-track img {
      flex-shrink: 0;
      width: 300px;
      height: 180px;
      object-fit: cover;
      margin-right: 1rem;
      border-radius: 1rem;
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    /*Images Slides Ends*/
    /*Download App Section*/
    .card-shadow {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .carousel-container {
      overflow: hidden;
      position: relative;
    }
    .carousel-track {
      display: flex;
      animation: scroll 30s linear infinite;
    }
    .carousel-track img {
      flex-shrink: 0;
      width: 300px;
      height: 200px;
      object-fit: cover;
      margin-right: 1rem;
      border-radius: 9px;
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    /* Free List Add Business Page END here*/
    /*Careers Page Starts Here*/
    /*Our Story*/
    .carousel {
      position: relative;
      overflow: hidden;
      border-radius: 11px;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .carousel img {
      min-width: 100%;
      height: 36rem;
    }
    /*Our story End Here*/
    /*About box */
     .feature-box {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-width: 250px;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    }

    h2.title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      margin: 10px auto;
      background: linear-gradient(to right, #6366f1, #ec4899);
      border-radius: 2px;
    }
    /* About box Ends here*/
     .tab-active {
      border-bottom: 2px solid white;
      color: white;
    }
   /*jobs list Page*/
   .container {
      max-width: 500px;
      margin: auto;
    }

    .job-card {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
      padding: 20px;
      transition: 0.3s;
    }

    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .job-header h3 {
      margin: 0;
    }

    .job-subtitle {
      color: #333;
      font-weight: 500;
      margin: 5px 0;
    }

    .meta {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .meta span {
      margin-right: 12px;
    }

    .status {
      color: #0077cc;
      font-size: 14px;
    }

    .check-btn {
      background-color: #28a745;
      color: white;
      padding: 8px 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .job-details {
      display: none;
      padding-top: 15px;
      border-top: 1px solid #e0e0e0;
    }

    .job-details ul {
      padding-left: 20px;
    }

    .job-details h4 {
      margin-top: 15px;
      color: #0077cc;
      font-weight: 500;
      font-size: 25px;
      margin-bottom: 11px;
    }
.job-details li{
  font-size: 15px;
}
  /* Jobs List Page Ends here*/  
    