/* Header styling to match OurTeam.html */
header {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-nav a,
.brand {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.mobile-nav-content a {
  color: white !important;
  transition: color 0.2s ease;
}

.mobile-nav-content a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.hamburger-line {
  background: white !important;
}

/* Updated background - different from OurTeam but still professional */
body {
  background: linear-gradient(135deg, #2d5a87 0%, #4a7ba7 50%, #6fa8dc 100%) !important;
  background-color: #2d5a87 !important; /* Fallback color to prevent white flash */
  min-height: 100vh;
  transition: none !important; /* Prevent any background transitions */
}

/* Ensure background stays consistent when mobile menu is open */
body.menu-open {
  background: linear-gradient(135deg, #2d5a87 0%, #4a7ba7 50%, #6fa8dc 100%) !important;
  background-color: #2d5a87 !important; /* Fallback color */
  transition: none !important; /* Prevent any background transitions */
}

header h1 {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.btn-signIn {
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-signIn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white !important;
  border: 2px solid white;
}





.orobor-logo-white {
  filter: invert(1) brightness(2);
}

/* Collection Hero Section - matching OurTeam.html styling */
.collection-hero-section {
  padding: 8rem 0 6rem 0;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.collection-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.collection-hero-content {
  margin-bottom: 4rem;
}

.collection-hero-title {
  font-size: 5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.collection-hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 4rem auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.collection-hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.collection-hero-stats .stat-item {
  text-align: center;
  color: white;
}

.collection-hero-stats .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #3498db;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.collection-hero-stats .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design for Collection Hero */
@media (max-width: 1200px) {
  .collection-hero-title {
    font-size: 4rem;
  }
  
  .collection-hero-stats {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .collection-hero-section {
    padding: 6rem 0 4rem 0;
  }
  
  .collection-hero-title {
    font-size: 3rem;
  }
  
  .collection-hero-subtitle {
    font-size: 1.3rem;
  }
  
  .collection-hero-stats {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .collection-hero-stats .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .collection-hero-section {
    padding: 4rem 0 3rem 0;
  }
  
  .collection-hero-container {
    padding: 0 1rem;
  }
  
  .collection-hero-title {
    font-size: 2.5rem;
  }
  
  .collection-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .collection-hero-stats .stat-number {
    font-size: 2rem;
  }
  
  .collection-hero-stats .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .collection-hero-title {
    font-size: 2rem;
  }
  
  .collection-hero-subtitle {
    font-size: 1rem;
  }
}

/* .map-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c9a063 0%, #8c4f00 100%);
    border-radius: 2px;
} */

/* Full-screen container */
.container {
    position: relative;
    height: calc(100vh - 140px);
    margin-top: 4rem;
    margin-bottom: 60px;
    overflow: hidden;
}

/* Full-screen map */
#map {
    width: 80vw;
    height: calc(100% - 0px);
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Floating search bar - enhanced glassmorphism */
.search-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 420px;
    max-width: 90vw;
}

#search-input {
    width: 100%;
    padding: 18px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    color: whitesmoke;
}

#search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 3px whitesmoke,
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

#search-input::placeholder {
    color: whitesmoke;
    font-weight: 500;
}

/* Enhanced search results dropdown */
.search-results {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-height: 320px;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    color: whitesmoke;
}

.search-results.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.search-result-item {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item h4 {
    margin: 0 0 6px 0;
    color: whitesmoke;
    font-size: 15px;
    font-weight: 600;
}

.search-result-item p {
    margin: 0;
    color: whitesmoke;
    font-size: 13px;
    font-weight: 500;
}

/* Floating location counter */
.location-counter {
    position: absolute;
    bottom: 20px;
    right: 190px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 16px 22px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    min-width: 140px;
    text-align: center;
}

.location-counter:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.location-counter .count {
    font-size: 24px;
    font-weight: 700;
    color: whitesmoke;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.location-counter .label {
    font-size: 12px;
    color: whitesmoke;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* State filter dropdown */
.state-filter-container {
    position: absolute;
    top: 25px;
    left: 250px;
    z-index: 1000;
}

.state-filter {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 14px 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    font-size: 14px;
    font-weight: 600;
    color: whitesmoke;
    min-width: 160px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23f5f5f5' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.state-filter:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.state-filter:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 3px whitesmoke,
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.state-filter option {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    padding: 12px 16px;
    border: none;
    font-weight: 500;
}

/* Expandable location list */
.location-panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 60vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
}

.location-panel.active {
    bottom: 0;
}

.location-panel-header {
    padding: 20px 30px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.location-panel-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
}

.panel-close {
    background: rgba(148, 163, 184, 0.2);
    border: none;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.panel-close:hover {
    background: rgba(148, 163, 184, 0.3);
    color: #334155;
}

.panel-drag-handle {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(148, 163, 184, 0.4);
    border-radius: 2px;
}

/* Location list inside panel */
#location-list {
    flex: 1;
    padding: 20px 30px 30px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.3) transparent;
}

#location-list::-webkit-scrollbar {
    width: 6px;
}

#location-list::-webkit-scrollbar-track {
    background: transparent;
}

#location-list::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.3);
    border-radius: 3px;
}

.location-item {
    padding: 20px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(37, 213, 9, 0.5);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.location-item:hover::before {
    transform: scaleY(1);
}

.location-item.selected {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.location-item.selected::before {
    transform: scaleY(1);
}

.location-item h4 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 17px;
    font-weight: 700;
}

.location-item p {
    margin: 0 0 6px 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.coordinates {
    color: #94a3b8;
    font-size: 12px;
    /* font-family: 'Monaco', 'Menlo', monospace; */
    background: rgba(148, 163, 184, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 4px;
}

/* Backdrop for panel */
.panel-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.panel-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Tennis Ball Marker */
.tennis-marker {
    background: transparent;
    border: none;
}

.tennis-ball {
    font-size: 22px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(5deg); }
}

/* Enhanced Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.popup-content h3 {
    margin: 0 0 8px 0;
    color: black;
    font-size: 17px;
    font-weight: 700;
}

.popup-content p {
    margin: 0 0 6px 0;
    font-weight: 600;
    color: #334155;
}

.popup-content small {
    color: #64748b;
    /* font-family: 'Monaco', 'Menlo', monospace; */
    background: rgba(148, 163, 184, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Mobile responsiveness */


@media (max-width: 1400px) {
    .search-overlay{
        width: 300px;
        left: 50%;
    }
    .state-filter-container{
        left: 20%;
    }

    .state-filter{
        padding-right: 10px;
    }
}

@media (max-width: 1200px) {
    .search-overlay{
        width: 250px;
        left: 50%;
    }
    .state-filter-container{
        left: 20%;
    }
    .state-filter {
        padding: 12px 16px;
        padding-right: 36px;
        min-width: 140px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {

    .search-overlay{
        width: 180px;
        left: 50%;
    }
    .state-filter-container{
        left: 20%;
    }
    .state-filter {
        padding: 10px 14px;
        padding-right: 36px;
        min-width: 120px;
        font-size: 11px;
    }

    #search-input{

        font-size:11px ;
    }

    .location-counter {
       
        min-width: 140px;
        padding: 14px 18px;
        right: 123px;
    }
    
    .location-counter .count {
        font-size: 20px;
    }

}

@media (max-width: 768px) {
    .map-header {
        margin: 30px 0 20px 0;
        padding: 0 15px;
    }
    
    .map-header h1 {
        font-size: 1.8rem;
    }
    
    .map-header h1::after {
        width: 60px;
        height: 2px;
        bottom: -6px;
    }
    
    .container {
        height: calc(100vh - 180px);
        margin-top: 2rem;
        margin-bottom: 40px;
    }
    
    .search-overlay{
        width: 180px;
        left: 50%;
    }
    .state-filter-container{
        left: 10%;
    }
    .state-filter {
        padding: 8px 12px;
        padding-right: 36px;
        min-width: 100px;
        font-size: 10px;
    }

    #search-input{

        font-size:10px ;
    }

    .location-counter {
       
        min-width: 140px;
        padding: 12px 16px;
        right: 90px;
    }
    
    .location-counter .count {
        font-size: 20px;
    }
    .location-counter .count {
        font-size: 20px;
    }
    
    .location-panel {
        height: 70vh;
    }
    
    .location-panel-header {
        padding: 15px 20px 10px;
    }
    
    .location-panel-header h2 {
        font-size: 1.2rem;
    }
    
    #location-list {
        padding: 15px 20px 20px;
    }
    
    .location-item {
        padding: 16px;
        margin-bottom: 10px;
    }
    
    .location-item h4 {
        font-size: 16px;
    }
    
    .location-item p {
        font-size: 14px;
    }
    
    #map {
        margin: 0 10px 10px 10px;
        width: calc(100% - 20px);
        height: calc(100% - 10px);
        border-radius: 20px;
    }
}

/* Touch gestures for mobile */
@media (max-width: 768px) and (pointer: coarse) {
    .location-panel {
        touch-action: pan-y;
    }
    
    .panel-drag-handle {
        height: 5px;
        width: 50px;
        top: 10px;
    }
}

@media (max-width: 600px) {
      
    .state-filter-container{

}
    .state-filter {
        padding: 6px 8px;
        padding-right: 26px;
        min-width: 80px;
        font-size: 8px;
    }
    #search-input{
        font-size:10px ;
        padding: 10px 14px;
        width: 120px;
        
    }

    .search-overlay{
        left: 55%;
    }
    .location-counter {
        right: 50px;
    }
    .location-counter .count {
        font-size: 16px;
    }
    .location-counter .count {
        font-size: 16px;
    }
    .location-panel {
        height: 50vh;
    }
    .location-panel-header h2 {
        font-size: 1rem;
    }
    .location-panel-header {
        padding: 10px 15px 8px;
    }
    .location-item {
        padding: 12px;
    }
    .location-item h4 {
        font-size: 14px;
    }
    .location-item p {
        font-size: 12px;
    }
    .location-item.selected {
        transform: translateY(-1px);
    }
    .location-item.selected::before {
        transform: scaleY(0.9);
    }
}


/* Partner Recruitment Section with Benefits Cards */
.partner-section-cards {
    max-width: 1200px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.cards-header {
    margin-bottom: 40px;
}

.cards-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cards-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Modern Glass-morphism Cards */
.benefit-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-5px) rotate(0.5deg); 
    }
    66% { 
        transform: translateY(2px) rotate(-0.3deg); 
    }
}

.benefit-card:nth-child(1) {
    animation-delay: 0s;
}

.benefit-card:nth-child(2) {
    animation-delay: -2s;
}

.benefit-card:nth-child(3) {
    animation-delay: -4s;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #3498db, #5dade2, #85c1e9, #a8d5f0);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 28px 28px 0 0;
}

.benefit-card:hover::before {
    opacity: 1;
    height: 8px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

/* Card header with centered icon and title */
.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.benefit-card[data-impact="environmental"] .benefit-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.benefit-card[data-impact="environmental"] .benefit-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
}

.benefit-card[data-impact="community"] .benefit-icon {
    background: linear-gradient(135deg, #5dade2, #3498db);
}

.benefit-card[data-impact="community"] .benefit-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #5dade2, #3498db);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
}

.benefit-card[data-impact="recognition"] .benefit-icon {
    background: linear-gradient(135deg, #85c1e9, #5dade2);
}

.benefit-card[data-impact="recognition"] .benefit-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #85c1e9, #5dade2);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.6;
    filter: blur(12px);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Card content */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.cta-button-cards {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-button-cards:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button-cards i {
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-button-cards:hover i {
    transform: translateX(4px);
}

/* Mobile responsiveness for partner section */
@media (max-width: 768px) {
    .partner-section-cards {
        margin: 40px auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
        min-height: 380px;
    }
    
    .cards-header h2 {
        font-size: 1.6rem;
    }
    
    .cards-header p {
        font-size: 1rem;
    }
    
    .cta-button-cards {
        padding: 16px 32px;
        font-size: 15px;
    }
}



.label-container {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #ddd;
}

.label-container img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-download, .btn-print {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: center;
}

.btn-download {
  background: #3498db;
  color: white;
}

.btn-download:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-print {
  background: #27ae60;
  color: white;
}

.btn-print:hover {
  background: #229954;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 6px;
  color: white;
  font-weight: 500;
  z-index: 1001;
  animation: notificationSlideIn 0.3s ease-out;
  max-width: 300px;
}

@keyframes notificationSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.notification-success {
  background: #27ae60;
}

.notification-error {
  background: #e74c3c;
}

.notification-info {
  background: #3498db;
}

/* Responsive design for modal */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 95%;
    margin: 10px;
  }
  
  .modal-header {
    padding: 15px 20px 10px 20px;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  .modal-body {
    padding: 15px 20px 20px 20px;
  }
  
  .button-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-download, .btn-print {
    width: 100%;
    min-width: auto;
  }
  
  .label-container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    max-width: 98%;
    margin: 5px;
  }
  
  .modal-header {
    padding: 12px 15px 8px 15px;
  }
  
  .modal-body {
    padding: 12px 15px 15px 15px;
  }
  
  .label-info {
    padding: 12px;
  }
  
  .label-container {
    padding: 10px;
  }
}