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 - 100px) !important;
  overflow-y: auto;
  background-color: #fefefe;
  margin: 2% auto;
  padding: 0;
  border: none;
  border-radius: 20px;
  width: 95%;
  max-width: 900px;
  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;
}

/* Modal Button Styles */
.custom-modal-footer .btn {
  border-radius: 25px;
  padding: 10px 25px;
  margin: 5px;
  background: #002971;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.custom-modal-footer .btn:hover {
  background: #001a4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 41, 113, 0.3);
}

.custom-modal-footer .btn:active {
  transform: translateY(0);
}

.download-btn {
  background: #002971 !important;
}

.close-btn {
  background: #6c757d !important;
}

.close-btn:hover {
  background: #5a6268 !important;
}

/* Responsive modal */
@media (max-width: 1200px) {
  .custom-modal-content {
    width: 90%;
    margin: 3% auto;
  }
}

@media (max-width: 768px) {
  .custom-modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: calc(100vh - 80px) !important;
    border-radius: 15px;
  }
  
  .custom-modal-title {
    font-size: 1.2rem;
  }
  
  .custom-modal-header {
    padding: 15px 20px 10px;
  }
  
  .custom-modal-body {
    padding: 20px 15px;
  }
  
  .custom-modal-footer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .custom-modal-content {
    width: 98%;
    margin: 2% auto;
    max-height: calc(100vh - 60px) !important;
    border-radius: 10px;
  }
  
  .custom-modal-title {
    font-size: 1.1rem;
  }
  
  .custom-modal-header {
    padding: 12px 15px 8px;
  }
  
  .custom-modal-body {
    padding: 15px 10px;
  }
  
  .custom-modal-footer {
    padding: 8px 15px 15px;
  }
  
  .custom-modal-footer .btn {
    font-size: 0.9rem;
    padding: 8px 20px !important;
    margin: 5px !important;
  }
}

@media (max-width: 320px) {
  .custom-modal-content {
    width: 100%;
    margin: 1% auto;
    border-radius: 0;
  }
}

/* Rundown Image Responsive Styles */
#rundownImageContainer {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

#rundownImageContainer img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-bottom: 15px;
  object-fit: contain;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
  #rundownImageContainer img {
    border-radius: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  #rundownImageContainer img {
    border-radius: 8px;
    margin-bottom: 8px;
  }
}

@media (max-width: 320px) {
  #rundownImageContainer img {
    border-radius: 5px;
    margin-bottom: 5px;
  }
}
