   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }



        :root {
    --primary: #00ADB5;
    --secondary: #7D0A0A;
    --third: #EAD196;
    --bg: #f7f7f7;
    --text: #222831;
    --text-secondary: #393E46;
    --white: #EEEEEE;
   --font-size-h1: 48px;
   --font-size-h2: 36px;
   --font-size-h3: 24px;
 --font-size-p: 14px;
  --font-size-button: 14px;
--font-size-review: 18px;
--font-size-review-sub: 14px;
}

   
   body{
    overflow-x: hidden;
   }
   
   /* Gradient balls in background */
        .gradient-ball {
            position: absolute;
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(50px);
        }

        .ball-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #1e0064, #60a5fa);
            top: -150px;
            left: -150px;
        }

        .ball-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #a78bfa, #7dd3fc);
            top: -100px;
            right: -100px;
        }

        /* Grid background */
        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50vh;
            background: repeating-linear-gradient(
                45deg,
                #8a5cf657,
                #8a5cf654 10px,
                transparent 10px,
                transparent 20px
            );
            opacity: 0.05;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
        }

        .container {
            max-width: 1000px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            margin: 80px auto;
            padding: 20px;
            z-index: 1;
        }

        h1 {
            text-align: center;
            font-size: 48px;
            color: #530ac7;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 auto;
            margin-bottom: 20px;
        }

        .hero-image {
          position: absolute;
          top: 0px;
          right: 0px;
            max-width: 700px;
            width: 100%;
            height: auto;
            border-radius: 10px;
            opacity: 0.6;
        }
@media(max-width: 768px){
    .hero-image{
        max-width: 600px;
        opacity: 0.2;
    }
}
@media(max-width: 520px){
    .hero-image{
        max-width: 100px;
        opacity: 0.2;
    }
}
        .hero-img-2 {
            width: 160px;
            object-fit: cover;
            height: auto;
            border-radius: 10px;
        }

        .hero-text {
            flex: 1;
            color: #161616;
        }

        .hero-text p {
            font-size: 16px;
            margin-bottom: 10px;
            line-height: 1.6;
            color: #2c2c2c;
        }
                .hero-text .p-1 {
            font-size: 16px;
            margin-bottom: 2px;
            font-weight: bold;
        }  
         .hero-text .p-1 i{
            font-size: 16px;
            
            color: rgb(255, 208, 0);
        } 
             .hero-text .p-1 i:nth-child(1){
            margin-left: 10px;
        }


.hero-para{
  max-width: 700px;
  padding: 10px;
  margin: 10px auto;
  font-size: 16px;
  color: #2c2c2c;
  text-align: center;
  line-height: 1.6;
}
.hero-para span{
font-weight: bold;
}

        .hero-buttons {
            display: flex;
            gap: 10px;
            margin: 30px auto;
        }



  .hero-buttons button{
    border: none;
    background: none;
    outline: none;
  }

.hero-buttons button a{
           padding: 14px 28px;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, #6c028d, #050505);
  border: none;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
        }

.hero-buttons button .a-2{
  background: linear-gradient(145deg, #e0d0e6, #050505);
        }

.hero-buttons button a:hover{
            transform: translateY(-20px);
            background-color: #161616;
        }

        .form-box {
            max-width: 96%;
            width: 1000px;
            background: linear-gradient(to right, #7027e6, #32057a);
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            padding: 30px;
            position: relative;
            margin: 40px auto;
        }

        .decorative-box {
            position: absolute;
            background: linear-gradient(to bottom, #9665e6, transparent);
            border-radius: 10px;
            z-index: -1;
        }

        .decorative-box-1 {
            width: 150px;
            height: 150px;
            bottom: -75px;
            left: -75px;
            transform: rotate(45deg);
        }

        .decorative-box-2 {
            width: 100px;
            height: 100px;
            bottom: -50px;
            right: -50px;
            transform: rotate(-30deg);
        }

        .form-question {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .form-field {
            margin-bottom: 1.5rem;
        }

        .form-field input[type="text"],
        .form-field input[type="email"],
        .form-field input[type="tel"],
        .form-field textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #a269ff;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.2s;
        }

        .form-field input:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: #8b5cf6;
        }

        .form-field textarea {
            min-height: 100px;
            resize: vertical;
        }

        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .checkbox-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            color: #fff;
            cursor: pointer;
        }

        .checkbox-group input[type="checkbox"] {
            appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid #fff;
            border-radius: 4px;
            position: relative;
            cursor: pointer;
        }

        .checkbox-group input[type="checkbox"]:checked {
            background: #530ac7;
        }

        .checkbox-group input[type="checkbox"]:checked::after {
            content: '✔';
            position: absolute;
            color: white;
            font-size: 14px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .date-checkboxes {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
            color: #fff;
        }

        .form-navigation {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            margin-top: 2rem;
        }

        .form-navigation button,
        .submit-button {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
        }

        .form-navigation button {
            background: #996ce0;
            color: #fff;
             box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 1);
             transition: 0.3s ease-in-out;
        }

        .form-navigation button:hover {
            transform: scale(0.9);
            background-color: #4f298b;
        }

        .submit-button {
            background: #8b5cf6;
            color: white;
        }

        .submit-button:hover {
            background: #7c3aed;
        }

        .success-image {
            display: none;
            max-width: 300px;
            height: auto;
            margin: 0 auto;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .container{
                margin-top: 70px;
            }

            .hero-section {
                flex-direction: column;
                text-align: center;
            }

            .hero-image {
                max-width: 100%;
            }

            .form-box {
                padding: 1.5rem;
            }

            .decorative-box {
                display: none;
            }
        }