* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  .custom-container{
      width: 95%;
      margin: auto;
  }
  
  header {
    position: sticky;
    top:0;
    z-index: 999;
  }
  
  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }
  
  .navbar .logo img {
    height: 50px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 30px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #ff7f50; /* Hover effect color (light coral) */
  }
  
  .hero-image {
    background-image: url("your-hero-image.jpg"); /* Replace with your hero image */
    background-position: center;
    background-size: cover;
    width: 100%;
    position: relative;
  }
  

  #snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #04AA6D;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 30px;
    font-size: 17px;
    z-index: 99999;
  }
  
  #snackbar-error {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: red;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 30px;
    font-size: 17px;
    z-index: 99999;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  #snackbar-error.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
  
    to {
        top: 30px;
        opacity: 1;
    }
  }
  
  @keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
  
    to {
        top: 30px;
        opacity: 1;
    }
  }
  
  @-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
  
    to {
        top: 0;
        opacity: 0;
    }
  }
  
  @keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
  
    to {
        top: 0;
        opacity: 0;
    }
  }


  /* footer  */

  .footer-section{
    width: 100%;
    padding: 3rem 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .footer-section h2{
      color: #fff;
  }

  .footer-section p{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
  }

  .footer-section .custom-container{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .footer-col{
     width: calc(33.3% - 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-col:nth-child(1){
      align-items: flex-start;
  }
  
  .footer-col:nth-child(1) img{
      width: 300px;
      height: 100px;
      background-color: #fff;
  }
  
   .footer-col .quick-link{
       padding-left: 1rem;
   }

  .footer-col div{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-col div a{
      text-decoration: none;
      color: #fff;
  }

  .footer-col .social-icon{
    flex-direction: row;
    gap: 1rem;
  }

  .footer-col .social-icon img{
      width: 30px;
      height: 30px;
  }


        /* indexcpage start  */

    .container {
            position: relative;
        }

        .img-container {
            position: relative;
            width: 100%;
            display: flex;
        }

        .img-container img {
            width: 100%;
            /*height: 700px;*/
        }

        .banner-content {
            position: absolute;
            top: 35%;
            left: 3%;
            width: 40%;
            max-width: 550px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .banner-content h1 {
            font-size: 36px;
            font-weight: 500;
            color: #fff;
            font-style: italic;
        }

        .banner-content p {
            color: #fff;
            font-size: 20px;
        }

        .formcontainer {
            background: #0009;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 430px;
            position: absolute;
            right: 5%;
            top: 20%;
        }

        .formcontainer h2 {
            color: #fff;
        }

        .account-p {
            color: #fff;
        }

        .account-p a {
            color: red;
        }

        .form-group {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .form-group div {
            flex: 1;
        }

        label {
            font-weight: bold;
            display: block;
            margin-top: 22px;
        }

        input,
        select {
            width: 100%;
            padding: 11px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 16px;
            width: 100%;
            margin-top: 15px;
            cursor: pointer;
            border-radius: 4px;
        }

        button:hover {
            background-color: #218838;
        }

        #terms {
            display: none;
        }

        #terms+label {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            font-size: 16px;
            color: #333;
        }

        #terms+label::before {
            content: "";
            width: 20px;
            height: 20px;
            border: 2px solid #007BFF;
            border-radius: 4px;
            display: inline-block;
            margin-right: 10px;
            background-color: white;
            transition: 0.2s ease-in-out;
        }

        #terms:checked+label::before {
            background-color: #007BFF;
            border-color: #007BFF;
            content: "✔";
            font-size: 14px;
            color: white;
            text-align: center;
            line-height: 18px;
            font-weight: bold;
        }

        .form-group label {
            color: #000;
        }

        .form-group1 label {
            color: #fff;
        }

        .modal {
          display: none;
          position: fixed;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 60%;
          max-width: 800px;
          background: white;
          padding: 1rem;
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          z-index: 1000;
          border-radius: 10px;
          overflow-y: auto;
          overflow-x: hidden;
          height: 100%;

        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .close-btn {
            float: right;
            cursor: pointer;
            font-size: 24px;
        }

        .password-mustbe {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .password-mustbe ul {
            padding: 0 0 0 1rem;
        }

        .cards-container {
            display: flex;
        }

        /* Profile Card Styling */

        .profile-container {
            padding: 4rem 0;
            width: 100%;
        }

        .profile-container .custom-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .profile-card {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            width: calc(25% - 2.25rem);
            text-align: center;
        }

        .profile-card img {
            width: 50%;
            border-radius: 10px;
            object-fit: cover;
        }

        .profile-card h3 {
            margin: 10px 0 5px;
        }

        .profile-card p {
            font-size: 14px;
            color: #555;
            padding: 0.3rem;
        }

        .form-preloader-holder {
            display: inline-block;
            width: max-content;
            position: relative;
            width: 100%;
        }

        .formPreloader {
            position: absolute;
            top: 15px;
            left: 0px;
            width: 100%;
            height: 76%;
            background-color: #000000bb;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spinner {
            width: 24px;
            height: 24px;
            border: 4px solid #fff0;
            border-top-color: #fff;
            animation: spin 1s linear infinite;
            border-radius: 50%;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        textarea {
            width: 100%;
        }
        
        #registerform{
            width: 100%;
            height: 100%;
        }
        
        .modal-body {
            height: 100%;
            flex: 1;
        }
        
        
        /* Form slider & step logic */
        .form-slider {
          position: relative;
          width: 100%;
          height: 100%;
        }
        
        .form-step {
          position: absolute;
          width: 100%;
          top: 0;
          left: 100%;
          opacity: 0;
          transition: all 0.4s ease-in-out;
          visibility: hidden;
        }
        
        .form-step.active {
          left: 0;
          opacity: 1;
          visibility: visible;
          z-index: 1;
        }

        /* indexpage end  */
  

        /* privacy terms css  */

        .privacy-container{
            width: 100%;
            padding: 4rem 0;
        }

        .privacy-container .custom-container{
            width: 85%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .privacy-content{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .privacy-container h2{
            color: #4b4949;
        }

        .privacy-content div{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .privacy-content ul{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            padding-left: 2rem;
        }
  