html{
    background-color: #144835;
    height: 100%;
    width: auto;
    overflow-x: hidden;
    padding: 0;
    font-family: serif;
  }
  h1,h2,h3,h4,h5,p,a{
    font-family: serif;
  }
body{
    padding: 0;
    margin: 0;
}
/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
}

#hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 72, 53, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
    text-align: left;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 40px;
    color: #f0f0f0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Jost', sans-serif;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background-color: #a2c144;
    color: #ffffff;
    border: 2px solid #a2c144;
}

.hero-btn.primary:hover {
    background-color: #144835;
    border-color: #144835;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(162, 193, 68, 0.4);
}

.hero-btn.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btn.secondary:hover {
    background-color: #ffffff;
    color: #144835;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background-color: #a2c144;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #a2c144;
    border-bottom: 2px solid #a2c144;
    transform: rotate(45deg);
}

.scroll-indicator span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from {
    opacity: 0;
        transform: translateY(30px);
  }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
    opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
/* Hero Section Responsive */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
  }
  
  .hero-content {
    padding: 0 20px;
    justify-content: center;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 20px;
    text-align: center;
  }
  
  .hero-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
  }
  
  .hero-buttons {
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-btn {
    padding: 14px 28px;
    font-size: 13px;
    min-width: 140px;
  }
  
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 550px;
  }
  
  .hero-content {
    padding: 0 15px;
    justify-content: center;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  
  .hero-btn {
    width: 200px;
    max-width: 90%;
    padding: 12px 24px;
    font-size: 12px;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .scroll-indicator span {
    font-size: 10px;
  }
}
/* Multi-Panel Banner */
.multi-panel-banner {
    display: flex;
    height: 500px;
    overflow: hidden;
    gap: 0;
  }

.panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 1.2s ease;
}

.panel:last-child {
}

.panel:hover {
    flex: 1.4;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.multi-panel-banner:hover .panel:not(:hover) {
    flex: 0.8;
}

.panel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 1.2s ease;
}

.panel:hover .panel-image img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    z-index: 3;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 1.2s ease;
}

.panel:hover .panel-content {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 80%);
}

.panel-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    font-family: 'Jost', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 1.2s ease;
}

.panel:hover .panel-title {
    transform: scale(1.05);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
}

.panel-description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 15px 0 20px 0;
    font-family: 'Jost', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s ease;
}

.panel-btn {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s ease;
}

.panel-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #144835;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.8);
}

.panel-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s ease;
}

.panel-btn.primary,
.panel-btn.secondary {
    background: #144835;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    transition: all 1.2s ease;
    border: none;
    min-width: 180px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.panel-btn.primary:hover,
.panel-btn.secondary:hover {
    background: #a2c144;
    color: #144835;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(162, 193, 68, 0.5);
    border: 1px solid #a2c144;
}

.panel:hover .panel-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Panel-specific overlays */
.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 1.2s ease;
}

/* Panel 1 - Franchise (Dark Green) */
.panel-1::before {
    background: linear-gradient(135deg, rgba(20, 72, 53, 0.7), rgba(20, 72, 53, 0.9));
}

/* Panel 2 - Mission (Lime Green) */
.panel-2::before {
    background: linear-gradient(135deg, rgba(162, 193, 68, 0.7), rgba(162, 193, 68, 0.9));
}

/* Panel 3 - Brand (Dark Green) */
.panel-3::before {
    background: linear-gradient(135deg, rgba(178, 162, 81, 0.7), rgba(211, 138, 74, 0.8));
}

/* Panel 4 - Contact Us (Lime Green) */
.panel-4::before {
    background: linear-gradient(135deg, rgba(182, 193, 149, 0.7), rgb(250, 241, 226, 0.8));
    opacity: 0;
}

.panel-4:hover::before {
    opacity: 1;
}

.panel-4 .panel-description {
    opacity: 0;
    transform: translateY(20px);
}

.panel-4 .panel-btn {
    opacity: 0;
    transform: translateY(20px);
}

.panel-4 .panel-buttons {
    opacity: 0;
    transform: translateY(20px);
}

.panel-4:hover .panel-description {
    opacity: 0.9;
    transform: translateY(0);
}

.panel-4:hover .panel-btn {
    opacity: 1;
    transform: translateY(0);
}

.panel-4:hover .panel-buttons {
    opacity: 1;
    transform: translateY(0);
}

.panel .panel-content {
    z-index: 4;
}

.panel:hover::before {
    opacity: 1;
}

.panel:hover .panel-description {
    opacity: 0.9;
    transform: translateY(0);
}

.panel:hover .panel-btn {
    opacity: 1;
    transform: translateY(0);
}

