
.section {
  background-color: #080d2e;
  padding-top: 150px; /* Default padding for larger devices */
}

@media (max-width: 1024px) {
  .section {
    padding-top: 120px; /* Medium devices (tablets) */
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 80px; /* Small devices (mobile) */
  }
}





/* Default for large devices */
.bg {
  background: linear-gradient(90deg, #080d2e 100%, #a9a9a9 51%, #080d2e 100%);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 100%;
}



/* Default styles for all devices */
.bg-section-inner {
  padding: 25px 10px;
  color: #fff;
  background-color: #080d2e;
}
.hero-blog{margin-top: 30px;}
.hero-text {
  text-align: left;
  max-width: 100%;
}

.hero-text h1 {
  font-size: 70px;
  line-height: 70px;
  color: #fff;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0;
  text-transform: initial;
  letter-spacing: -0.04em;
}

.hero-text h1 span {
  font-weight: 100;
  font-style: normal;
  letter-spacing: -0.039em;
  display: inline !important;
}

.hero-text p {
  margin-top: 16px;
  margin-bottom: 30px;
  font-size: 20px; /* Increased */
  line-height: 30px; /* Adjusted for better readability */
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
  .bg-section-inner {
      padding: 75px 20px 0;
  }

  .hero-text h1 {
      font-size: 70px; /* Slightly increased */
      line-height: 75px;
      margin-bottom: 30px;
  }

  .hero-text p {
      font-size: 22px; /* Slightly increased */
      line-height: 38px;
  }

  .hero-text {
      max-width: 100%;
  }
}

/* Medium devices (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .bg-section-inner {
      padding: 60px 20px 0;
  }

  .hero-text h1 {
      font-size: 60px; /* Increased */
      line-height: 65px;
      margin-bottom: 25px;
  }

  .hero-text p {
      font-size: 22px; /* Increased */
      line-height: 34px;
  }

  .hero-text {
      max-width: 100%;
  }
}

/* Small devices (767px and below) */
@media (max-width: 767px) {
  .bg-section-inner {
      padding: 50px 10px 0;
  }

  .hero-text h1 {
      font-size: 40px; /* Increased from 40px */
      line-height: 42px;
      margin-bottom: 25px;
  }

  .hero-text p {
      margin-top: 20px;
      margin-bottom: 20px;
      font-size: 24px; /* Increased from 22px */
      line-height: 40px;
  }
  .hero-blog{margin-top: 10px;}
}


