body {

  font-family: 'Open Sans', sans-serif;
  /* color: #2a3447;
  background-color: #343a40; */
  			 	background:url("../Assets/bg-mobile.webp")no-repeat center center fixed;
    background-size:cover;

}

.bg-transparent {
	background-color: rgba(11, 11, 11, 0.72);
	border: 0;
}
.content-item {
  /* color:#313437;
  background-color:#343a40; */
  padding:50px 0;
}

.content-item p {
  color:#ffffff;
  line-height:1.5;
}

.content-item h2 {
  font-size:24px;
  font-weight:bold;
  margin-bottom:25px;
  line-height:1.5;
  padding-top:0;
  margin-top:0;
  color:inherit;
}

.content-item .intro {
  font-size:16px;
  max-width:500px;
  margin:0 auto 25px;
}

.content-item .intro p {
  margin-bottom:35px;
}

.content-item form {
  justify-content:center;
}

.content-item form .form-control {
  background:#eff1f4;
  border:none;
  border-radius:3px;
  box-shadow:none;
  outline:none;
  color:inherit;
  text-indent:9px;
  height:45px;
  margin-right:10px;
  min-width:250px;
}

.content-item form .btn {
  padding:16px 32px;
  border:none;
  background:none;
  box-shadow:none;
  text-shadow:none;
  opacity:0.9;
  text-transform:uppercase;
  font-weight:bold;
  font-size:13px;
  letter-spacing:0.4px;
  line-height:1;
}

.content-item form .btn:hover {
  opacity:1;
}

.content-item form .btn:active {
  transform:translateY(1px);
}

.content-item form .btn-primary {
  background-color:#055ada !important;
  color:#fff;
  outline:none !important;
}

h2 {
  color: #ffffff!important;
  text-align: center;
}

.result{
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}


/* Sticky Logo Styles */
.sticky-logo {
  position: fixed !important;
  z-index: 1050;
  transition: all 0.3s ease;
}

.sticky-logo-left {
  left: 20px;
  top: 20px;
}

.sticky-logo-right {
  right: 20px;
  top: 20px;
}

.sticky-logo img {
  height: 120px;
  width: auto;
  max-width: 400px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Responsive adjustments for sticky logos */
@media (max-width: 768px) {
  .sticky-logo img {
    height: 80px;
    max-width: 300px;
  }
  
  .sticky-logo-left {
    left: 10px;
    top: 10px;
  }
  
  .sticky-logo-right {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 480px) {
  .sticky-logo img {
    height: 60px;
    max-width: 200px;
  }
  
  .sticky-logo-left {
    left: 5px;
    top: 5px;
  }
  
  .sticky-logo-right {
    right: 5px;
    top: 5px;
  }
}
    /* .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: space-between;
} */

.row {
    --bs-gutter-x: 0rem !important;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}



/* Modal Styles */
.custom-modal {
    
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.301);
  backdrop-filter: blur(5px);
}

.custom-modal-content {
        max-height: calc(100vh - 50px) !important; /* Adjust 200px based on header/footer height */
      overflow-y: auto;
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border: none;
  border-radius: 20px;
  width: 90%;
  max-width: 80px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  animation: slideIn 0.3s ease-out;
}

.rundown-modal-content {
  max-width: 900px;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.custom-modal-header {
  padding: 20px 25px 15px;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  color: black !important;
  border-radius: 20px 20px 0 0;
}

.custom-modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.custom-modal-close {
  background: rgb(151, 10, 10);
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: all-scroll;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.custom-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.custom-modal-body {
    
  padding: 25px;
  text-align: center;
}

.custom-modal-footer {
  padding: 15px 25px 25px;
  text-align: center;
  border-top: 1px solid #dee2e6;
}

/* Responsive modal */
@media (max-width: 768px) {
  .custom-modal-content {
    
    width: 90%;
    margin: 10% auto;
  }
  
  .custom-modal-title {
    font-size: 1.2rem;
  }
}
