        .carousel-container{
            margin:0 auto;
            margin-top:6rem;
            max-width:100%;
            display:flex;
            justify-content: center;
            align-items: center;
        }



        .carousel-container::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 140px; 
            height: 100%;
            background: linear-gradient(to right, #fff, transparent);
            z-index: 15;
            pointer-events: none;
        }


        .carousel-container::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 140px; 
            height: 100%;
            background: linear-gradient(to left, #fff, transparent);
            z-index: 15;
            pointer-events: none;
        }


        .carousel-container {
            width: 1440px; /* Total: 100 + 20 + 1200 + 20 + 100 */
            height: 600px;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        .carousel-viewport {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            align-items: center;
            padding: 20px 0;
            box-sizing: border-box;
        }

        .carousel-slide {
            flex-shrink: 0;
            height: calc(100% - 40px);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-right: 20px; 
            box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        }

        .carousel-slide:last-child {
            margin-right: 0;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            
        }

        /* All slides start as preview size */
        .carousel-slide {
            width: 100px;
            opacity: 0.5;
            filter: brightness(0.6) contrast(0.8);
        }

        /* Active slide styling */
        .carousel-slide.active {
            width: 1200px;
            opacity: 1;
            filter: brightness(1) contrast(1);
            z-index: 10;
        }

        /* Hover effect on inactive slides */
        .carousel-slide:not(.active):hover {
            opacity: 0.8;
            filter: brightness(0.8) contrast(0.9);
        }

        /* Slide content - only show on active slide */
        .slide-content {
            position: absolute;
            bottom: 40px;
            left: 40px;
            right: 40px;
            color: white;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .carousel-slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .slide-title {
            font-size: 2.8rem;
            font-weight: bold;
            margin-bottom: 12px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            line-height: 1.2;
        }

        .slide-subtitle {
            font-size: 1.6rem;
            font-weight: 300;
            color: #f0f0f0;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        }

        /* Navigation dots */
        .carousel-dots {
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 20;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(000, 000, 000, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #000;
        }

        .carousel-dot:hover:not(.active) {
            background: rgba(000, 000, 000, 0.7);
            transform: scale(1.2);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {

            .carousel-container {
                margin-top:4rem;
                width: 100%;
                max-width: 100vw;
                height: 500px;
                overflow: hidden;
                padding-left:1rem;
                padding-right:1rem;
            }
            
            /* Remove fade masks on mobile */
            .carousel-container::before,
            .carousel-container::after {
                display: none;
            }
            
            .carousel-viewport {
                width: 100%;
                height: 100%;
                overflow: hidden;
            }
            
            .carousel-track {
                padding: 20px 0;
                justify-content: center;
            }
            
            /* Mobile: only show active slide, hide all others */
            .carousel-slide {
                display: none;
                box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
            }
            
            .carousel-slide.active {
                display: block;
                width: 100%;
                height: calc(100% - 40px);
                margin: 0;
                position: relative;
            }
            
            .slide-title {
                font-size: 1.8rem;
                margin-bottom: 8px;
            }
            
            .slide-subtitle {
                font-size: 1.2rem;
            }
            
            .slide-content {
                bottom: 20px;
                left: 20px;
                right: 20px;
            }
            
            /* Mobile navigation dots - positioned at bottom of container */
            .carousel-dots {
                position: absolute;
                bottom: 10px;
                left: 50%;
                transform: translateX(-50%);
                gap: 12px;
                padding: 8px 16px;
                border-radius: 20px;
                z-index: 30;
            }
            
            .carousel-dot {
                width: 10px;
                height: 10px;
                background: rgba(000, 000, 000, 0.6);
                border: none;
                border-radius: 50%;
            }
            
            .carousel-dot.active {
                background: #000;
            }
            
            .carousel-dot:hover:not(.active) {
                background: rgba(255, 255, 255, 0.8);
                transform: scale(1.1);
            }
        }
        
        
   .florida-countdown-section {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 20px;
    text-align: center;
}

.florida-countdown-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-item {
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 48px;
    font-weight: 700;
    color: #d2691e;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 600;
}

.countdown-expired {
    font-size: 24px;
    color: #d2691e;
    font-weight: 600;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .florida-countdown-title {
        font-size: 24px;
    }
    
    .countdown-timer {
        gap: 15px;
        max-width: 600px;
    }
    
    .countdown-item {
        padding: 18px 15px;
    }
    
    .countdown-number {
        font-size: 36px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .florida-countdown-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .florida-countdown-section {
        margin: 40px auto 60px;
        padding: 0 15px;
    }
    
    .countdown-timer {
        gap: 8px;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .countdown-item {
        padding: 12px 8px;
        border-width: 1px;
    }
    
    .countdown-number {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .countdown-label {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
}


/* Recent Posts Section */
.rgf-recent-posts-section {
    max-width: 1200px;
  margin: 20px auto 80px;
  padding: 0 20px;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.rgf-recent-posts-header {
    margin-bottom: 2rem;
}

.rgf-recent-posts-header h2 {
    font-size: 2rem;
    margin: 0;
}

/* Grid Layout */
.rgf-recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Individual Post Card */
.rgf-recent-post-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 1.2rem;
    border-radius:20px;
}

.rgf-recent-post-image {
    width: 100%;
    margin-bottom: 1rem;
}

.rgf-recent-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rgf-recent-post-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.rgf-recent-post-title a {
    color: #000;
    text-decoration: none;
}

.rgf-recent-post-title a:hover {
    text-decoration: underline;
}

.rgf-recent-post-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.rgf-recent-post-excerpt {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.rgf-recent-post-read-more {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.rgf-recent-post-read-more:hover {
    text-decoration: underline;
}

/* View All Button */
.rgf-recent-posts-footer {
    text-align: center;
    margin-top: 2rem;
}

.rgf-view-all-blog-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius:7px;
}

.rgf-view-all-blog-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rgf-recent-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}