body {
    overflow-x: hidden;
    overflow-y: auto;
}

.gradient-border-btn {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid;
    border-radius: 6px;
    z-index: 1;
    background-color: transparent;
    border-color: #137D9E;
    animation: btn-auto-transition 1.2s ease-in-out infinite alternate,
               border-glow 1.2s ease-in-out infinite alternate;
    box-shadow: 0 0 8px 2px rgba(247, 154, 58, 0.3);
    transition: all 0.3s ease;
}

@keyframes btn-auto-transition {
    0% {
        background-color: transparent;
        border-color: #137D9E;
    }
    100% {
        background-color: rgba(168, 117, 17, 0.53);
        border-color: #F79A3A;
    }
}

@keyframes border-glow {
    0% {
        box-shadow: 0 0 0px 0 rgba(247, 154, 58, 0.2);
    }
    100% {
        box-shadow: 0 0 12px 5px rgba(247, 154, 58, 0.7);
    }
}
.static-border-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #137D9E;
    border-radius: 6px;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

/* Optional: Hover effect */
.static-border-btn:hover {
    background-color: #137D9E;
    color: white;
}
/* Remove Bootstrap dropdown arrow */
.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Optional: Add hover underline or style */
.navbar .nav-link:hover {
    text-decoration: underline;
}
.hero-section {

    height: 880px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navigation-container {
    width: 100%;
    margin-top: 19px;
}

.navigation-wrapper {
    width: 95%;
    margin: 0 auto;
}

.banner-container {
    margin-top: 80px;
}

.banner-content {
    max-width: 562px;
    padding-left: 80px;
}

.hero-heading {
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
    padding-bottom: 0;
}

.text-highlight {
    color: #008E8B;
}

.powered-by {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin: -2px 0 6px 0;
    padding: 0;
}

.divider-line {
    height: 3px;
    background: linear-gradient(to right, #008E8B 50%, white 50%);
    width: 100%;
    margin: 4px 0 8px 0;
}

.subtext {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #D9D3D3;
    margin-bottom: 0.25rem;
}

.description-box {
    max-width: 480px;
    margin-top: 70px;
}

.description-text {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #9F9F9F;
    margin: 0;
}

.read-more-btn {
    display: inline-block;
    margin-top: 16px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(90deg, #008E8B, #00514F);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
}
/* Navbar */
.main-navbar {
      background-color: rgba(36, 34, 34, 0.5);

    height: 94px;
}
.navbar-logo1 {
  width: 95%;
  height: 95%;
  object-fit: contain;
}


/* Optional: Adjust for very small screens if needed */
/* Default logo size */
.navbar-logo {
  width: 61px;
  height: 61px;
  object-fit: contain;
}

/* Screens ≤ 768px (tablets and small devices) */
@media (max-width: 768px) {
  .navbar-logo {
    width: 60px;
    height: 60px;
  }
}

/* Screens ≤ 576px (phones) */
@media (max-width: 576px) {
  .navbar-logo {
    width: 60px;
    height: 60px;
  }
}

/* Screens ≤ 375px (small phones) */
@media (max-width: 375px) {
  .navbar-logo {
    width: 50px;
    height: 50px;
  }
}

/* Screens ≤ 320px (very small phones) */
@media (max-width: 320px) {
  .navbar-logo {
    width: 45px;
    height: 45px;
  }
}

/* Screens ≤ 280px (extra small like Galaxy Fold) */
@media (max-width: 280px) {
  .navbar-logo {
    width: 40px;
    height: 40px;
  }
}
.navbar-toggler {
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 320px) {
    .navbar {
        flex-wrap: wrap;
    }

    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

  
     .navbar-toggler-icon {
        width: 1.2rem;
        height: 1.2rem;
    }
}

.custom-toggler {
    border-color: white;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Mobile vertical menu overlay */
.mobile-vertical-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #242222;
    z-index: 1055;
    padding: 30px;
    overflow-y: auto;

    /* Animation setup */
    width: 100%;
    max-width: 100%;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none;
}

.mobile-vertical-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* On tablets and up, restrict width */
@media (min-width: 768px) {
    .mobile-vertical-menu {
        max-width: 320px;
    }
}

.mobile-vertical-menu .close-btn {
    font-size: 32px;
    background: none;
    border: none;
    color: white;
    float: right;
}

/* Force desktop menu hidden at 1024px and below */


/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #137D9E 0%, #008E8B 100%);
}

.gradient-border-btn {
    border: 2px solid #008E8B;
    background: transparent;
}

.static-border-btn {
    border: 2px solid white;
    background: transparent;
}


/* Hero banner layout */
.hero-section {
    background: url('../images/home.png') center center / cover no-repeat;
    height: 736px;
    position: relative;
}



.hero-heading {
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
}

.text-highlight {
    color: #008E8B;
}

.powered-by {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin-top: -2px;
    margin-bottom: 6px;
}

.divider-line {
    height: 3px;
    background: linear-gradient(to right, #008E8B 50%, white 50%);
    width: 100%;
    margin: 4px 0 8px;
}

.subtext {
    font-size: 25px;
    font-weight: 600;
    color: #D9D3D3;
    font-family: 'Roboto', sans-serif;
}

.description-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.read-more-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(90deg, #008E8B, #00514F);
    color: white;
    border-radius: 12px;
    text-decoration: none;
}

.social-banner-box-3433 {
    position: absolute;
    top: 40%;
    right: 10px;
    transform: translateY(-50%);
    width: 70px;
    height: 355px;
    background: rgba(36, 34, 34, 0.66); /* #242222 with opacity */
    backdrop-filter: blur(8px); /* 34% blur effect */
    -webkit-backdrop-filter: blur(8px);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 3;
    padding: 10px 0;
}

.social-banner-box-3433 a img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.social-banner-box-3433 a:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-banner-box-3433 {
        display: none;
    }
}



/* Info Boxes */
/* Info Boxes Section */
.info-boxes-section {
  margin-top: -70px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.info-box {
    width: 230px;
    min-height: 180px;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 10px 0;
    position: relative;
    margin: 10px; /* Adds spacing between boxes */
    color: #fff;
}


.icon-wrapper {
    margin-bottom: 8px; /* Add small space below icon */
}

.icon-wrapper img {
  width: 50px;
  height: 50px;
}
.info-box p {
  margin: 0;
  font-size: 21px;

}

.bottom-strip {
  position: relative;
  margin-top: auto;
  height: 25px;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/****************************** boxes ***********************/


.info-boxes-wrapper-3433 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
}

/* Responsive boxes */
.info-box-3433 {
    width: 230px;
    min-height: 175px;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 10px 0;
    position: relative;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Font size for label */
.info-box-3433 p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 8px;
}

/* Bottom strip sticky and full width */
.bottom-strip-3433 {
    height: 14px;
    width: 118%;
    margin-top: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Responsive tweak: shrink box width on small screens */
@media (max-width: 576px) {
    .info-box-3433 {
        width: 160px;
    }

    .info-box-3433 p {
        font-size: 18px;
    }
}















/* Custom Colors */
.box-1 { background-color: #038683; }
.box-11 { background-color: #038683; }
.strip-1 { background-color: #066967; }

.box-2 { background-color: #B1951F; }
.strip-2 { background-color: #997E0A; }

.box-3 { background-color: #2E7D49; }
.strip-3 { background-color: #43634E; }

.box-4 { background-color: #B76C2D; }
.strip-4 { background-color: #815C3E; }

.box-5 { background-color: #464444; }
.strip-5 { background-color: #3B3A3A; }
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


@media (max-width: 767.98px) {
  .hero-heading {
    font-size: 36px;
    text-align: center;
  }

  .powered-by,
  .subtext,
  .description-text {
    font-size: 16px;
    text-align: center;
  }

  .banner-content {
    text-align: center !important;
    padding: 0 15px;
  }

  .read-more-btn {
    margin: 12px auto 0;
  }

  .info-boxes-section {
    margin-top: 30px; /* Push it lower after banner */
    padding-top: 20px;
  }

  .info-box p {
    font-size: 16px;
  }

  .info-box {
    padding: 20px 8px;
    min-height: auto;

  }

  .icon-wrapper img {
    width: 40px;
    height: 40px;
  }
}


/* Overlay Styling */
.custom-overlay {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    background-color: #4C5F64;
    padding: 20px 30px; /* Reduced vertical padding */
    z-index: 3;
    width: 90%;
    max-width: 100%;
    border-radius: 12px;
    color: white;
    box-sizing: border-box;
}

.custom-overlay h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 28px; /* Reduced font size */
    font-weight: 600;
    margin-bottom: 18px;
}

.custom-overlay p,
.custom-overlay ul {
    font-size: 15px; /* Reduced paragraph and list size */
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Responsive style for smaller screens */
@media (max-width: 768px) {
    .custom-overlay {
        position: static;
        transform: none;
        width: 100%;
        padding: 25px 15px;
        border-radius: 0;
        margin-top: 20px;
    }

    .custom-overlay h3 {
        font-size: clamp(20px, 5vw, 28px);
        text-align: center;
        margin-bottom: 18px;
    }

    .custom-overlay p,
    .custom-overlay ul {
        font-size: clamp(14px, 4vw, 16px);
    }
}

@media (max-width: 480px) {
    .custom-overlay h3 {
        font-size: clamp(18px, 6vw, 24px);
        margin-bottom: 15px;
    }
}

/* Floating Social Icons */
.floating-icons {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

/* Info Boxes */
.info-boxes-section .info-box {
    border-radius: 20px;
    padding: 30px 10px;
    color: white;
    text-align: center;
    margin: 18px 10px;
    position: relative;
    overflow: hidden;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-boxes-section .icon-wrapper img {
    width: 50px;
    height: 50px;
}

.info-boxes-section .bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 15px;
    width: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}





@media (max-width: 992px) {



    .info-stats-section .text-white div:first-child {
        font-size: 18px !important;
    }

    .info-stats-section .text-white div:last-child {
        font-size: 30px !important;
    }
}

@media (max-width: 768px) {
    .info-stats-section .row.g-0 {
        flex-direction: column !important;
        height: auto !important;
    }

    .info-stats-section .col-3 {
        width: 100% !important;
        background-color: #333333 !important;
        padding: 40px 0 !important;
        height: auto !important;
    }

    .info-stats-section .col-9 {
        width: 100% !important;
        margin-top: 10px;
    }

   
    .info-stats-section .d-flex.justify-content-center.align-items-center {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 25px;
    }

    .info-stats-section img {
        margin: 0 0 10px 0 !important;
    }

    .custom-overlay {
        position: static !important;
        transform: none !important;
        margin-top: 20px;
        border-radius: 0;
    }

    .floating-icons {
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .info-boxes-section .info-box {
        flex: 0 0 45%;
        max-width: 45%;
        height: auto;
        padding: 20px 10px;
    }
}

@media (max-width: 576px) {
    .floating-icons {
        display: none;
    }

    .info-boxes-section .info-box {
        flex: 0 0 90%;
        max-width: 90%;
        margin: 10px auto;
    }
}
.carousel-inner {
    display: flex;
  
    align-items: center;
    height: auto; /* Don't force height */
 
}
.carousel-inner img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .carousel-item img {
        max-height: 300px;
    }

    .custom-overlay {
        position: static !important;
        transform: none !important;
        margin-top: 20px;
        width: 100% !important;
        border-radius: 0;
    }
}
@media (max-width: 576px) {
    .hero-heading {
        font-size: clamp(28px, 8vw, 48px);
        text-align: center;
    }

    .powered-by {
        font-size: clamp(14px, 4vw, 18px);
        text-align: center;
    }

    .subtext {
        font-size: clamp(14px, 4vw, 20px);
        text-align: center;
    }

    .description-box {
       
        text-align: center;
    }

    .description-text {
        font-size: clamp(12px, 3.5vw, 16px);
    }

    .read-more-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .banner-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin: 0 auto;
    }
}
@media (max-width: 576px) {
    .mobile-vertical-menu .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }

    .mobile-vertical-menu .gradient-border-btn,
    .mobile-vertical-menu .btn-gradient,
    .mobile-vertical-menu .static-border-btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .mobile-vertical-menu .close-btn {
        font-size: 24px;
    }
}
@media (max-width: 400px) {
    .mobile-vertical-menu .nav-link {
        font-size: 13px;
        padding: 6px 0;
    }

    .mobile-vertical-menu .gradient-border-btn,
    .mobile-vertical-menu .btn-gradient,
    .mobile-vertical-menu .static-border-btn {
        font-size: 12px;
        padding: 5px 10px;
    }

    .mobile-vertical-menu .close-btn {
        font-size: 22px;
    }
}

@media (max-width: 320px) {
    .mobile-vertical-menu .nav-link {
        font-size: 12px;
        padding: 5px 0;
    }

    .mobile-vertical-menu .gradient-border-btn,
    .mobile-vertical-menu .btn-gradient,
    .mobile-vertical-menu .static-border-btn {
        font-size: 11px;
        padding: 4px 8px;
    }

    .mobile-vertical-menu .close-btn {
        font-size: 20px;
    }
}
@media (max-width: 1265px) {
    /* Force hide desktop navbar */
    .navbar-collapse.d-lg-flex {
        display: none !important;
    }

    /* Force show hamburger */
    .navbar-toggler.d-lg-none {
        display: block !important;
    }
}
/* Default sizes */
.stat-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.stat-value {
    font-size: 40px;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .responsive-stat-box {
        flex-direction: column !important;
        text-align: center !important;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-value {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-value {
        font-size: 24px;
    }
}
/* Mission Section */
.mission-section {
    
    padding: 0 15px;
}

.mission-container {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.mission-top-spacing {
  margin-top: 180px;
}

@media (max-width: 767.98px) {
  .mission-top-spacing {
    margin-top: 60px; /* Adjust as needed for mobile */
  }
}


.responsive-mr {
  margin-right: -110px;
}

@media (max-width: 767.98px) {
  .responsive-mr {
    margin-right: 0 !important;
  }
}

/* Heading */
.mission-heading {
    color: #454444;
    font-family: Roboto, sans-serif;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    word-wrap: break-word;
    font-size: clamp(18px, 8vw, 48px);
}

.mission-subtitle {
    color: #454444;
    font-family: Roboto, sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: clamp(16px, 3.5vw, 24px);
}

/* Service Boxes */
.service-boxes-wrapper {
    margin-top: 30px;
}

.service-box {
    background-color: #3F8E94;
    border-radius: 12px;
    padding: 30px;
    max-width: 464px;
    height: 281px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.box-21 {
    background-color: #333333;
}

.box-31 {
    background-color: #3F8E94;
}

/* Hover effects */
.box-11:hover,
.box-31:hover {
    background-color: #01383C;
}

.box-21:hover {
    background-color: #000000;
}

/* Titles and text with clamp */
.box-title {
    font-family: Roboto, sans-serif;
    margin-bottom: 10px;
    font-size: clamp(16px, 4vw, 24px);
}

.box-text {
    font-family: Roboto, sans-serif;
    line-height: 1.4;
    font-size: clamp(14px, 3.5vw, 20px);
}

/* Responsive Layout Adjustments */
@media (max-width: 768px) {
    .mission-container {
      
    }

    .service-box {
        max-width: 100%;
    }
}

/***********************Lost & Found **********************************/

.nav-btn {
    background-color: #000;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 20;
    opacity: 0.8;
}
.nav-btn:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .nav-btn {
        display: none;
    }
}

.lost-found-section .btn-outline-primary {
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 24px;
}
.lost-found-btn {
    width: 100px;
    height: 50px;
    color: white;
    border: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Regular weight */
    border-radius: 6px;
    transition: all 0.3s ease;
    padding: 0.375rem 0.75rem;
}

.lost-found-btn[data-target="lost"] {
    background: linear-gradient(135deg, #008E8B, #00514F);
}

.lost-found-btn[data-target="found"] {
    background: linear-gradient(135deg, #696969, #353535);
}

.lost-found-btn:hover {
    opacity: 0.9;
}

/* Responsive: full width on very small screens */
@media (max-width: 576px) {
    .lost-found-btn {
        width: 100%;
    }
}
/* Responsive styles for Lost & Found section */
@media (max-width: 991.98px) {
  /* Center Lost/Found toggle buttons */
  .lost-found-section .row.mb-4 .d-flex {
    margin-left: 0 !important;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Stack image and details vertically in Lost/Found cards */
  .slider-track-lost .d-flex,
  .slider-track-found .d-flex {
    flex-direction: column !important;
    align-items: center;
  }

  .slider-track-lost img,
  .slider-track-found img {
    width: 100% !important;
    height: auto !important;
    max-width: 300px;
  }

  .slider-track-lost ul,
  .slider-track-found ul {
    padding-top: 20px;
    max-width: 100% !important;
    width: 100%;
  }

  /* Stack right side (contact card) under left content */
  .lost-slide > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .lost-slide .p-4.rounded {
    width: 100% !important;
    max-width: 500px;
    height: auto !important;
    margin-top: 20px;
  }

  /* Center navigation arrows */
  
}

.slider-wrapper {
  width: 530px; /* fixed width for slider wrapper */
  overflow: hidden;
}


.slider-track-lost,
.slider-track-found {
  display: flex;
  transition: transform 0.5s ease;
  width: max-content; /* ensures content stays inline */
}

@media (max-width: 575.98px) {
  /* Slightly reduce padding and font sizes for smallest devices */
  .slider-track-lost .p-4,
  .slider-track-found .p-4 {
    padding: 1rem !important;
  }

  .slider-track-lost h4,
  .slider-track-found h4 {
    font-size: 28px !important;
  }

  .lost-slide .p-4.rounded h4 {
    font-size: 18px !important;
  }

  .lost-slide .p-4.rounded p {
    font-size: 16px !important;
  }

 

  .lost-slide .p-4.rounded .d-flex.align-items-center span {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  /* Stack image and content vertically */
  .slider-track-lost .d-flex {
    flex-direction: column !important;
    align-items: center;
  }

  .slider-track-lost .p-4 {
    min-width: 100% !important;
    height: auto !important;
  }

  .slider-track-lost h4 {
    font-size: 28px !important;
    margin-bottom: 10px;
  }

  .slider-track-lost .my-3 {
    font-size: 16px;
    height: auto !important;
    padding: 10px 0;
  }

  .slider-track-lost img {
    width: 100% !important;
    height: auto !important;
    max-width: 300px;
  }

  .slider-track-lost ul {
    max-width: 100% !important;
    padding-top: 15px;
    width: 100%;
  }

  /* Contact card moves below on smaller screens */
  .lost-slide > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .lost-slide .p-4.rounded {
    width: 100% !important;
    max-width: 500px;
    height: auto !important;
    margin-top: 20px;
    padding: 1.5rem !important;
  }

  /* Buttons smaller and stacked */
 
  .lost-slide h4,
  .lost-slide p {
    font-size: 18px !important;
  }

  /* Banner text and spacing */
  .slider-track-lost h4.text-center {
    text-align: center;
    margin-top: 10px;
  }

  /* Adjust heading image padding */

}

@media (max-width: 575.98px) {
  .slider-track-lost h4 {
    font-size: 22px !important;
  }

  .slider-track-lost .my-3 {
    font-size: 14px !important;
  }


  .lost-slide .p-4.rounded p {
    font-size: 16px !important;
  }
}
/* Base styling — no fixed width */
/* Base Styles for Buttons */

.responsive-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  width: 100%;
  height: 67px;
  max-width: 300px;
  font-size: clamp(10px, 4vw, 16px); /* Responsive font size */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin: 0 auto; /* center on small screens */
}

.contact-heading-99922 {
  font-size: 22px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45); /* 0.45 = 45% opacity */

  margin-bottom: 65px;
}


.btn.call {
  background-color: #ED3024;
  color: white;
}

.btn.facebook {
  background-color: #036893;
  color: white;
}

.btn.whatsapp {
  background-color: #09A85E;
  color: white;
}

/* Responsive Container */
@media (max-width: 767.98px) {
  .col-lg-auto.align-self-center > div {
    width: 100% !important;
    height: auto !important;
    padding: 2rem 1rem !important;
    box-sizing: border-box;
  }


  .lost-slide {
    padding: 0 !important;
  }

  .col-lg-auto .img-fluid {
    max-width: 100px;
    height: auto;
  }

  .col-lg-auto h4 {
    font-size: 1rem;
  }

  .col-lg-auto p,
  .col-lg-auto .d-flex span {
    font-size: 0.95rem !important;
  }

  .col-lg-auto .d-flex img {
    width: 22px;
    height: 22px;
  }
}
  @media (max-width: 576px) {
    .lost-found-btn-container {
      margin-left: 0 !important;
      justify-content: center !important;
    }

    .lost-found-btn {
      width: auto !important;
      flex: none !important;
    }
  }




.slide-content {
  flex: 0 0 530px;
  width: 530px;
  box-sizing: border-box;
}
/* Default: Desktop layout */
.slider-wrapper {
  width: 100%;
  max-width: 530px;
  overflow: hidden;
}

.slider-track-lost,
.slider-track-found {
  display: flex;
  transition: transform 0.5s ease;
}

.slide-content {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 !important;
  padding: 1rem; /* or what you already use */
  box-sizing: border-box;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .slider-wrapper {
    max-width: 100%;
  }

  .slide-content {
    padding: 1rem;
    height: auto;
  }

  .lost-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .detail-wrap ul {
    font-size: 13px !important;
  }

  h4 {
    font-size: 24px !important;
  }

  .text-center.my-3 {
    font-size: 14px;
    height: auto;
    padding: 0.5rem;
  }
}

  .lost-image {
    width: 260px;
    max-width: 100%;
      max-height: 300px; /* or any height you prefer */
    height: auto;
    border: 10px solid #ffffff;
    object-fit: contain;
  }

  .image-wrap {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .detail-wrap {
    max-width: 100%;
    padding-top: 10px;
  }

  @media (max-width: 576px) {


    .d-flex.flex-column.flex-md-row {
      flex-direction: column !important;
      align-items: center;
    }

    .image-wrap,
    .detail-wrap {
      width: 100%;
      max-width: none;
    }

    .lost-image {
      width: 100%;
      height: auto;
    }
  }
   .contact-box {
    width: 100%;
    max-width: 500px;
    height: auto;
    background-color: #E0E2D6;
  }

  .contact-box h4 {
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }

  .contact-box p {
    font-size: 1.2rem;
    color: #848583;
  }

  .contact-box .phone-text {
    font-size: 1rem;
    color: #848583;
  }

  @media (max-width: 576px) {
    .contact-box h4 {
      font-size: 1.2rem;
    }

    .contact-box p {
      font-size: 1rem;
    }

    .contact-box .phone-text {
      font-size: 0.9rem;
    }

    .contact-box img {
      max-height: 50px;
    }
  
  }
 /* Default (Desktop): Position the buttons at left and right sides */
.lost-nav-btn,
.found-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  z-index: 10;
}

/* Responsive behavior (on screens smaller than 768px) */
@media (max-width: 768px) {
  /* Make buttons centered and aligned horizontally */
  .lost-nav-btn,
  .found-nav-btn {
    position: relative;
    top: auto;
    transform: none;
    display: inline-block;
    margin: 0 10px; /* Adjust spacing between buttons */
  }

  /* Adjust button sizes */
  .lost-nav-btn img,
  .found-nav-btn img {
    width: 36px;
    height: 36px;
  }

  /* Place buttons at the bottom and center them horizontally */

  

}



@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row !important;
        margin: 16px;
    }
}
.transition-slide {
    transition: transform 0.5s ease;

}
.success-heading {
  font-size: clamp(32px, 6vw, 64px); /* Scales responsively */
  font-weight: 600; /* Semi-bold */
  font-family: 'Roboto', sans-serif;
  text-align: center;
  color: #454444;
  margin-bottom: 20px;
  line-height: 1.2;
}

.report-section {
  background-image: url('../images/bg.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  padding: 0 15px;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.report-heading {
  font-family: Roboto, sans-serif;
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 600;
  color: white;
}

.report-btn {
  background: linear-gradient(to right, #01B4B0, #0A8D8A);
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.report-btn:hover {
  background: linear-gradient(to right, #0A8D8A, #01B4B0);
  text-decoration: none;
}
.footer-section {
  background-color: #282828;
  color: white;
  font-family: Roboto, sans-serif;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #eaeaea;
  max-width: 380px;
  text-align: justify;
}
@media (max-width: 768px) {
  .footer-desc {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .footer-desc {
    max-width: 100%; /* full width on small devices */
    padding: 0 20px; /* more space from edges */
  }
}


.social-icon:hover {
  
  text-decoration: none;
  color: #fff;
}

.move-top {
  z-index: 999;
}
.custom-hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #ccc;
  width: 100vw; /* full screen width */
  margin-left: calc(-50vw + 50%); /* offset to break container limits */
}
.social-icon img {
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.1);
}


/*********************************** */
.hero-section-8492 {
  position: relative;
  min-height: 797px;
  overflow: hidden;
  margin-bottom: 40px;
}

.bg-image-container-8492 {
  display: flex;
  justify-content: center;
}

.hero-img-8492 {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-overlay-wrapper-8492 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1288px;
  background: none;
}

.overlay-content-8492 {
  background: linear-gradient(to bottom, rgba(36, 34, 34, 0.26), rgba(36, 34, 34, 0.8));
  border-radius: 10px;
  color: #fff;
  min-height: 300px;

  /* Add blur */
  backdrop-filter: blur(8px);         /* For background blur */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
}



.slide-title-8492 {
      font-family: 'Roboto', sans-serif;
  font-size: 46px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-bottom: 20px;

}


.slide-text-8492 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  color: rgba(255, 255, 255, 0.8); /* 80% opacity white */
  text-align: justify; /* Changed from center to justify */
  line-height: 1.6;
}

.image-gallery-8492 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 15px;
  overflow: hidden;
  height: 450px; /* desktop height */
}

.image-thumb-8492 {
  flex: 0 0 292px;
  height: 346px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.image-thumb-8492.active {
  flex: 0 0 380px;
  height: 450px;
  border: 3px solid #fff;
  z-index: 2;
  border-radius: 20px;
  /* Removed scale to keep exact 380x450 size */
}

.image-thumb-8492 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Base styles already define layout for desktop */
/* Now we add scaling logic for smaller screens */

@media (max-width: 1199.98px) {
  .slide-title-8492 {
    font-size: 64px;
  }

  .slide-text-8492 {
    font-size: 16px;
  }

  .image-thumb-8492 {
    flex: 0 0 240px;
    height: 290px;
  }

  .image-thumb-8492.active {
    flex: 0 0 320px;
    height: 380px;
  }
}

@media (max-width: 991.98px) {
  .slide-title-8492 {
    font-size: 48px;
  }

  .slide-text-8492 {
    font-size: 15px;
  }

  .image-thumb-8492 {
    flex: 0 0 200px;
    height: 260px;
  }

  .image-thumb-8492.active {
    flex: 0 0 280px;
    height: 340px;
  }
}

@media (max-width: 767.98px) {
  .slide-title-8492 {
    font-size: 36px;
  }

  .slide-text-8492 {
    font-size: 14px;
  }

  .image-thumb-8492 {
    flex: 0 0 160px;
    height: 220px;
  }

  .image-thumb-8492.active {
    flex: 0 0 240px;
    height: 300px;
  }
}

@media (max-width: 575.98px) {
  .slide-title-8492 {
    font-size: 28px;
  }

  .slide-text-8492 {
    font-size: 13px;
  }

  .image-thumb-8492 {
    flex: 0 0 140px;
    height: 180px;
  }

  .image-thumb-8492.active {
    flex: 0 0 200px;
    height: 260px;
  }
}
.mt-10 {
    margin-top: 2rem; /* or 100px if you prefer */
}
@media (max-width: 767.98px) {
  .strategy-box {
    height: auto !important;
    flex-direction: column !important;
    text-align: center;
  }

  .strategy-box .circle-icon {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }

  .strategy-box .text-start {
    text-align: center !important;
  }
}


/********************Our Stagry ******************/
@media (max-width: 767.98px) {
  .strategy-box {
    height: auto !important;
    padding-top: 4rem !important;
  }
}

.responsive-circle .circle-icon {
    width: 90px;
    height: 90px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    background-color: #fff;
  }

  .responsive-circle img {
    width: 40px;
    height: 40px;
  }

  .strategy-title {
    color: #3F8E94;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0,0,0,0.08);
    font-size: 18px;
  }

  .strategy-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    text-align: justify;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
  }

  @media (max-width: 576px) {
    .responsive-circle {
      top: -35px !important;
      left: 12px !important;
    }

    .responsive-circle .circle-icon {
      width: 60px;
      height: 60px;
    }

    .responsive-circle img {
      width: 28px;
      height: 28px;
    }

    .strategy-title {
      font-size: 16px;
    }

    .strategy-text {
      font-size: 13px;
    }
  }

  @media (max-width: 400px) {
    .strategy-title {
      font-size: 15px;
    }

    .strategy-text {
      font-size: 12.5px;
    }
  }
  @media (max-width: 1199.98px) {
  .position-absolute.w-100.text-center {
    position: relative !important;
    bottom: auto !important;
    margin-top: 1.5rem;
  }

  .col-md-6 img[alt="Mission Image"] {
    position: static !important;
    margin-top: 1rem;
  }
}

/* Force each slide to take 100% of the wrapper */
.slider-wrapper {
  width: 100%;
  max-width: 530px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

/* Track should only scroll horizontally */
.slider-track-lost,
.slider-track-found {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Each slide */
.slide-content {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 1rem;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .slide-content {
    padding: 1rem;
    height: auto;
  }

  .lost-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .slider-track-lost .d-flex.flex-md-row {
    flex-direction: column !important;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .slide-content h4 {
    font-size: 22px !important;
  }

  .slide-content ul {
    font-size: 12px !important;
  }

  .lost-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.slider-track-lost .missing-icon {
  position: absolute;
  top: -1.5vw;
  left: -0.5vw;
  width: 8vw !important;
  height: auto !important;
  max-width: 100px;
  z-index: 10;
}

/* For screens below 992px – make icon a bit larger and better placed */
@media (max-width: 991.98px) {
  .slider-track-lost .missing-icon {
    top: -3vw !important;
    left: -1vw !important;
    width: 10vw !important;
    max-width: 90px !important;
  }
}

/* For very small screens */
@media (max-width: 576px) {
  .slider-track-lost .missing-icon {
    top: -5vw;
    left: -2.5vw;
    width: 24vw !important;
    max-width: 80px;
  }
}
.slider-track-found .found-icon {
  position: absolute;
  top: -1.5vw;
  left: -0.5vw;
  width: 8vw !important;
  height: auto !important;
  max-width: 100px;
  z-index: 10;
}

/* For screens below 992px – make icon a bit larger and better placed */
@media (max-width: 991.98px) {
  .slider-track-found .found-icon {
    top: -3vw !important;
    left: -1vw !important;
    width: 10vw !important;
    max-width: 90px !important;
  }
}

/* For very small screens */
@media (max-width: 576px) {
  .slider-track-found .found-icon {
    top: -5vw;
    left: -2.5vw;
    width: 24vw !important;
    max-width: 80px;
  }
}


/******************LOST ITEMS PAGE ********************/
.lost-card {
    width: calc(20% - 16px); /* 5 per row default */
}

@media (max-width: 1400px) {
    .lost-card {
        width: calc(25% - 16px); /* 4 per row */
    }
}

@media (max-width: 1100px) {
    .lost-card {
        width: calc(33.333% - 16px); /* 3 per row */
    }
}

@media (max-width: 768px) {
    .lost-card {
        width: calc(50% - 16px); /* 2 per row */
    }
}

@media (max-width: 500px) {
    .lost-card {
        width: 100%; /* 1 per row */
    }
}

.overlay-5411 {
    position: absolute;
    left: 3px;
    top: 0%;
    transform: translateY(-50%);
    width:67px;
    height: 40px;
    pointer-events: none;
    z-index: 2;
}
 .slide-title-8492, .slide-text-8492 {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .slide-animate-8492 .slide-title-8492,
  .slide-animate-8492 .slide-text-8492 {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 767.98px) {
  .image-gallery-8492 {
        align-items: center;
        height: auto;
        flex-wrap: nowrap;
  }
}
.success_banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px; /* or 100vh */
  z-index: 0; /* below navbar */
  pointer-events: none; /* allows clicks to go through if needed */
}

.success_banner .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/*********************** MOdal CSS ********************************/
.modal-content {
            border: none;
            border-radius: 10px !important;
            min-height: 600px;
        }
        
        .volunteer-left {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .volunteer-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }
        
        .volunteer-content {
            position: relative;
            z-index: 2;
        }
        
        .volunteer-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .volunteer-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 3rem;
        }
        
        .signin-section {
            margin-top: auto;
        }
        
        .signin-text {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .btn-signin {
            background: white;
            color: #2c3e50;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-signin:hover {
            background: transparent;
            color: white;
            border-color: white;
        }
        
        .signup-form {
            padding: 2rem;
            background: white;
        }
        
        .form-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            font-weight: 500;
            color: #16a085;
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
        }
        
        .required-asterisk {
            color: #dc3545;
            margin-left: 2px;
        }
        
        .form-control {
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 0.375rem;
            font-size: 0.95rem;
        }
        
        .form-control:focus {
            border-color: #16a085;
            box-shadow: 0 0 0 0.2rem rgba(22, 160, 133, 0.25);
        }
        
        .input-group-text {
            background: #f8f9fa;
            border-right: none;
            color: #6c757d;
        }
        
        .phone-input {
            border-left: none;
        }
        
        .password-input-wrapper {
            position: relative;
        }
        
        .password-toggle {
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            color: #6c757d;
        }
        
        .btn-signup {
            background: #16a085;
            border-color: #16a085;
            color: white;
            padding: 0.75rem;
            border-radius: 0.375rem;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .btn-signup:hover {
            background: #138d75;
            border-color: #138d75;
            color: white;
        }
        
        .text-brand {
            color: #16a085;
        }
        
        .text-danger {
            color: #dc3545;
        }
        
        .form-check-input:checked {
            background-color: #16a085;
            border-color: #16a085;
        }
        
        .modal-lg-custom {
            max-width: 900px;
        }
        
        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
        }

.modal-header {
	border-bottom: none;
	padding-bottom: 0;
}

.brand-logo {

	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 16px;
	
}

.nav-pills .nav-link {
	background: #f8f9fa;
	color: #6c757d;
	border-radius: 0.5rem;
	margin: 2px;
}

.nav-pills .nav-link.active {
	background: linear-gradient(135deg, #008E8B, #00514F);
	color: white;
	border: none;
	border-radius: 0.375rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary {
	background: #16a085;
	border-color: #16a085;
}

.btn-primary:hover {
	background: #138d75;
	border-color: #3F8E94;
}

.form-label {
	font-weight: 500;
	color: #3F8E94;
	margin-bottom: 0.25rem;
}

.required-asterisk {
	color: #dc3545;
	margin-left: 2px;
}

.form-control:focus {
	border-color: #16a085;
	box-shadow: 0 0 0 0.2rem rgba(22, 160, 133, 0.25);
}

.input-group-text {
	background: #f8f9fa;
	border-right: none;
}

.phone-input {
	border-left: none;
}

.password-toggle {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	color: #6c757d;
}

.password-input-wrapper {
	position: relative;
}

.text-brand {
	color: #0d9488;
}

.text-danger {
	color: #dc3545;
}

.modal-body {
	padding-top: 0;
}

.brand-info p {
	margin: 0;
	font-size: 0.75rem;
	color: #6c757d;
}

@media (min-width: 768px) {
    .modal-lg-custom {
      max-width: 800px; /* You can increase this to 900px or 1000px if needed */
    }
  }

  @media (min-width: 992px) {
    .modal-lg-custom {
      max-width: 900px;
    }
  }

  @media (min-width: 1200px) {
    .modal-lg-custom {
      max-width: 679px;
    }
  }
  /********************Register *************/
   .contact-custom-css {
            display: flex;
            flex-direction: column;
            align-self: center;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 10px auto;
            color: white;
        }

        .contact-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .btn-custom-gradient {
            background: linear-gradient(to bottom, #008E8B, #00514F);
            border: none;
            color: white;
        }

        .btn-custom-gradient:hover {
            background: linear-gradient(to bottom, #007370, #003d3b);
            color: white;
        }
        .font15{
            font-size: 15px;
        }

        .modal-content {
            border-radius: 15px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .btn-close {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 1060;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .logo-circle {
            width: 32px;
            height: 32px;
            background-color: #3F8E94;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .brand-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        
        .brand-name .pyara {
            color: #3F8E94;
        }
        
        .powered-by {
            font-size: 10px;
            color: #666;
            margin-top: -2px;
        }
        
        .tab-buttons {
            display: flex;
            margin-bottom: 25px;
        }
        
        .tab-btn {
            flex: 1;
            padding: 10px 15px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tab-btn.active {
         background: linear-gradient(135deg, #008E8B, #00514F);

            color: white;
        }
        
        .tab-btn:not(.active) {
          background: linear-gradient(135deg, #CDCDCD, #CDCDCD);


            color: #666;
        }
        
        .tab-btn:first-child {
            border-radius: 8px 0 0 8px;
        }
        
        .tab-btn:last-child {
            border-radius: 0 8px 8px 0;
        }
        
        .form-label {
            color: #3F8E94;
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .required {
            color: #dc3545;
        }
        
        .form-control {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px 12px;
            font-size: 14px;
        }
        
        .form-control:focus {
            border-color: #20b2aa;
            box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25);
        }
        
        .phone-input {
            display: flex;
            align-items: center;
        }
        
        .country-code {
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            border-right: none;
            border-radius: 8px 0 0 8px;
            padding: 10px 12px;
            font-size: 14px;
            color: #666;
        }
        
        .phone-input .form-control {
            border-radius: 0 8px 8px 0;
            border-left: none;
        }
        
        .password-field {
            position: relative;
        }
        
        .password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            background: none;
            color: #666;
            cursor: pointer;
        }
        
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
        }
        
        .form-check-input:checked {
            background-color: #20b2aa;
            border-color: #20b2aa;
        }
        
        .forgot-link {
            color: #dc3545;
            text-decoration: none;
            font-size: 14px;
        }
        
        .register-btn {
             background: linear-gradient(135deg, #008E8B, #00514F);

            border: none;
            border-radius: 8px;
            padding: 12px;
            font-weight: 500;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .register-btn:hover {
            background-color: #1a9b95;
        }
        
        .signup-link {
            text-align: center;
            font-size: 14px;
            color: #666;
        }
        
        .signup-link a {
            color: #20b2aa;
            text-decoration: none;
        }
        @media (max-width: 1550px) {
  .main-navbar .d-lg-block {
    display: none !important;
  }

  .main-navbar .d-lg-flex {
    display: none !important;
  }

  .main-navbar .d-lg-none {
    display: flex !important;
  }
}

   .custom-close-btn {
            cursor: pointer;
            font-size: 24px;
            color: #6c757d;
        }

        .custom-close-btn:hover {
            color: #000;
        }

        .custom-close-btn::before {
            content: "×";
        }

        @media (max-width: 767px) {
            .modal-dialog {
                max-width: 90%;
            }
            .modal-body .row {
                flex-direction: column;
            }
            .modal-body .col-md-4,
            .modal-body .col-md-8 {
                width: 100%;
                padding: 10px;
            }
            .modal-body img {
                max-width: 100%;
                height: auto;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .modal-dialog {
                max-width: 70%;
            }
            .modal-body .row {
                flex-direction: row;
            }
            .modal-body .col-md-8 {
                width: 60%;
                padding: 10px;
            }
            .modal-body .col-md-4 {
                width: 40%;
                padding: 10px;
            }
            .modal-body img {
                max-width: 100%;
                height: auto;
            }
        }

        @media (min-width: 1025px) {
            .modal-dialog {
                max-width: 50%;
            }
        }