 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    header {
      border-top: 2px solid #cc0000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 30px;
      background-color: #fff;
      flex-wrap: wrap;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 50px;
    }

    .logo-text {
      font-weight: bold;
      font-size: 18px;
      color: #cc0000;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    nav a {
      text-decoration: none;
      color: #cc0000;
      font-weight: bold;
    }

    nav a.active {
      color: #000;
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .btn-signup {
      border: 2px solid #cc0000;
      padding: 8px 16px;
      border-radius: 20px;
      background-color: transparent;
      color: #cc0000;
      font-weight: bold;
      cursor: pointer;
    }

    .btn-signin {
      background-color: #cc0000;
      color: #fff;
      padding: 8px 16px;
      border: none;
      border-radius: 20px;
      font-weight: bold;
      cursor: pointer;
    }

    .lang-currency {
      font-weight: bold;
      display: flex;
      gap: 5px;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      background: none;
      border: none;
      color: #cc0000;
    }

    @media screen and (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      .menu-toggle {
        display: block;
        position: absolute;
        top: 18px;
        right: 30px;
      }

      nav,
      .actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        display: none;
        margin-top: 10px;
      }

      nav.active,
      .actions.active {
        display: flex;
      }
    }



        .search-bar {
      max-width: 500px;
      margin: 0 auto 20px;
      position: relative;
    }
    .search-bar input {
      width: 100%;
      padding: 15px 45px;
      border-radius: 12px;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      font-size: 16px;
    }
    .search-bar .icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      color: #333;
    }
    .tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      gap: 10px;
    }
    .tabs button {
      padding: 10px 25px;
      border: none;
      border-radius: 12px;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
      background-color: white;
      color: #e60000;
    }
    .tabs .active {
      background-color: #e60000;
      color: white;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: auto;
    }
    .card {
      text-align: center;
    }
    .card img {
      width: 80px;        /* Optional: size adjust karne ke liye */
  height: 80px;       /* Optional: size adjust karne ke liye */
  object-fit: cover;   /* Image ko crop kar deta hai bina aspect ratio bigaade */
  border-radius: 50%;
      margin-bottom: 10px;
    
    }
    .card h4 {
      font-size: 15px;
      font-weight: bold;
      color: #333;
    }
    .card p {
      font-size: 13px;
      color: #999;
    }
    @media (max-width: 500px) {
      .tabs button {
        font-size: 14px;
        padding: 8px 16px;
      }
    }


    /* .whychoose-section-title {*/
    /*  text-align: center;*/
    /*  margin-bottom: 20px;*/
    /*}*/

    /*.whychoose-section-title h2 {*/
    /*  font-size: 28px;*/
    /*  font-weight: bold;*/
    /*}*/

    /*.whychoose-section-title p {*/
    /*  display: inline-block;*/
    /*  margin-top: 10px;*/
   
    /*  color: #fff;*/
    /*  padding: 8px 20px;*/
    /*  border-radius: 20px;*/
    /*  font-weight: 500;*/
    /*}*/

    /*.whychoose-features {*/
    /*  display: grid;*/
    /*  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
    /*  gap: 20px;*/
    /*  margin-top: 30px;*/
    /*}*/

    /*.whychoose-card {*/
    /*  background-color: #f9f9f9;*/
    /*  border-radius: 15px;*/
    /*  padding: 20px;*/
    /*  box-shadow: 0 0 8px rgba(0,0,0,0.05);*/
    /*  text-align: center;*/
    /*  transition: transform 0.3s ease;*/
    /*}*/

    /*.whychoose-card:hover {*/
    /*  transform: translateY(-5px);*/
    /*}*/

    /*.whychoose-card img {*/
    /*  width: 130px;*/
    /*  height: 130px;*/
    /*  object-fit: cover;*/
    /*  margin-bottom: 15px;*/
    /*  border-radius: 50%;*/
    /*}*/

    /*.whychoose-card h4 {*/
    /*  font-size: 18px;*/
    /*  font-weight: bold;*/
    /*  margin-bottom: 10px;*/
    /*}*/

    /*.whychoose-card p {*/
    /*  font-size: 14px;*/
    /*  color: #333;*/
    /*}*/

    /*@media screen and (max-width: 480px) {*/
    /*  .whychoose-section-title h2 {*/
    /*    font-size: 22px;*/
    /*  }*/
    /*  .whychoose-card img {*/
    /*    width: 80px;*/
    /*    height: 80px;*/
    /*  }*/
    /*}*/






    
/* Container */
.asdf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* Title */
.asdf-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Tabs */
.asdf-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.asdf-tab {
    padding: 10px 25px;
    border-radius: 8px;
    background: #e0e0e0;
    color: #666;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.asdf-tab.active {
    background: #d32f2f;
    color: white;
}

/* Layout */
.asdf-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* Left steps */
.asdf-steps {
    flex: 1;
    min-width: 280px;
}
.asdf-step {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: 0.3s ease;
}
.asdf-step:first-child {
    border: 1px solid #eee;
}
.asdf-step-number {
    background: #f28b82;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 16px;
}
.asdf-step h3 {
    margin: 0;
    font-size: 18px;
}
.asdf-step a {
    color: #d32f2f;
    text-decoration: underline;
    font-size: 14px;
}