.panel:hover .panel-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .multi-panel-banner {
        height: 400px;
    }
    
    .panel-title {
        font-size: 1.5rem;
    }
    
    .panel-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .multi-panel-banner {
        height: auto;
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    
    .panel {
        flex: none;
        height: 250px;
        border-radius: 0;
        overflow: hidden;
        box-shadow: none;
    }
    
    .panel:hover {
        flex: none;
        transform: none;
        box-shadow: none;
    }
    
    .multi-panel-banner:hover .panel:not(:hover) {
        flex: none;
    }
    
    .panel-content {
        padding: 20px;
        background: rgba(0, 0, 0, 0.2);
        -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
        opacity: 1;
        transform: translateY(0);
    }
    
    .panel-description {
        opacity: 1;
        transform: translateY(0);
    }
    
    .panel-btn {
        opacity: 1;
        transform: translateY(0);
    }
    
    .panel::before {
        opacity: 0.1;
    }
    
    .panel-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .panel-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .panel-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .panel-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .panel-btn.primary,
    .panel-btn.secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
    }
    
    /* Contact Us panel - show on tap/hover on mobile */
    .panel-4:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    }
    
    .panel-4:hover .panel-content {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 80%) !important;
        -webkit-backdrop-filter: blur(2px) !important;
    backdrop-filter: blur(2px) !important;
    }
    
    .panel-4:hover .panel-description {
        opacity: 0.9 !important;
        transform: translateY(0) !important;
    }
    
    .panel-4:hover .panel-btn,
    .panel-4:hover .panel-buttons {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .panel-4:hover::before {
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .multi-panel-banner {
        height: auto;
        padding: 0;
        gap: 0;
    }
    
    .panel {
        height: 220px;
        margin-bottom: 0;
    }
    
    .panel:hover {
        transform: none;
        box-shadow: none;
    }
    
    .panel-content {
        padding: 15px;
        background: rgba(0, 0, 0, 0.15);
        -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
        opacity: 1;
        transform: translateY(0);
    }
    
    .panel-description {
        opacity: 1;
        transform: translateY(0);
    }
    
    .panel-btn {
        opacity: 1;
        transform: translateY(0);
    }
    
    .panel::before {
        opacity: 0.05;
    }
    
    .panel-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .panel-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .panel-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .panel-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .panel-btn.primary,
    .panel-btn.secondary {
        padding: 10px 20px;
        font-size: 0.8rem;
        flex: none;
    }
    
    /* Contact Us panel - show on tap/hover on mobile */
    .panel-4:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    }
    
    .panel-4:hover .panel-content {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 80%) !important;
        -webkit-backdrop-filter: blur(1px) !important;
    backdrop-filter: blur(1px) !important;
    }
    
    .panel-4:hover .panel-description {
        opacity: 0.9 !important;
        transform: translateY(0) !important;
    }
    
    .panel-4:hover .panel-btn,
    .panel-4:hover .panel-buttons {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .panel-4:hover::before {
        opacity: 1 !important;
    }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #144835 0%, #1a5a3f 100%);
  padding: 80px 0;
    position: relative;
  overflow: hidden;
}

.stats-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.stats-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 60px;
  font-family: 'Jost', sans-serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.stat-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.stat-icon i {
  font-size: 2.5rem;
  color: white;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  font-family: 'Jost', sans-serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
    letter-spacing: 2px;
  font-family: 'Jost', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-section {
    padding: 50px 0;
  }
  
  .stats-container {
    padding: 0 20px;
  }
  
  .stats-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 35px;
    line-height: 1.3;
    padding: 0 10px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 100%;
  }
  
  .stat-item {
    padding: 20px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .stat-icon img {
    width: 30px;
    height: 30px;
  }
  
  .stat-icon i {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 0;
  }
  
  .stats-container {
    padding: 0 15px;
  }
  
  .stats-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    margin-bottom: 30px;
    line-height: 1.2;
    padding: 0 5px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }
  
  .stat-item {
    padding: 18px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }
  
  .stat-icon img {
    width: 25px;
    height: 25px;
  }
  
  .stat-icon i {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 6px;
  }
  
  .stat-label {
    font-size: clamp(0.8rem, 4vw, 1rem);
    line-height: 1.2;
  }
}

.bg-3-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 3vw 0;
  background-color: #144835;
}

.text-center {
  text-align: center;
}

.icon {
  display: block;
  margin: 0 auto 8px;
  height: 4vw;
  width: 4vw;
}

.number {
  padding-top: 0.5vw;
  font-size: 1.7vw;
  font-family: serif;
  font-weight: bold;
  color: #fff;
}

.description {
  color: #a9a9a9;
  font-size: 1.2vw;
}

.bg-container-3 h2 {
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding-top: 2.5vw;
  font-size: 3vw;
}

/* Mobile-friendly adjustments for screens max-width: 640px */
@media (max-width: 640px) {
  .bg-container-3 {
    height: auto;
    padding-bottom: 0;
  }

  .bg-3-container {
    flex-direction: column;
    padding: 8vw 0;
  }

  .text-center {
    text-align: center;
    padding: 5vw 0;
  }

  .icon {
    height: 20vw;
    width: 20vw;
  }

  .number {
    font-size: 5vw; /* Adjust font size to be responsive */
  }

  .description {
    font-size: 4vw; /* Adjust font size for description */
  }

  .bg-container-3 h2 {
    font-size: 7vw;
    padding-top: 8vw;
    margin: 0 5px;
  }

  /* Additional adjustments to numbers */
  #schools, #states, #students, #teachers {
    font-size: 5vw; /* Larger font size for better mobile readability */
    text-align: center;
  }
}

