/* Global Styles */
body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    /*padding-top: 76px;*/
    /* Adjust based on navbar height */
    box-sizing: border-box;
    background-color: #f8f9fa;
}

/* Navbar */
/*.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #0d6efd !important;
    padding: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd !important;
    text-decoration: underline;
}*/

/*---Header menu--*/
.header.sticky {position: fixed;width: 100%;top: 0px;z-index: 80000;box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 15px;transition: 0.6s;background: rgb(255, 255, 255);animation: 1s ease 0.2s 1 normal both running fadeInDown;}
.header .logo img {max-height: 54px;width: auto;}  
.header .navbar .navbar-nav .nav-link {color: #1b83aa; font-weight: 500; transition: color 0.3s; position: relative; padding: 0px; margin: 8px; }
.header .navbar .navbar-nav .nav-link::after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #f9bd02;
  transition: transform 0.4s ease;
}
.header .navbar .navbar-nav .nav-link.active::after{content: "";
  transform: translateX(-50%) scaleX(1);
}
.header .navbar .navbar-nav .nav-link:hover::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #f9bd02;
  transition: transform 0.4s ease;
}

.header .navbar .navbar-nav .btn-custom {background-color: #f9bd02;color: #376094;border-radius: 8px;padding: 6px 26px; font-weight: 500;transition: background-color 0.3s ease;}
.header .navbar .navbar-nav .btn-custom:hover {background-color: #e0a800;color: #fff;}
    /* Custom Hamburger Icon */
.header .navbar .custom-toggler {border: none;background: transparent;}
.header .navbar .custom-toggler .icon-bar {
      display: block;
      width: 22px;
      height: 2px;
      background-color: white;
      margin: 4px 0;
      transition: all 0.3s ease;
    }

  @media (max-width: 992px) {
    .header .navbar .navbar-brand img{max-height: 38px;width: auto;}
    .header .navbar { background-color: #fff;}  
    .header .navbar .custom-toggler .icon-bar { background-color: #000; }
    .header .navbar .navbar-nav .nav-link { color: #000 !important; }
    .header .navbar .navbar-nav .nav-link:hover {color: #616161;}
  }
/*---Ends--*/

/* Banner Section */
.mobile-banner{display: none;}
.hero-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 60vh;
    min-height: 536px;
    background-color: #e9ecef;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers area, change to 'contain' or 'fill' if user wants whole image visible regardless of ratio */
    z-index: 0;
    opacity: 1.0;
}

/* Mobile Responsiveness for Banner */
@media (max-width: 992px) {
    .desktop-banner{display: none;}
    .mobile-banner{display: block;}
    .hero-section {
       height: unset;
       min-height: unset;
    }
    .hero-bg-img {
        position: unset;
        width: 100%;
        height: auto;
    }
}



/* Report Button Section */
.report-btn-container {
    padding: 20px 0px 90px 0px;
    text-align: center;
}

.btn-report {
    padding: 15px 50px;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-report:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.btn-report img{
    filter: invert(1);
    width: 36px;
    height: auto;
}
@media (max-width: 768px) {
.btn-report {
    font-size: 30px;
    }
}
@media (max-width: 531px) {
.btn-report {
    font-size: 22px;
    }
.btn-report img{
    width: 30px;
    height: auto;
}    
}
@media (max-width: 428px) {
.btn-report {
    font-size: 19px;
    }
.btn-report img{
    width: 23px;
    height: auto;
}
.report-btn-container .report-msg{font-size: 18px;} 
}

/* CTA Message */
.cta-message {
    color: #495057;
    animation: pulse-text 2s infinite ease-in-out;
}

@keyframes pulse-text {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

/* Info Boxes Section */
.info-section {
    padding: 30px 0px 48px 0px;
}

.info-box {
    background: #ede8d05c;
    padding: 40px;
    padding-top: 60px;
    /* Space for the floating circle */
    border-radius: 15px;
    text-align: center;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    /*margin-top: 50px;*/
    /* Space for the top half of the circle */
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-icon-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1b83aa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: background-color 0.3s ease;
}

.info-box:hover .info-icon-container {
    background-color: #dc3545;
}

.info-title {
    font-weight: bold;
    margin-bottom: 20px;
    color: #212529;
}

.info-text-list {
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
    color: #6c757d;
}

.info-text-list li {
    margin-bottom: 10px;
}

/* Form Placeholder Styling */
.form-control::placeholder,
.form-select::placeholder {
    font-size: 0.9rem;
    opacity: 0.7;
    /* Optional: makes it slightly lighter for better distinction */
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 18px 0;
    text-align: center;
}

/* Form Styles */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #0d6efd;
}

.card {
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}