/* Default Styles */
.contact-options-container {
margin-top: 40px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.contact-option{margin-bottom: 50px;}

.contact-title {
font-size: 19px;
opacity: 0.85;
margin-bottom: 0px;
letter-spacing: -0.65px;
font-weight: 600;
}

.contact-method p {
font-weight: 300;
font-size: 30px;
line-height: 1.4;
letter-spacing: -0.015em;
margin-top: 0px;
position: relative;
}

.contact-method a {
display: inline-block;
margin-bottom: 6px;
color: inherit;
text-decoration: none;
font-weight: 500;
position: relative;
transition: all 0.3s ease-in-out;
}

.contact-method a::after {
content: "";
display: block;
width: 100%;
height: 2px;
background: linear-gradient(90deg, #bfff00 50%, rgba(255, 255, 255, 0.3) 50%);
background-size: 200% 100%;
background-position: right bottom;
transition: background-position 0.3s ease-in-out;
}

.contact-method a:hover {
color: #bfff00;
}

.contact-method a:hover::after {
background-position: left bottom;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {

.contact-title {
  font-size: 16px;
}

.contact-method p {
  font-size: 22px;
}
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {


.contact-title {
  font-size: 17px;
  margin-bottom: 0px;
}

.contact-method p {
  font-size: 20px;
}

.contact-method a {
  font-size: 16px;
}
}




/* ---------- Interest Checkboxes ---------- */
/* ---------- Interest Checkboxes ---------- */
/* ---------- Interest Checkboxes ---------- */
.interest-checkboxes { 
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* Better spacing */
  margin-bottom: 25px;
  justify-content: flex-start; /* Left aligned */
  padding: 10px 0; /* Consistent padding */
}

/* Checkbox Labels */
.interest-checkboxes label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px; /* Better padding */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
}

/* Hover Effect */
.interest-checkboxes label:hover {
  background-color: #444;
}

/* Active State */
.interest-checkboxes label.active {
  background-color: #c59b6d;
  border-color: #c59b6d;
  color: #fff;
}

/* Hide Default Checkbox */
.interest-checkboxes input[type="checkbox"] {
  display: none;
}

/* ---------- Responsive Styling ---------- */
@media (min-width: 1025px) {  /* Desktop - 4 per row */
  .interest-checkboxes label {
      flex: 1 1 calc(27% - 8px);
  }
}

@media (max-width: 1024px) { /* Tablet - 3 per row */
  .interest-checkboxes {
      gap: 6px;
  }

  .interest-checkboxes label {
      flex: 1 1 calc(33.33% - 6px);
      font-size: 14px;
      padding: 9px 12px;
  }
}

@media (max-width: 768px) { /* Mobile - 2 per row */
  .interest-checkboxes {
      gap: 6px;
      padding: 8px 0;
  }

  .interest-checkboxes label {
      flex: 1 1 calc(50% - 6px);
      font-size: 13px;
      padding: 8px 10px;
  }
}

@media (max-width: 480px) { /* Small Mobile */
  .interest-checkboxes {
      gap: 4px;
      padding: 6px 0;
  }

  .interest-checkboxes label {
      flex: 1 1 calc(50% - 4px);
      font-size: 12px;
      padding: 7px 8px;
  }
}



/* ---------- Form Layout ---------- */
/* ---------- Contact Form ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

/* ---------- Form Row ---------- */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px; /* Ensures equal spacing */
}

/* ---------- Input Fields & Floating Labels ---------- */
input, textarea {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  border-bottom: 2px solid #555;
  padding: 12px 0 5px;
  font-size: 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease;
  pointer-events: none;
}

/* Floating Label Effect */
input:focus + label,
input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Focus Effect for Input */
input:focus, textarea:focus {
  border-bottom: 2px solid #fff;
}

/* ---------- File Upload Section ---------- */
.file-upload {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  justify-content: space-between;
  border: 2px dashed #007bff;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
  margin-bottom: 20px; /* Equal spacing */
}

/* File Upload Button - Different Look */
.file-label {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
}

/* Hover Effect */
.file-label:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* File Info */
.file-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hide File Input */
.file-upload input {
  display: none;
}

/* ---------- Submit Button (Different Look) ---------- */
.submit-button {
  background: #c59b6d;
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  max-width: 300px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px; /* Ensures equal spacing */
}

/* Hover Effect */
.submit-button:hover {
  background: #080d2e;
  color: #fff;
  border: 2px solid #c59b6d;
}

/* ---------- Responsive Styling ---------- */
@media (max-width: 768px) {
  .form-row {
      flex-direction: column;
      gap: 15px;
  }

  .form-group {
      min-width: 100%;
      margin-bottom: 15px; /* Consistent spacing */
  }

  .file-upload {
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 350px;
      padding: 15px;
      gap: 12px;
      margin-bottom: 15px; /* Ensures equal spacing */
  }

  .file-label {
      font-size: 15px;
      padding: 10px 18px;
  }

  .file-info {
      font-size: 13px;
      text-align: center;
  }

  .submit-button {
      width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-form {
      padding: 15px;
  }

  input, textarea {
      font-size: 16px;
  }

  .file-upload {
      max-width: 100%;
      padding: 12px;
      margin-bottom: 15px; /* Consistent spacing */
  }

  .file-label {
      font-size: 14px;
      padding: 8px 16px;
      border-radius: 6px;
  }

  .file-info {
      font-size: 12px;
  }

  .submit-button {
      font-size: 16px;
      padding: 12px 20px;
      margin-bottom: 15px; /* Ensures equal spacing */
  }
}



.main-title{font-size:50px;line-height:1.05;color:#fff;letter-spacing:-.04em}
@media (max-width:1200px){
.main-title{font-size:50px;line-height:1.1}
}
@media (max-width:768px){
.main-title{font-size:45px;line-height:1.15}
}
@media (max-width:480px){
.main-title{font-size:42px;line-height:1.2}
}