/* Right image */
.asdf-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}
.asdf-image img {
    max-width: 100%;
    border-radius: 12px;
    height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .asdf-content {
        flex-direction: column;
    }
}





.cardesds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cardesds-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Slider wrapper */
.cardesds-slider {
    position: relative;
    overflow: hidden;
}

.cardesds-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Card */
.cardesds-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    flex: 0 0 33.33%;
    box-sizing: border-box;
    margin-right: 20px;
}
.cardesds-card:last-child {
    margin-right: 0;
}
.cardesds-card h3 {
    margin-top: 0;
}
.cardesds-stars {
    color: gold;
    margin: 10px 0;
}
.cardesds-card p {
    font-size: 14px;
    color: #333;
}
.cardesds-author {
    margin-top: 15px;
    font-weight: bold;
}

/* Arrows */
.cardesds-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ccc;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cardesds-arrow.left { left: 5px; }
.cardesds-arrow.right { right: 5px; }

/* Responsive */
@media (max-width: 992px) {
    .cardesds-card { flex: 0 0 50%; }
}
@media (max-width: 600px) {
    .cardesds-card { flex: 0 0 100%; margin-right: 0; }
}





.banner-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}
.banner-slider .slide {
  display: none;
  position: relative;
}
.banner-slider .slide img {
  width: 100%;
 height: 400px;
  display: block;
}
.banner-slider .active {
  display: block;
  animation: fade 1s ease-in-out;
}


.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  margin-top: -22px;
  color: #fff;
  font-size: 24px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: background 0.3s;
  user-select: none;
}
.prev:hover, .next:hover {
  background: rgba(0,0,0,0.6);
}
.prev { left: 10px; }
.next { right: 10px; }

.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}
.dots span {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}
.dots .active-dot {
  background-color: #fff;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Responsive text size */
@media (max-width: 768px) {
.banner-slider .slide img {
  width: 100%;
 height: 150px;
  display: block;
}
}
@media (max-width: 480px) {
  .prev, .next { font-size: 18px; padding: 8px; }
  .dots span { height: 10px; width: 10px; }
}






.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.modal {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}

.modal h2 {
    margin: 0 0 15px;
    text-align: center;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.tab-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    background: #f1f1f1;
    transition: 0.3s;
}

.tab-buttons button.active {
    background: red;
    color: #fff;
}

.plan {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.plan img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: cover;
}

.plan h4 {
    margin: 0;
}

.plan small {
    color: #777;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 20px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@media (max-width: 520px) {
 
.modal {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 200px;
    width: 80%;
    max-width: 450px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}
}
/* Cards list for example */
.card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.card {
    background: #ddd;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    flex: 1 0 calc(20% - 10px);
    text-align: center;
}













.pg-footer {
  font-family: 'Roboto', sans-serif;
}


.footer {
    /* background-color: #fdffff; */
    color: #0a0909;
}
.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}


.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 0px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #110d0d;
}

.footer-content-column ul li a {
  color: #090505;
  text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}
.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #0b0b0b;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #0f0f0d;
    margin-top: 10px;
    margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}
.button:last-of-type {
    margin-right: 0;
}
.footer-call-to-action-button {
    background-color: #ff0000;
    border-radius: 21px;
    color: #10100e;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #080807;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #0c0a0a;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #100e0e;
    text-decoration: none;
}

.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 26px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 28px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 24px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 34px;
}

.footer-copyright {
    background-color: #ff0000;
    color: #fff;
    padding: 15px 40px;
  text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}

/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { 
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 2px;
    position: relative;
  }
}
@media (min-width:480px) and (max-width:599px)  { 
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:600px) and (max-width: 800px)  { 
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:801px)  { 

}
@media (min-width:1025px) { 

}
@media (min-width:1281px) { 

}

@media (min-width: 760px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 250px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }
}
@media (min-width: 568px) {
  /* .footer-content-column {
      width: 49.99%;
  } */
} 

/* ✅ Extra code: mobile pe content center */
@media (max-width: 767px) {
  .footer-content-column {
    float: none;
    text-align: center;
  }

  .footer-menu-list {
    padding-left: 0;
    display: inline-block;
    /* text-align: left; */
  }
}








#contact {
  background: #FFFFFF;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.contact-box {
  max-width: 700px;
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.contact-box h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-box h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #3b82f6;
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.contact-lead {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.contact-box p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #3b82f6;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #2563eb;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-item {
  position: relative;
}

.form-item input,
.form-item textarea {
  width: 100%;
  padding: 10px 6px;
  border: none;
  border-bottom: 2px solid black;
  background: transparent;
  font-size: 16px;
  outline: none;
  resize: none;
}

.form-item label {
  position: absolute;
  left: 6px;
  top: -17%;
  transform: translateY(-50%);
  font-size: 16px;
  color: grey;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-item:has(textarea) label {
  top: 75%;
}

.form-item input:focus + label,
.form-item textarea:focus + label,
.form-item input:not(:placeholder-shown) + label,
.form-item textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: black;
}

.form-button {
  background-color: black;
  color: white;
  border: none;
  padding: 12px 0;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.form-button:hover {
  background-color: #3b82f6;
  color: white;
}

.form-button:active {
  background-color: #3270D3;
}