/* Header Styles */
.site-header1 {
  background-color: #1a3a5c;
  padding: 15px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: #1a3a5c;
}

.company-title {
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.header-contact {
  display: flex;
  gap: 25px;
  align-items: center;
}

.contact-phone,
.contact-chat {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.contact-phone::before {
  content: "📞 ";
}

.contact-chat {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(135deg, #001d42 0%, #001d42 50%, #001d42 100%);
  min-height: 650px;
  padding: 80px 100px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/banner/2.png');
  opacity: 0.3;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 80%;
}

.hero-main-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  color: white;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text {
  color: white;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 10px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-primary-cta,
.btn-secondary-cta {
  padding: 11px 35px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-cta {
  background-color: #1a3a5c;
  color: white;
}

.btn-primary-cta:hover {
  background-color: #0f2744;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary-cta {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-cta:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-visual-elements {
  position: absolute;
  right: 60px;
  bottom: 40px;
  width: 450px;
  height: 400px;
}

.visual-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.package-box {
  position: absolute;
  background: linear-gradient(135deg, #d4a574 0%, #c99960 100%);
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.package-box::before,
.package-box::after {
  content: '';
  position: absolute;
  background: #a67c52;
}

.package-box::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 2px;
}

.package-box::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 60%;
}

.package-box-1 {
  width: 80px;
  height: 70px;
  bottom: 60px;
  left: 20px;
}

.package-box-2 {
  width: 90px;
  height: 80px;
  bottom: 80px;
  left: 110px;
}

.package-box-3 {
  width: 70px;
  height: 65px;
  bottom: 100px;
  left: 210px;
}

.package-box-4 {
  width: 60px;
  height: 55px;
  bottom: 30px;
  right: 120px;
}

.clipboard-element {
  position: absolute;
  width: 180px;
  height: 220px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  top: 80px;
  right: 180px;
  padding: 20px;
}

.clipboard-element::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 30px;
  background: #d4a574;
  border-radius: 15px 15px 0 0;
}

.checklist-item {
  width: 100%;
  height: 30px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: #4a9d5f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: bold;
}

.checklist-item::after {
  content: '';
  flex: 1;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
}

.tracking-device {
  position: absolute;
  width: 120px;
  height: 140px;
  background: #2c3e50;
  border-radius: 10px;
  bottom: 60px;
  right: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.device-display {
  width: 90%;
  height: 60%;
  background: #4a9d5f;
  margin: 10px auto;
  border-radius: 5px;
  position: relative;
}

.device-display::after {
  content: '📍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}

/* Services Section */
.services-section {
  background-color: #f5f5f5;
  padding: 50px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-main-title {
  text-align: center;
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 2px solid #ddd;
}

.services-card-wrapper {
  background: linear-gradient(135deg, #e8e8f0 0%, #d4d4e0 100%);
  border-radius: 15px;
  padding: 40px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: solid 2px #c5c5cf;
}

.service-card-item:last-child {
  border-right: 0px;
}

.service-header-block {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 38px;
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 26px;
}

.service-card-description {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
}

.quote-form-container {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  align-items: end;
}

.form-input-group {
  display: flex;
  flex-direction: column;
}

.form-select-field,
.form-text-input {
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: white;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-select-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232c3e50' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-select-field:hover,
.form-text-input:hover {
  border-color: #4a7ba8;
}

.form-select-field:focus,
.form-text-input:focus {
  outline: none;
  border-color: #2c4f7c;
  box-shadow: 0 0 0 3px rgba(44, 79, 124, 0.1);
}

.btn-quote-submit {
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #4a7152 0%, #3a5942 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-quote-submit:hover {
  background: linear-gradient(135deg, #3a5942 0%, #2a4932 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.price-highlight {
  color: #d97706;
  font-weight: 700;
}

/* Convenience Section */
.convenience-section {
  position: relative;
  min-height: 500px;
  background-image: url('../img/banner/2.png');
  background-size: cover;
  background-position: center;
  padding: 60px;
  overflow: hidden;
}

.convenience-content-overlay {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.convenience-main-heading {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.convenience-description-text {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 600;
}

.waitlist-form-wrapper {
  display: flex;
  gap: 15px;
  max-width: 600px;
}

.email-input-field {
  flex: 1;
  padding: 15px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background: white;
}

.email-input-field:focus {
  outline: none;
  border-color: #2c4f7c;
}

.btn-waitlist-join {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #e89b47 0%, #d97706 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-waitlist-join:hover {
  background: linear-gradient(135deg, #d97706 0%, #c96805 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.store-image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(245, 245, 245, 0.8), rgba(245, 245, 245, 0)); */
  background: linear-gradient(to right,
      rgba(0, 60, 181, 0.35),
      rgba(0, 60, 181, 0));
}

/* Why Choose Section */
.why-choose-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-main-title {
  text-align: center;
  font-size: 40px;
  color: #1a3a5c;
  margin-bottom: 50px;
  font-weight: 700;
}

.features-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  background: linear-gradient(135deg, #e8e8f0 0%, #d4d4e0 100%);
  padding: 30px;
  border-radius: 15px;
}

.feature-card-item {
  text-align: center;
  padding: 5px 20px;
  border-right: solid 2px #c5c5cf;
}

.feature-card-item:last-child {
  border-right: none;
}

.feature-icon-wrapper {
  /* font-size: 60px;
  margin-bottom: 10px; */

  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 38px;


}

.feature-card-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 10px;
}

.feature-card-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.5;
}

/* Footer Section */
.footer-cta-section {
  background: linear-gradient(135deg, #1a3a5c 0%, #2c4f7c 100%);
  padding: 40px 60px;
  text-align: center;
}

.footer-cta-heading {
  color: white;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-contact-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-link-item {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-link-item:hover {
  color: #7a9dc9;
  transform: translateY(-2px);
}

.footer-link-email::before {
  content: "✉️ ";
}

.footer-link-phone::before {
  content: "📞 ";
}

.footer-link-chat::before {
  content: "💬 ";
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-visual-elements {
    width: 350px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 15px 30px;
    flex-direction: column;
    gap: 15px;
  }

  .hero-banner {
    padding: 60px 30px;
  }

  .hero-main-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-visual-elements {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    text-align: center;
  }

  .services-card-wrapper {
    padding: 25px;
  }

  .services-grid-layout {
    grid-template-columns: 1fr;
  }

  .quote-form-container {
    grid-template-columns: 1fr;
  }

  .convenience-section {
    padding: 40px 30px;
  }

  .convenience-main-heading {
    font-size: 27px;
  }

  .waitlist-form-wrapper {
    flex-direction: column;
  }

  .btn-waitlist-join {
    width: 100%;
  }

  .store-image-overlay {
    display: none;
  }

  .features-grid-layout {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .footer-cta-section {
    padding: 30px 20px;
  }

  .footer-contact-links {
    flex-direction: column;
    gap: 15px;
  }
}




#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  z-index: 100;
  display: none;
}

.cnt223 a {
  text-decoration: none;
}

.popup-onload {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: none;
  z-index: 999;
  align-content: center;
}

.cnt223 {
  min-width: 900px;
  width: 900px;
  margin: 100px auto;
  background: #ffffff;
  position: relative;
  z-index: 103;
  padding: 20px;
  border-radius: 5px;
}

.cnt223 p {
  clear: both;
  color: #555555;
  /* text-align: justify; */
  font-size: 20px;
  margin-bottom: 0px;
}

.cnt223 a {
  position: absolute;
  top: -10px;
  right: -12px;
  cursor: pointer;
  font-size: 35px;
  color: #ffffff;
  font-weight: 500;
  background-color: #dd0000;
  width: 35px;
  height: 35px;
  line-height: 25px;
  text-align: center;
  border-radius: 25px;
  padding: 5px;
}

.cnt223 .x {
  float: right;
  height: 35px;
  left: 22px;
  position: relative;
  top: -25px;
  width: 34px;
}

.cnt223 .x:hover {
  cursor: pointer;
}





@media (max-width: 991px) {

  .cnt223 {
    min-width: 95%;
    width: 95%;
        padding: 8px;
  }

  .site-header1 {
    padding: 15px 18px;
    display: block;
  }

  .header-contact {
    margin-top: 10px;
  }

  .hero-content-wrapper {
    max-width: 100%;
  }

  .hero-banner {
    padding: 33px 20px;
    min-height: 425px;
  }

  .hero-main-title {
    font-size: 29px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-text {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .hero-cta-group {
    margin-top: 18px;
  }

  .service-card-item {
    border-right: none;
    border-bottom: solid 2px #c5c5cf;
    gap: 5px;
  }

  .service-card-item:last-child {
    border-bottom: none;
  }

  .quote-form-container {
    padding: 0px;
    background-color: transparent;
  }

  .form-select-field {
    border: none;
  }

  .feature-card-item {
    border-right: none;
    border-bottom: solid 2px #c5c5cf;
    padding: 5px 0px;
  }

  .feature-card-item:last-child {
    border-bottom: none;
  }

  .footer-cta-heading {
    font-size: 25px;
    margin-bottom: 5px;
  }

  .footer-contact-links {
    gap: 0px;
  }

  .footer-link-item {
    font-size: 15px;
  }

  .convenience-section {
    min-height: 410px;
  }

}