    body {
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      
     
    }
    
    .container {
      max-width: 1200px;
      width: 100%;
      justify-self: center;

    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    
    .section-title h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      background: linear-gradient(90deg, #00dbde, #fc00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }
    
    .section-title p {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .coming-soon {
      background: linear-gradient(90deg, #ff4e50, #f9d423);
      color: #fff;
      text-align: center;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      margin-top: 100px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    
    .coming-soon:hover {
      transform: translateY(-10px);
    }
    
    .coming-soon:before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
      transform: rotate(45deg);
      animation: shine 4s infinite;
    }
    
    .coming-soon h3 {
      font-size: 1.8rem;
      margin-bottom: 10px;
      position: relative;
    }
    
    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
    }
    
    .card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    
    .card:hover {
      transform: translateY(-15px);
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
    
    .card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #00dbde, #fc00ff);
    }
    
    .card h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    
    .card h2:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 50px;
      height: 2px;
      background: linear-gradient(90deg, #00dbde, #fc00ff);
    }
    
    .card p {
      opacity: 0.7;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 25px;
    }
    
    .card-cta {
      color: #fff;
      background: linear-gradient(90deg, #00dbde, #fc00ff);
      padding: 10px 25px;
      border-radius: 30px;
      display: inline-block;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .card-cta:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transform: translateY(-3px);
    }
    
    .card-cta:after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(45deg);
      transition: all 0.5s ease;
      opacity: 0;
    }
    
    .card-cta:hover:after {
      opacity: 1;
      animation: shine 1.5s infinite;
    }
    
    /* Inquiry Form Styles */
    .inquiry-section {
      margin-top: 80px;
      margin-bottom:30px;
      padding: 40px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .inquiry-section:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #fc00ff, #00dbde);
    }
    
    .inquiry-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      background: linear-gradient(90deg, #fc00ff, #00dbde);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
    }
    
    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
    }
    select,textarea{
        width:100%;
    }
    .form-control {
      width: 90%;
      padding: 12px 20px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      color: #fff;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      outline: none;
      border-color: #00dbde;
      box-shadow: 0 0 0 2px rgba(0, 219, 222, 0.3);
      background: rgba(255, 255, 255, 0.1);
    }
    
    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }
    
    select.form-control {
        width:101%;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 15px;
    }
    
    select.form-control option {
      background-color: #24243e;
      color: #fff;
    }
    
    textarea.form-control {
      resize: vertical;
      min-height: 120px;
      width:96%;
    }
    
    .submit-btn {
      background: linear-gradient(90deg, #fc00ff, #00dbde);
      color: #fff;
      border: none;
      padding: 14px 30px;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .submit-btn:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transform: translateY(-3px);
    }
    
    .submit-btn:after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(45deg);
      transition: all 0.5s ease;
      opacity: 0;
    }
    
    .submit-btn:hover:after {
      opacity: 1;
      animation: shine 1.5s infinite;
    }
    
    .form-group.full-width {
      grid-column: 1 / -1;
    }
    
    @keyframes shine {
      0% {
        transform: translateX(-150%) rotate(45deg);
      }
      100% {
        transform: translateX(150%) rotate(45deg);
      }
    }
    
    .floating {
      animation: float 5s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
    }
    
    /* Success message */
    .success-message {
      display: none;
      background: rgba(46, 213, 115, 0.2);
      border: 1px solid rgba(46, 213, 115, 0.5);
      padding: 15px;
      border-radius: 10px;
      text-align: center;
      margin-top: 20px;
    }
    
    .success-message.show {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @media (max-width: 768px) {
      .cards-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }
      
      .section-title h1 {
        font-size: 2rem;
      }
      
      .inquiry-section {
        padding: 30px 20px;
      }
      select.form-control {
    width: 98%;}
    textarea.form-control {
    width: 90%;
}
    }
