
        * {
            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;
}



/* Top Section */
    .top-section {
      max-width: 1600px;
      width: 98%;
      margin: 0 auto;
      /* padding: 50px 20px; */
      margin-top: 100px;
      border-radius: 25px;
      background: linear-gradient(to right, #0c0c0c, #1b1b1b);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .text-content {
      /* flex: 1; */
      min-width: 300px;
      max-width: 800px;
      padding: 30px;
      position: relative;
    }

    .text-content h1 {
      font-size: var(--font-size-h2);
      margin-bottom: 20px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-family: 'Be Vietnam Pro', sans-serif;
    }

    .text-content p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ccc;
      margin-bottom: 30px;
      font-family: 'Roboto', sans-serif;
    }

    .glassy-button {
      display: inline-block;
      padding: 15px 30px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 25px;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .glassy-button:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

    .glassy-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .glassy-button:hover::before {
      left: 100%;
    }

    /* Stars and Shooting Star */
    .stars {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .star {
      position: absolute;
      width: 1px;
      height: 1px;
      background: #fff;
      border-radius: 50%;
      animation: blink 2s infinite;
    }

    .shooting-star {
      position: absolute;
      width: 2px;
      height: 2px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.6);
      animation: meteor 3s linear infinite;
    }

    .shooting-star::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 2px;
      background: linear-gradient(270deg, rgba(255, 255, 255, 0.6), transparent);
      transform: rotate(-45deg);
      transform-origin: 100% 0;
      opacity: 0.7;
    }

    @keyframes blink {
      0%, 100% { opacity: 0.2; }
      50% { opacity: 1; }
    }

    @keyframes meteor {
      0% {
        transform: translate(0, 0);
        opacity: 0.8;
      }
      70% {
        opacity: 0.8;
      }
      100% {
        transform: translate(250px, -250px);
        opacity: 0;
      }
    }

    /* Image Container */
    .image-container {
      flex: 1;
      height: 350px;
      width: auto;
      position: relative;
      padding: 0; /* No padding */
      overflow: hidden;
    }

    .image-container img {
      width: auto;
      height: 100%;
      object-fit: cover; /* Ensures image fills container */
      display: block;
      border: none;
      margin: 0 auto;
    }

    /* Bottom Section */
    .bottom-section {
      max-width: 1400px;
      margin: 70px auto;
      padding: 15px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      color: var(--text);
    }

    .contact-details {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .contact-details h2 {
      font-size: var(--font-size-h2);
      margin-bottom: 20px;
      color: var(--text);
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 1.1rem;
      color: #161616;
    }

.contact-item p a{
  text-decoration: none;
  color: var(--text);
}

    .contact-item i {
      margin-right: 10px;
      color: #161616;
    }

    .contact-image {
      margin-top: 20px;
      max-width: 300px;
    }

    .contact-form {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      border-radius: 10px;
      backdrop-filter: blur(5px);
    }

    .contact-form h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #161616;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 5px;
      color: #161616;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #161616;
      outline: none;
    }

    .submit-button {
      padding: 15px 30px;
      background: #161616;
      border: none;
      border-radius: 12px;
      color: var(--white);
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.3s ease;
      position: relative;
    }

    .submit-button:hover {
      transform: scale(1.05);
    }

    .submit-button.submitting::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      border: 2px solid #161616;
      border-top: 2px solid transparent;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      transform: translate(-50%, -50%);
    }

    @keyframes spin {
      0% { transform: translate(-50%, -50%) rotate(0deg); }
      100% { transform: translate(-50%, -50%) rotate(360deg); }
    }


    .success-message {
        margin-top: 20px;
        padding: 15px 20px;
        background-color: #e8fce8;
        border: 1px solid #b6ecb6;
        color: #2e7d32;
        font-weight: 500;
        border-radius: 8px;
        font-size: 16px;
        display: none;
    }



    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .top-section,
      .bottom-section {
        flex-wrap: wrap;
      }
.top-section{
  margin-top: 70px;
}
.bottom-section{
  margin: 40px auto;
}
      .image-container {
        height: 300px;
        width: auto;
      }

      .text-content h1 {
        font-size: 2rem;
      }

      .text-content p {
        font-size: 1rem;
      }
    }