* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background-color: #9fa3e6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .top-bar {
      background: white;
      height: 80px;
      width: 100%;
    }

    .container {
      flex: 1;
      display: flex;
      
      max-width: 970px;
      max-height: 718px;
      margin:50px auto;
      border-radius: 15px;
      width: 100%;
      overflow: hidden;
    }

    .left-section {
      flex: 1;
      color: white;
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .left-section h1 {
      font-size: 52px;
      font-weight: bold;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .left-section p {
      font-size: 20px;
      margin-bottom: 30px;
    }

    .buttons {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
    }

    .btn-red {
      background: red;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      font-weight: bold;
    }

    .btn-outline {
      background: transparent;
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      border: 2px solid white;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
    }

    .trusted {
      margin-top: 40px;
      background: transparent;
      padding: 0;
    }

    .trusted p {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 20px;
      color: white;
    }

    .logos {
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .logo-wrapper {
      width: 120px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .logo-wrapper img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.3s;
    }

    .logo-wrapper img:hover {
      transform: scale(1.1);
    }

    .form-section {
      flex: 1;
      background: #c4c7f2;
      padding: 35px 20px;
      display: flex;
      padding-left: 1%;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .form-card {
      max-width: 420px;
      width: 100%;
      padding: 35px 30px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .form-card h2 {
      font-size: 26px;
      margin-bottom: 10px;
      color: #7a3dc8;
      text-align: center;
    }

    .form-card p {
      font-size: 14px;
      color: #555;
      text-align: center;
      margin-bottom: 20px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    input, textarea, select {
      padding: 12px 15px;
      border: 1.5px solid #ccc;
      border-radius: 10px;
      font-size: 14px;
      transition: 0.3s;
      width: 100%;
    }

    input:focus, textarea:focus, select:focus {
      border-color: #7a3dc8;
      outline: none;
      box-shadow: 0 0 5px rgba(122, 61, 200, 0.4);
    }

    textarea {
      resize: vertical;
    }

    .submit-btn {
      background: linear-gradient(135deg, #7a3dc8, #b084f9);
      color: white;
      border: none;
      padding: 14px;
      font-size: 16px;
      border-radius: 12px;
      cursor: pointer;
      margin-top: 10px;
      font-weight: bold;
      transition: 0.3s;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(122, 61, 200, 0.3);
    }

    input[type="checkbox"] {
      width: auto;
      margin-right: 10px;
      accent-color: #7a3dc8;
    }

    .form-row {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .form-row input[type="tel"] {
      flex: 1;
      min-width: 269px;
    }

    .bottom-logos-container {
      background: black;
      padding: 2% 4%;
    }

    .section-heading {
      font-size: 20px;
      color: white;
      margin-bottom: 15px;
    }

    .bottom-flex {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 30px;
      flex-wrap: nowrap;
    }

    .logos-row {
      display: flex;
      gap: 40px; 
      flex-wrap: wrap;
      align-items: center;
    }

    .logo-block {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-block .logo-wrapper {
      width: 60px;
      height: 40px;
      display: flex;
      overflow: hidden;
    }

    .logo-block .logo-wrapper img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .partner-text {
      color: white;
      font-size: 18px;
      line-height: 1.2;
      font-family: 'Courier New', Courier, monospace;
    }

    .ratings-container {
      margin: -49px 0 0 0;
      padding: 18px 36px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 65px;
      display: flex;
      align-items: center;
      gap: 30px;
      min-width: 250px;
      border: 2px outset white;
    }

    .rating-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      font-size: 16px;
    }

    .rating-box img {
      height: 52px;
      width: auto;
      margin-bottom: 8px;
      object-fit: contain;
    }

    .stars {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 16px;
    }

    .star {
      color: gold;
      font-size: 18px;
    }

    .clutch-logo {
      height: 60px !important;
      width: auto !important;
      object-fit: contain;
    }

    .upcity-logo {
      height: 60px !important;
      width: auto !important;
      background-color: #222;
      object-fit: contain;
    }
    
    @media (max-width: 900px) {
      .container {
        flex-direction: column;
      }
      .left-section h1 {
        font-size: 38px;
      }
      .left-section p {
        font-size: 16px;
      }
      .form-card {
        width: 100%;
      }
      .bottom-flex {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
      }
    }
.first {
  display: flex;                 /* makes left & right side by side */
  justify-content: space-between;
  align-items: flex-start;
  background-color: white;
  padding: 40px 50px;
  max-width: 100%;
  overflow: hidden;
  
}

.second {
  flex: 1;                       /* text takes left space */
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 2%;
}

.third {
  flex: 1;                       /* image takes right space */
  display: flex;
  justify-content: flex-end;     /* push image to the right */
  align-items: center;
  background-color: white;
  padding-right: 7%;
}

#im {
  max-width: 100%;
  height: 550px;
  padding-left: 1%;
  border-radius: 15px;       
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);  
}
#lop{
    font-size: 190px;
    padding-left: 8%;
}
.four{
    text-align: center;
    background-color: white;
    height: 800px;
    
}
.five{
    color:lightgreen;
    padding-top: 3%;
    font-weight: 700;
    font-size: 50px;
    text-decoration: underline wavy lightgreen;
    text-underline-offset: 6px;
}
.six{
    
    padding-top: 3%;
}
#ox{
    display: inline;
    color: darkgreen;
    font-size: 35px;
    font-weight: bold;
}
#cx{
    display: inline;
    color: green;
    font-size: 35px;

}
.seven{
    padding-top: 14px;
    text-align: center;
    word-spacing: 2px;
    padding-right: 18%;
}
.eight{
    padding-top: 2%;
}
.nine{
    background-color: white;
    height: 800px;
}
#bx{
    padding-top: 3%;
    text-align: center;
    font-size: 50px;
}
.adit{
  
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 30px;
    
    padding: 3px;
    margin: 0%;
    width: 50%;
    display: flex;
    gap: 10px;
    margin-top: 2%;
    margin-left: 340px;
}
.one{
  
  border:2px,solid,white;
  border-radius: 45px;
  padding: 15px;
  width: 180px;
  align-items: center;
  text-align: center;
  color: white;
  background-color: #222;
}
.two{
   border:2px,solid,white;
  border-radius: 45px;
  padding: 15px;
  width: 210px;
  align-items: center;
  text-align: center;
  background-color: whitesmoke;
}
.three{
   border:2px,solid,white;
  border-radius: 45px;
  padding: 2%;
  width: 200px;
  align-items: center;
  text-align: center;
  background-color: whitesmoke;
}
.ten{
   border:2px,solid,white;
  border-radius: 45px;
  padding: 2%;
  width: 200px;
  align-items: center;
  text-align: center;
  background-color: whitesmoke;
}
.box{
  padding-top: 2%;
  background-color: white;
  width: 90%;
}
.cde {
  width: 100%;             /* take full container width */
  display: flex;           /* optional: center image */
  justify-content: center; /* center horizontally */
  overflow: hidden;   
  padding-top: 2%;     /* stop overflow */
}

.cde img {
  max-width: 100%;   /* scale image to container */
  height: auto;      /* keep proportions */
  display: block;
}

.bde{
  background-color: white;
  padding-top: 2%;
  
  height: auto;
}