/* Even smaller screens, max-width: 400px */
@media (max-width: 400px) {
  .icon {
    height: 25vw;
    width: 25vw;
  }

  .number {
    font-size: 6vw; /* Larger font size for very small screens */
  }

  .description {
    font-size: 5vw;
  }

  .bg-container-3 h2 {
    font-size: 9vw; /* Adjust for very small screens */
    padding-top: 10vw;
  }
}



/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

/* Leaflet CSS Compatibility Fix */
.leaflet-overlay-pane svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;    
    padding: 0 40px;
}

.map-title {
  text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #144835;
    margin-bottom: 50px;
    font-family: 'Jost', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.map-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-top: -30px;
    margin-bottom: 40px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-wrapper {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 600px;
}

.map-display {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
}

.zoom-instructions {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 72, 53, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.map-controls {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 30px;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.controls-header {
    margin-bottom: 30px;
}

.filter-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-select {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    background: white;
    color: #144835;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #144835;
    box-shadow: 0 0 0 3px rgba(20, 72, 53, 0.1);
}

.filter-select:hover {
    border-color: #144835;
}

.location-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(20, 72, 53, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-control:hover {
    background: rgba(20, 72, 53, 0.1);
}

.location-icon {
    color: #144835;
    font-size: 18px;
}

.location-btn {
    color: #144835;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
}

.location-btn:hover {
    color: #0f3a2a;
}

.locations-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.locations-list::-webkit-scrollbar {
    width: 8px;
}

.locations-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.locations-list::-webkit-scrollbar-thumb {
    background: #144835;
    border-radius: 4px;
}

.locations-list::-webkit-scrollbar-thumb:hover {
    background: #0f3a2a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-wrapper,
    .map-controls {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }
    
    .map-container {
        padding: 0 15px;
    }
    
    .map-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 25px;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .map-wrapper {
        height: 350px;
        border-radius: 15px;
        order: 2;
    }
    
    .map-controls {
        height: 450px;
        padding: 20px;
        border-radius: 15px;
        order: 1;
    }
    
    .controls-header {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .filter-controls {
      flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .filter-select {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .location-control {
        flex-direction: row;
        gap: 8px;
        padding: 8px 12px;
        margin-bottom: 15px;
    }
    
    .location-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .zoom-instructions {
        font-size: 11px;
        padding: 6px 12px;
        bottom: 10px;
        right: 10px;
    }
    
    .locations-list {
        max-height: 350px;
        padding: 0 5px;
    }
    
    .location-card {
        padding: 8px;
        margin-bottom: 6px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .location-image {
        height: 60px;
        border-radius: 6px;
    }
    
    .location-title {
        font-size: 10px;
        margin-bottom: 3px;
        line-height: 1.1;
    }
    
    .location-address {
        font-size: 8px;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .location-actions {
        gap: 3px;
        flex-wrap: wrap;
    }
    
    .location-website-btn,
    .location-directions {
        padding: 3px 6px;
        font-size: 8px;
        border-radius: 4px;
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 0;
    }
    
    .map-container {
        padding: 0 10px;
    }
    
    .map-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 20px;
    }
    
    .map-wrapper {
        height: 300px;
        border-radius: 12px;
    }
    
    .map-controls {
        height: 400px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .controls-header {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .filter-controls {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .location-control {
        flex-direction: row;
        gap: 6px;
        padding: 6px 10px;
        margin-bottom: 12px;
    }
    
    .location-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .zoom-instructions {
        font-size: 10px;
        padding: 5px 10px;
        bottom: 8px;
        right: 8px;
    }
    
    .locations-list {
        max-height: 300px;
        padding: 0 3px;
    }
    
    .location-card {
        padding: 6px;
        margin-bottom: 4px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    
    .location-image {
        height: 45px;
        border-radius: 4px;
    }
    
    .location-title {
        font-size: 9px;
        margin-bottom: 2px;
        line-height: 1.1;
    }
    
    .location-address {
        font-size: 7px;
        margin-bottom: 3px;
        line-height: 1.2;
    }
    
    .location-actions {
        gap: 2px;
        flex-wrap: wrap;
    }
    
    .location-website-btn,
    .location-directions {
        padding: 2px 4px;
        font-size: 7px;
        border-radius: 3px;
        min-width: auto;
        flex: 1;
    }
}

/* Location Cards */
.location-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
      position: relative;
    }

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image {
    transform: scale(1.05);
}

.location-content {
    padding: 25px;
    position: relative;
}

.location-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #144835;
    margin-bottom: 12px;
    font-family: 'Jost', sans-serif;
    line-height: 1.3;
}

.location-address {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
}

.location-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.location-website-btn {
    background: linear-gradient(135deg, #144835 0%, #1a5a3f 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
      text-align: center;
}

.location-website-btn:hover {
    background: linear-gradient(135deg, #0f3a2a 0%, #144835 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 72, 53, 0.3);
    color: white;
    text-decoration: none;
}

.location-directions {
    background: rgba(20, 72, 53, 0.1);
    color: #144835;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.location-directions:hover {
    background: #144835;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

.location-directions i {
    font-size: 20px;
}

/* Responsive Location Cards */
@media (max-width: 768px) {
    .location-card {
        margin-bottom: 15px;
    }
    
    .location-image {
        height: 180px;
    }
    
    .location-content {
        padding: 20px;
    }
    
    .location-title {
        font-size: 1.2rem;
    }
    
    .location-address {
        font-size: 0.9rem;
    }
    
    .location-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .location-website-btn {
    width: 100%;
        padding: 14px 24px;
    }
    
    .location-directions {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .location-image {
        height: 160px;
    }
    
    .location-content {
        padding: 15px;
    }
    
    .location-title {
        font-size: 1.1rem;
    }
    
    .location-address {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}
/* Upcoming Schools Section */
.upcoming-schools {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.upcoming-schools::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(20, 72, 53, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.upcoming-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.heading-upcoming {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #144835;
    margin-bottom: 50px;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.heading-upcoming::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #144835, #a2c144);
    border-radius: 2px;
}

.scrolling-upcoming {
    display: flex;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
    gap: 30px;
    padding: 20px 0;
}

.scrolling-upcoming:hover {
    animation-play-state: paused;
}

.scrolling-upcoming div {
    background: white;
    color: #144835;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    text-align: center;
    flex-shrink: 0;
}

.scrolling-upcoming div::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 72, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.scrolling-upcoming div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #144835;
}

.scrolling-upcoming div:hover::before {
    left: 100%;
}

.scrolling-upcoming div:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.scrolling-upcoming div:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(-50%); 
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .upcoming-schools {
        padding: 60px 0;
    }
    
    .upcoming-container {
        padding: 0 30px;
    }
    
    .heading-upcoming {
        margin-bottom: 40px;
    }
    
    .scrolling-upcoming {
        gap: 25px;
    }
    
    .scrolling-upcoming div {
        padding: 18px 25px;
        font-size: 1rem;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .upcoming-schools {
        padding: 40px 0;
    }
    
    .upcoming-container {
        padding: 0 15px;
    }
    
    .heading-upcoming {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .heading-upcoming::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
    
    .scrolling-upcoming {
        gap: 15px;
        animation-duration: 25s;
        padding: 20px 0;
    }
    
    .scrolling-upcoming div {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-width: 200px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .scrolling-upcoming div::before {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .upcoming-schools {
        padding: 30px 0;
    }
    
    .upcoming-container {
        padding: 0 10px;
    }
    
    .heading-upcoming {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }
    
    .heading-upcoming::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
    
    .scrolling-upcoming {
        gap: 12px;
        animation-duration: 30s;
        padding: 15px 0;
    }
    
    .scrolling-upcoming div {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 180px;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    }
    
    .scrolling-upcoming div::before {
        border-radius: 10px;
    }
  }

/* Default: desktops/laptops */
.bg-container-5 {
  background-color: #ffffff;
  height: auto;
  padding-top: 2vw;
  padding-bottom: 1.5vw;
}

.bg-h2 {
  font-size: 3vw;
  text-align: center;
  padding: 1vw 0;
  font-weight: 800;
  color: #144835;
}

.bg-container-5 hr {
  position: relative;
  top: -1vw;
  height: 3px;
  background-color: #513621;
  width: 20vw;
  margin: 0 auto;
}

/* Mobile (phones ≤ 640px) */
@media (max-width: 640px) {
  .bg-container-5 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .bg-h2 {
    font-size: 7vw;
    padding-top: 8vw;
    margin: 0 5px;
  }
  .bg-container-5 hr {
    width: 80vw;
    margin: 0 10vw;
  }
}

/* Tablets (641px – 1024px, iPads & small laptops) */
@media (min-width: 641px) and (max-width: 1024px) {
  .bg-h2 {
    font-size: 5vw;
    padding: 2vw 0;
  }
  .bg-container-5 hr {
    width: 40vw;
    margin: 0 auto;
  }
  #map {
    height: 450px !important;
  }
  #locationsContainer {
    height: 350px !important;
  }
}

/* Medium Desktops (1025px – 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .bg-h2 {
    font-size: 3vw;
  }
  .bg-container-5 hr {
    width: 25vw;
  }
  #map {
    height: 550px !important;
  }
  #locationsContainer {
    height: 450px !important;
  }
}

/* Large Desktops / Ultrawide (1441px and above) */
@media (min-width: 1441px) {
  .bg-h2 {
    font-size: 2vw;
  }
  .bg-container-5 hr {
    width: 18vw;
  }
  #map {
    height: 700px !important;
  }
  #locationsContainer {
    height: 600px !important;
  }
}


  /*bg-container-6*/
  .bg-container-6{
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-half {
    background-color: white; 
    padding: 2vw 0;
    padding-bottom: 10vw;
}
.bottom-half {
    background-color: #144835; /* Green color */
    padding: 1vw 0;
}
  .eventstitle {
    text-align: center;
    padding: 0vw 0;
}
.eventstitle h2 {
    color: #004d40;
    text-transform: uppercase;
    margin-bottom: 0.5vw;
    font-size: 1.2vw;
    letter-spacing: 0.21vw;
}
.eventstitle h1 {
    color: #004d40;
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 1vw;
}
.eventstitle a {
    color: #004d40;
    text-transform: uppercase;
    font-size: 1vw;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.eventstitle a i {
    margin-left: 2.5vw;
}
.carouselofevent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3vw;
    top: -8vw;
}
.carouselofevent button {
    position: absolute;
    background-color: #004d40;
    color: white;
    border: none;
    border-radius: 50%;
    width: 3.5vw;
    height: 3.5vw;
    font-size: 1.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    top: 8%;
    transform: translateY(-50%);
}
.carouselofevent button:hover{
  background-color: #b6bf00;
}
.carouselofevent button.left {
    left: 1vw;
}
.carouselofevent button.left i{
  color: white;
  left: 0vw;
}
.carouselofevent button.right {
    right: 0vw;
}
.carouselofevent button.right i{
  left: 0vw;
  color: white;
}
.carouselofevent .itemsofevents {
    height: 25vw;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 1vw;
    gap: 4vw;
    margin-top: 2vw;
    scroll-behavior: smooth;
    margin-left: 5vw;
    margin-right: 5vw;
    transition: 0.5s;
}
.carouselofevent .itemsofevents::-webkit-scrollbar {
    display: none;
}
.carouselofevent .itemsofevents {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.carouselofevent .item {
    flex: none;
    width: auto;
    position: relative;
    top: -5vw;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}
.carouselofevent .item img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30vw;
    height: 15vw;
}
.carouselofevent .item .content {
    padding: 0vw;
    background-color: white;
    position: relative;
    width: 28vw;
    z-index: 2;
    top: 2vw;
    text-align: left;
    padding: 1vw;
    left: 3%;
    right: 3%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.carouselofevent .item .content h3 {
    color: #004d40;
    padding: 0;
    font-weight: 600;
    position: relative;
    text-align: left;
    top: 0;
    font-size: 1vw;
    margin-bottom: 0.5vw;
}
.carouselofevent .item .content p {
    color: #004d40;
    position: relative;
    top: 0;
    font-size: 0.875vw;
}
@media (max-width: 640px) {
  .bg-container-6{
    height: auto;
    padding-bottom: 0;
  }
  .half {
    flex-direction: column;
  }
  .top-half {
    padding: 0;
    padding-bottom: 30vw;
  }
  .bottom-half {
    padding: 0;
    padding-bottom: 0;
  }
  .eventstitle h2 {
    font-size: 4vw;
    margin-bottom: -1vw;
    padding-top: 10vw;
  }
  .eventstitle h1 {
    font-size: 7vw;
    margin-bottom: 2vw;
  }
  .eventstitle a {
    font-size: 3vw;
  }
  .eventstitle a i {
    margin-left: 5vw;
  }
  .carouselofevent button {
    width: 8vw;
    height: 8vw;
    font-size: 3vw;
  }
  .carouselofevent .itemsofevents {
    height: auto;
    padding: 0 5vw;
    padding-left: 7vw;
    gap: 9vw;
    margin-top: -15vw;
    margin-left: 0;
    margin-right: 0;
  }
  .carouselofevent .item {
    width: 80vw;
    height: auto;
    top: 0;
    margin-bottom: 5vw;
  }
  .carouselofevent .item img {
    width: 120vw;
    height: auto;
    padding: 0;
  }
  .carouselofevent .item .content {
    width: 80vw;
    padding: 2vw;
    left: 0;
    right: 0;
    top: 0;
  }
  .carouselofevent .item .content h3 {
    font-size: 5vw;
    margin-bottom: 0.5vw;
  }
  .carouselofevent .item .content p {
    font-size: 3vw;
  }
  .carouselofevent button.left {
    left: -8px;    z-index: 5;
}
.carouselofevent button.right {
    right: -8px;    z-index: 5;
}
  .carouselofevent button.left i{
    left: 0vw;
    color: white;
  }
  .carouselofevent button.right i{
    left: 0vw;
    color: white;
  }
  .carouselofevent .itemsofevents {
    margin-left: 0;
    margin-right: 0;
  }

}
 .social-media-posts{
  margin-top: 0;
  padding: 80px 0;
  background: linear-gradient(135deg, #144835 0%, #1a5a3f 100%);
 }
 .social-media-posts h2 {
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 40px;
      text-align: left;
    color: #ffffff;
      padding: 0;
      margin-left: 10vw;
    font-family: 'Jost', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
    }

    .carousel-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-left: 10vw;
    }

    #carousel-post {
      display: flex;
      gap: 28px;
      overflow-x: hidden;
      scroll-behavior: smooth;
      outline: none;
      padding: 30px 8px;
      box-sizing: border-box;
    }
.ig-card {
  min-width: 320px;
  max-width: 420px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: white;
}

.ig-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

 .ig-card .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ig-card .img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ig-card:hover .img-wrapper img {
  transform: scale(1.05);
}

.overlay-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px;
  border-radius: 4px;
  font-size: 16px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.ig-card:hover .overlay-icon {
  opacity: 1;
}



    #carousel-post:focus {
      outline: 2px solid white;
      outline-offset: 4px;
    }

    #carousel-post > blockquote {
      flex-shrink: 0;
      width: 300px;
      min-width: 8000px;
      max-width: 8000px;
      margin: 0 auto;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    #carousel-post::-webkit-scrollbar {
      display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    #carousel-post {
      -ms-overflow-style: none; /* IE and Edge */
      scrollbar-width: none; /* Firefox */
    }

    #carousel-post-dots {
  justify-content: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.carousel-dot.active {
  opacity: 1;
}


    /* Responsive */
    @media (max-width: 768px) {
      .social-media-posts {
        padding: 50px 0;
      }
      
      .social-media-posts h2 {
        margin-left: 5vw;
        margin-bottom: 30px;
      }
      
      .social-media-posts h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
        text-align: center;
        padding-left: 0;
        padding: 0 20px;
      }
      
      .carousel-wrapper {
        padding: 0 20px;
        margin-left: 0;
      }
      
      #carousel-post {
        gap: 20px;
        padding: 0;
        scroll-snap-type: x mandatory;
      }
      
      .ig-card {
        min-width: 280px;
        max-width: 320px;
        border-radius: 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      }
      
      .ig-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 12px 35px rgba(0,0,0,0.4);
      }
      
      .ig-card .img-wrapper img {
        border-radius: 0;
      }
    }
    
    @media (max-width: 640px) {
      .social-media-posts {
        padding: 40px 0;
      }
      
      .social-media-posts h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 25px;
        padding: 0 15px;
        margin-left: 5vw;
      }
      
      .carousel-wrapper {
        padding: 0 15px;
      }
      
      #carousel-post {
        gap: 15px;
      }
      
      .ig-card {
        min-width: 250px;
        max-width: 280px;
        border-radius: 0;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
      }
      
      .ig-card:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
      }
      
      .ig-card .img-wrapper img {
        border-radius: 0;
      }
    }
    
    @media (max-width: 480px) {
      .social-media-posts {
        padding: 35px 0;
      }
      
      .social-media-posts h2 {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
        margin-bottom: 20px;
        padding: 0 10px;
        margin-left: 5vw;
      }
      
      .carousel-wrapper {
        padding: 0 10px;
      }
      
      #carousel-post {
        gap: 12px;
      }
      
      .ig-card {
        min-width: 220px;
        max-width: 250px;
        border-radius: 0;
        box-shadow: 0 5px 18px rgba(0,0,0,0.22);
      }
      
      .ig-card:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      }
      
      .ig-card .img-wrapper img {
        border-radius: 0;
      }
    }

/* Leadership Team Section */
.bg-container-7 {
    background: linear-gradient(135deg, #faf1e2 0%, #f5e6d3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bg-container-7::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"><defs><pattern id="team-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(20, 72, 53, 0.1)"/><circle cx="0" cy="0" r="1" fill="rgba(20, 72, 53, 0.05)"/><circle cx="40" cy="40" r="1" fill="rgba(20, 72, 53, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23team-pattern)"/></svg>');
    opacity: 0.3;
}

    .header-7 {
      display: flex;
      justify-content: space-between;
      align-items: center;
    margin-bottom: 50px;
    padding: 0 80px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

  .header-7 h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #144835;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.header-7 h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #144835, #a2c144);
    border-radius: 2px;
}

  .header-7 .team-btn {
    background: linear-gradient(135deg, #a2c144 0%, #8fb03a 100%);
    color: #144835;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
      cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(162, 193, 68, 0.3);
    text-decoration: none;
    display: inline-block;
}

  .header-7 .team-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #144835;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

  .description-7 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: #666;
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding: 0 80px;
    text-align: left;
    font-family: 'Jost', sans-serif;
    position: relative;
    z-index: 2;
  }

/* Carousel container with navigation buttons */
.carousel-text-wrapper {
  display: flex;
  align-items: center;
  position: relative;
    margin: 0 auto;
    max-width: 1550px;
    padding: 0 80px;
    gap: 20px;
}

/* Scrollable area */
.carousel-text {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Flex content inside the scroll area */
.scroll-content {
  display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Card styles */
    .text-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 350px;
      max-width: 400px;
      flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #144835, #a2c144);
    }


.text-card .name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #144835;
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    line-height: 1.3;
}

.text-card .title {
    font-size: 0.9rem;
  font-weight: 600;
    color: #a2c144;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Jost', sans-serif;
}

.text-card .about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Jost', sans-serif;
    white-space: normal;
  word-break: break-word;
}

/* Navigation buttons */
.bg-container-7 .nav-btn {
    background: linear-gradient(135deg, #144835 0%, #1a5a3f 100%);
  border: none;
  color: white;
    font-size: 18px;
    padding: 15px;
  border-radius: 50%;
  cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(20, 72, 53, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #0f3a2a 0%, #144835 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(20, 72, 53, 0.4);
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bg-container-7 {
        padding: 60px 0;
    }
    
    .header-7 {
        padding: 0 50px;
        margin-bottom: 40px;
    }
    
    .description-7 {
        padding: 0 50px;
        margin-bottom: 50px;
    }
    
    .carousel-text-wrapper {
        padding: 0 50px;
        gap: 15px;
    }
    
    .text-card {
        min-width: 320px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .bg-container-7 {
        padding: 40px 0;
    }
    
    .header-7 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
        margin-bottom: 25px;
    }
    
    .header-7 h1 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        text-align: center;
        letter-spacing: 1px;
    }
    
    .header-7 h1::after {
        left: 0;
        transform: none;
        width: 50px;
        height: 3px;
        bottom: -8px;
    }
    
    .header-7 .team-btn {
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .description-7 {
        padding: 0 20px;
        margin-bottom: 30px;
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .carousel-text-wrapper {
        padding: 0 20px;
        gap: 0;
        overflow: hidden;
    }
    
    .text-card {
        min-width: 100%;
        width: 100%;
        padding: 18px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .text-card .name {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .text-card .title {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .text-card .about {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .nav-btn {
        display: none;
    }
    
    .carousel-text-wrapper {
        width: 100%;
        max-width: none;
    }
    
    /* Disable hover effects on mobile */
    .hero-btn:hover,
    .panel:hover,
    .panel-btn:hover,
    .stat-item:hover,
    .filter-select:hover,
    .location-control:hover {
        transform: none !important;
        box-shadow: none !important;
        background: initial !important;
        color: initial !important;
    }
}

@media (max-width: 480px) {
    .bg-container-7 {
        padding: 30px 0;
    }
    
    .header-7 {
        padding: 0 15px;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .header-7 h1 {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        letter-spacing: 0.5px;
    }
    
    .header-7 h1::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }
    
    .header-7 .team-btn {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 6px;
    }
    
    .description-7 {
        padding: 0 15px;
        margin-bottom: 25px;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 100%;
    }
    
    .carousel-text-wrapper {
        padding: 0 15px;
        gap: 0;
        overflow: hidden;
    }
    
    .text-card {
        min-width: 100%;
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .text-card .name {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .text-card .title {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .text-card .about {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .nav-btn {
        display: none;
    }
    
    .carousel-text-wrapper {
  width: 100%;
        max-width: none;
    }
    
    /* Disable hover effects on small mobile */
    .hero-btn:hover,
    .panel:hover,
    .panel-btn:hover,
    .stat-item:hover,
    .filter-select:hover,
    .location-control:hover {
        transform: none !important;
        box-shadow: none !important;
        background: initial !important;
        color: initial !important;
    }
}

/* Life at Our Schools Section */
.bg-container-8 {
    background: linear-gradient(135deg, #faf1e2 0%, #f5e6d3 100%);
    padding: 40px 0;
  position: relative;
    overflow: hidden;
}

.bg-container-8::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"><defs><pattern id="school-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(20, 72, 53, 0.08)"/><circle cx="0" cy="0" r="0.8" fill="rgba(20, 72, 53, 0.05)"/><circle cx="30" cy="30" r="0.8" fill="rgba(20, 72, 53, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23school-pattern)"/></svg>');
    opacity: 0.4;
}

.snaps-heading-container {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
  position: relative;
    z-index: 2;
}

.snaps-heading-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #144835;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.snaps-heading-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #144835, #a2c144);
    border-radius: 2px;
}

.snaps-heading-container p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: #666;
    font-family: 'Jost', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.snaps-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 150vh; /* gives space for all images */
    margin-top: 40px;
    top: -90px;
}

/* Common styles for all images */
.snaps-container img {
  position: absolute;
  max-width: 40%;
  height: auto;
  transition: 0.4s ease;
  border-radius: 8px;
}

/* Individual placements (use % so it adapts to screen width) */
.img-1 { top: 35%; left: 5%; width: 38%; }
.img-2 { top: 25%; right: 3%; width: 40%; }
.img-3 { top: 65%; right: 6%; width: 40%; }
.img-4 { top: 20%; left: 30%; width: 40%; }
.img-5 { top: 65%; left: 5%; width: 40%; }
.img-6 { top: 28%; left: 15%; width: 40%; }
.img-7 { top: 50%; left: 25%; width: 40%; }
.img-8 { top: 45%; right: 15%; width: 42%; }

/* Hover effects with unique borders */
.img-1:hover { transform: scale(1.2); z-index: 3; border: 1.5vw solid #a5a573; }
.img-2:hover { transform: scale(1.2); z-index: 3; border: 1.5vw solid #727390; }
.img-3:hover { transform: scale(1.2); z-index: 3; border: 1.5vw solid #e8effb; }
.img-4:hover { transform: scale(1.2); z-index: 3; border: 1.5vw solid #39414c; }
.img-5:hover { transform: scale(1.2); z-index: 3; border: 1.5vw solid #6c8024; }
.img-6:hover { transform: scale(1.2); z-index: 3; border: 1.5vw solid #de5b0a; }
.img-7:hover { transform: scale(1.2); z-index: 3; border: 1.5vw solid #9d7960; }
.img-8:hover { transform: scale(1.2); z-index: 3; border: 1.5vw solid #796673; }

/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
  .snaps-container { min-height: 200vh; }
  .snaps-container img { max-width: 45%; }
}

@media (max-width: 768px) {
  .snaps-container { 
    display: none; /* Hide desktop version on mobile */
  }
  
  /* Mobile Gallery Styles */
  .mobile-gallery {
    display: block;
    margin-top: 30px;
    padding: 0 20px;
  }
  
  .gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
  
  .gallery-viewport {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .gallery-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  
  .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
  }
  
  
  .gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(20, 72, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background-color: #a2c144;
    transform: scale(1.2);
  }
  
  .indicator:hover {
    background-color: #144835;
    transform: scale(1.1);
  }
}

@media (min-width: 769px) {
  .mobile-gallery {
    display: none; /* Hide mobile version on desktop */
  }
}

/*bg-container-9*/
.bg-container-9{
  background-color: #ffffff;
  padding: 3vw 0;
  padding-bottom: 5vw;
}
.bg-9-container {
  text-align: center;
  position: relative;
  z-index: 2;
}
.bg-9-title {
  font-size: 3rem;
  font-weight: 600;
  color: #144835;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 20px;
}

.bg-9-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #a2c144, #144835);
  border-radius: 2px;
}
.bg-9-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  font-family: 'Jost', sans-serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  line-height: 1.6;
}
.bg-9-awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  margin: 0 10vw;
  padding-top: 3vw;
  position: relative;
  z-index: 2;
}
.bg-9-award-item {
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  width: 20vw;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.bg-9-award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.bg-9-award-item i {
  color: #ecc94b;
  font-size: 1.875rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.bg-9-award-item:hover i {
  color: #a2c144;
  transform: scale(1.1);
}

.bg-9-award-item p {
  color: #000;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.4;
  font-family: 'Jost', sans-serif;
  margin: 0;
  margin-left: 1rem;
}
.bg-9-more {
  color: #636364;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  padding: 0.5vw 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.bg-9-carousel-container {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 12vw;
  padding-top: 4vw;
  z-index: 2;
}
.bg-9-carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  margin: 0 10vw;
}
.bg-9-carousel-item {
  min-width: 10vw;
  margin-right: 2vw;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.bg-9-carousel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.bg-9-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bg-9-carousel-item:hover img {
  transform: scale(1.05);
}
.bg-9-fade-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
  z-index: 1;
}
.bg-9-fade-overlay-left {
  left: 0;
}
.bg-9-fade-overlay-right {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}
@media (max-width: 768px) {
  .bg-container-9 {
    padding: 40px 0;
    padding-bottom: 20px;
  }
  
  .bg-9-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 25px;
    letter-spacing: 1px;
  }
  
  .bg-9-title::after {
    width: 60px;
    height: 3px;
    bottom: -8px;
  }
  
  .bg-9-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .bg-9-awards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
    padding-top: 20px;
  }
  
  .bg-9-award-item {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .bg-9-award-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .bg-9-award-item i {
    font-size: 1.5rem;
    margin-right: 15px;
  }
  
  .bg-9-award-item p {
    font-size: 1rem;
    margin-left: 0;
    line-height: 1.4;
  }
  
  .bg-9-more {
    font-size: 1rem;
    padding: 20px 0;
  }
  
  .bg-9-carousel-container {
    margin: 0 20px;
    padding-top: 20px;
  }
  
  .bg-9-carousel-track {
    margin: 0 15px;
  }
  
  .bg-9-carousel-item {
    min-width: 200px;
    margin-right: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .bg-9-carousel-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .bg-9-fade-overlay {
    width: 30px;
  }
  
  .bg-9-fade-overlay-left {
    width: 30px;
  }
  
  .bg-9-fade-overlay-right {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .bg-container-9 {
    padding: 30px 0;
    padding-bottom: 15px;
  }
  
  .bg-9-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  
  .bg-9-title::after {
    width: 50px;
    height: 2px;
    bottom: -6px;
  }
  
  .bg-9-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  
  .bg-9-awards {
    gap: 15px;
    margin: 0 15px;
    padding-top: 15px;
  }
  
  .bg-9-award-item {
  width: 100%;
    max-width: 350px;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  }
  
  .bg-9-award-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  }
  
  .bg-9-award-item i {
    font-size: 1.3rem;
    margin-right: 12px;
  }
  
  .bg-9-award-item p {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  .bg-9-more {
    font-size: 0.9rem;
    padding: 15px 0;
  }
  
  .bg-9-carousel-container {
    margin: 0 15px;
    padding-top: 15px;
  }
  
  .bg-9-carousel-track {
    margin: 0 10px;
  }
  
  .bg-9-carousel-item {
    min-width: 180px;
    margin-right: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  }
  
  .bg-9-carousel-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .bg-9-fade-overlay {
    width: 25px;
  }
  
  .bg-9-fade-overlay-left {
    width: 25px;
  }
  
  .bg-9-fade-overlay-right {
    width: 25px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 32px;
  color: white;
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #144835;
  padding: 12px 20px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 14px;
  font-weight: 600;
  z-index: 10000;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float i {
    font-size: 28px;
  }
  
  .whatsapp-tooltip {
    right: 70px;
    font-size: 13px;
    padding: 10px 16px;
    white-space: normal;
    max-width: 180px;
  }
  
  .whatsapp-tooltip::after {
    right: -7px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float i {
    font-size: 26px;
  }
}

