body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  padding-top: 80px;
  /* color: #142c58; */
}


@media (max-width: 767px) {
  body {
    padding-top: 60px; /* reduce padding if header is smaller on mobile */

    /* line-height: 1.5; */
    background-color: #fff;
    overflow-x: hidden; /* prevent horizontal scroll on mobile */
  }
}

/* html {
  scroll-behavior: smooth;
} */


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  min-width: 1200px;
  max-width: 2000px;
  background: rgba(255, 255, 255, );
  display: flex;
  justify-content: space-between;
  padding: 20px 44px;
  align-items: center;
  z-index: 999;
}

@media (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 15px 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px;
    background-color: #ffffff;
  }

  header .logo-link {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .logo-link .logo {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  header .button-group {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px;
  }
}







.button-group {
  display: flex;
  gap: 10px;
}

@media (max-width: 767px) {
  .button-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}



.logo-link {
  text-decoration: none;
  /* color: inherit; */
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: #153469;
}

@media (max-width: 767px) {
  .logo-link {
    font-size: 28px;
    text-align: center;
    width: 100%;
  }
}


.logo-link .logo {
  color: inherit;
}

@media (max-width: 767px) {
  .logo-link .logo {
    text-align: center;
    width: 100%;
  }
}



.login-btn {
  background: #DA2F47;
  padding: 10px 18px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 767px) {
  .login-btn {
    width: 30%;
    text-align: center;
  }
}



/* Desktop Style */
.login {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 20px;
  color: #153469;
  text-decoration: none;
  font-weight: bold;
  font-family: "Inter", sans-serif;
}

/* Mobile Style */
@media (max-width: 767px) {
  .mobile-header {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .login {
    position: absolute;
    top: 5px;
    right: 40px; 
    /* padding: 6px 12px; */
    font-size: 16px;
    max-width: 20%; /* Prevents it from overflowing */
    box-sizing: border-box;
  }
}



.hero {
  display: flex;
  justify-content: space-between;
  /* Uncommented for better spacing */
  align-items: center;
  padding: 35px;
  width: 100%;
  max-width: 1200px;
  /* Adjust as per your layout */
  margin: 0 auto;
  box-sizing: border-box;
}


/* 18-inch screen (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .hero {
    max-width: 95%;
    /* Expand hero container */
    padding: 40px 60px;
  }

}


/* 21-inch screen (1920px and up) */
@media (min-width: 1920px) {
  .hero {
    max-width: 1612px;
    padding: 40px;
  }

}

@media (max-width: 767px) {
  .hero {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px 15px !important;
    max-width: 100% !important;
    text-align: center !important;
    gap: 20px;
  }

  .hero > * {
    width: 100% !important;
    margin-bottom: 15px !important;
  }
}






.strike {
  position: relative;
  display: inline-block;
  color: #DA2F47;
  /* Dark blue like your image */
  font-size: 40px;
  /* Adjust as needed */
  font-family: "Lato";
  /* Use your preferred font */
}

@media (max-width: 767px) {
  .strike {
    font-size: 58px;
    text-align: center;
  }
}


/* Approx. 14-inch screens (usually 1366px wide) */
@media (min-width: 1300px) and (max-width: 1440px) {
  .strike {
    font-size: 38px;
  }
}

/* Approx. 18-inch screens (usually 1600px wide) */
@media (min-width: 1441px) and (max-width: 1700px) {
  .strike {
    font-size: 42px;
  }
}

/* Approx. 21-inch screens (usually 1920px wide) */
@media (min-width: 1701px) {
  .strike {
    font-size: 46px;
  }
}


.strike::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  height: 3px;
  /* Thickness of the line */
  background-color: currentColor;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .strike::after {
    top: 50%;
    height: 2px;
  }
}


.content {
  max-width: 50%;
  margin-left: 17px;
  margin-top: -168px;
}
@media (max-width: 767px) {
  .content {
    max-width: 100%;
    margin: 0px;
    padding: 0 15px;
  }
}


/* 18-inch PC */
@media (min-width: 1366px) and (max-width: 1600px) {
  .content {
    max-width: 55%;
    margin-left: 30px;
    margin-top: -140px;
  }
}

/* 21-inch PC */
@media (min-width: 1920px) {
  .content {
    max-width: 60%;
    margin-left: 50px;
    margin-top: -200px;
  }
}

h1 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  color: #153469;
  font-family: 'lato';
}

@media (max-width: 767px) {
  h1 {
    font-size: 52px;
    line-height: 1.4;
    text-align: center;
  }
}


/* 18-inch PC */
@media (min-width: 1366px) and (max-width: 1600px) {
  h1 {
    font-size: 44px;
    line-height: 1.3;
  }
}

/* 21-inch PC */
@media (min-width: 1920px) {
  h1 {
    font-size: 48px;
    line-height: 1.4;
  }
}


.hero p {
  font-size: 20px;
  /* Slightly larger for emphasis */
  color: #153469;
  /* Light text for dark background */
  max-width: 600px;
  /* Prevent too wide lines */
  margin: 1rem 0 2rem 0;
  /* Space between heading and buttons */
  line-height: 1.6;
  /* Better readability */
  font-weight: 500;
  /* Light font for modern look */
  font-family: "lato";
}

/* 18-inch PC (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .hero p {
    font-size: 22px;
    max-width: 650px;
  }
}

/* 21-inch PC (1920px and up) */
@media (min-width: 1920px) {
  .hero p {
    font-size: 24px;
    max-width: 700px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .hero p {
    font-size: 18px;
    max-width: 100%;
    text-align: left;
    margin: 1rem 0;
    /* padding: 0 15px; */
  }
}



.highlight {
  color: #da2f47;
  /* You can replace this with any color code you want */
  font-weight: 600;
}

@media (max-width: 767px) {
  .highlight {
    display: inline;
  }
}



.hero p .highlight {
  color: #DA2F47;
  /* Accent color for brand name */
  font-weight: bold;
  /* Slightly bolder to stand out */
}

@media (max-width: 767px) {
  .hero p .highlight {
    color: #DA2F47;
    font-weight: bold;
    display: inline;
  }
}




.buttons {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .buttons {
    margin-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}


.btn-outline,
.btn-fill {
  padding: 10px 18px;
  border-radius: 6px;
  margin-right: 15px;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 767px) {
  .btn-outline,
  .btn-fill {
    width: 50%;
    text-align: center;
    margin-right: 0;
  }
}


.btn-outline {
  border: 2px solid #DA2F47;
  color: #DA2F47;
  font-size: 17px;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .btn-outline {
    font-size: 16px;
    border-radius: 12px;
  }
}


.btn-fill {
  background-color: #142c58;
  color: #fff;
  font-family: 'lato';
}

@media (max-width: 767px) {
  .btn-fill {
    font-size: 16px;
  }
}

.phones img {
  width: 520px;
  height: 580px;
  margin-top: -22%;
  max-width: 500px;
  max-height: 500px;
  border-radius: 58px;
}

@media (max-width: 767px) {
  .phones img {
    width: 110%;
    height: 110%;
    /* margin-top: 20px;+++++++ */
    /* margin-bottom: 20px; */
    max-width: 700px;
    max-height:900px;
    border-radius: 15px;
    /* display: block; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    margin-top: 10px;
  }
}


/* 21-inch PC */
@media (min-width: 1920px) {
  .phones img {
    width: 580px;
    height: 620px;
    margin-top: -25%;
    max-width: 580px;
    max-height: 620px;
  }
}

/* 18-inch PC */
@media (min-width: 1366px) and (max-width: 1600px) {
  .phones img {
    width: 480px;
    height: 520px;
    margin-top: -18%;
  }
}





/* Foooter  */


.footer-container {
  text-align: center;
  font-family: "Inter", sans-serif;
  margin-top: 0px;
  padding: 20px 0;
}


.footer-links {
  margin-bottom: 10px;
}



.footer-links a {
  margin: 0 10px;
  color: #5a5f6e;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
}




.footer-links a:hover {
  color: #000;
}


.footer-line {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}


@media (max-width: 767px) {
  .form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .form-column,
  .info-column {
    width: 100%;
    padding: 0 20px;
  }

  .form-column {
    order: 1;
  }

  .info-column {
    order: 2;
  }

  .form-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .form-input,
  .form-message {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    margin-bottom: 16px;
    border-radius: 8px;
  }

  .submit-wrapper {
    text-align: center;
  }

  .submit-button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #da2f47;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }

  .info-group {
    margin-bottom: 25px;
    /* background: #f8f8f8; */
    padding: 0px;
    border-radius: 10px;
    /* box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05); */
  }

  .info-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 6px;
  }

  .info-text,
  .info-number,
  .info-address {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-container {
    order: 3;
    margin-top: 30px;
    padding: 20px 16px;
    text-align: center;
    background: #fafafa;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 15px;
    padding: 6px 12px;
    /* background: #eaeaea; */
    border-radius: 20px;
    text-decoration: underline;
    color: #444;
  }

  .footer-line {
    font-size: 14px;
    color: #777;
  }
}




