* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter Tight', sans-serif;
}

body {
    background-color: #777;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    flex-wrap: wrap; /* Allow wrapping if needed */
    position: relative;
    z-index: 2; /* Place header above the overlay */
}

.logo {
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Increased from 50px */
    width: auto;
    display: block;
    max-width: 250px; /* Increased from 180px */
}

.right-nav {
    display: flex;
    align-items: center;
}

.purchase-btn {
    background-color: #000;
    color: white;
    padding: 15px 28px; /* Reduced from 18px 35px */
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem; /* Reduced from 1.2rem */
    display: flex;
    align-items: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.purchase-btn:hover {
    background-color: #D5F637;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 246, 55, 0.3);
    border-color: #D5F637;
}

.arrow-icon {
    background-color: #D5F637;
    color: black;
    border-radius: 50%;
    width: 28px; /* Reduced from 30px */
    height: 28px; /* Reduced from 30px */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px; /* Reduced from 15px */
    font-size: 1rem; /* Reduced from 1.1rem */
    transition: all 0.3s ease;
}

.purchase-btn:hover .arrow-icon {
    background-color: #000;
    color: #D5F637;
    transform: translateX(3px);
}

.cart-icon {
    color: #ff0066;
    font-size: 1.5rem;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    text-align: center;
    min-height: 100vh;
    background-image: url('/assets/images/IMG_9449.JPG');
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    left: 0;
    right: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2; /* Place content above the overlay */
    flex-grow: 1;
    padding: 80px 0;
}

.hero-logo {
    margin-bottom: 30px;
}
.hero-logo img {
    max-width: 180px;
    height: auto;
}
/* Commented out since we're using the image logo instead
.logo-x {
    font-size: 5rem;
    position: relative;
    margin-bottom: 20px;
}

.logo-accent {
    position: absolute;
    color: #c0ff00;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}
*/

.tagline {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-style: italic;
    position: relative;
    z-index: 2; /* Place content above the overlay */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Added text shadow for better visibility */
}

.subtitle {
    font-size: 2rem;
    color: #333;
    margin-bottom: 60px;
}

.circle-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #ff0066;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
}

/* Card styles - now integrated into main section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: white; /* Ensure title is visible on dark background */
    position: relative;
    z-index: 2;
}
.cards-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0; /* Changed from 60px to eliminate gap */
    margin-bottom: 0; /* Changed from 60px to eliminate gap */
    padding: 80px 20px; /* Increased padding for better spacing */
    background-image: url('https://png.pngtree.com/thumb_back/fh260/background/20220523/pngtree-abstract-black-gold-texture-sports-vector-illustration-image_1385166.jpg'); /* More reliable image URL */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a parallax effect */
    position: relative;
    z-index: 0; /* Lower z-index to ensure proper stacking */
}

.cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Less dark overlay for better image visibility */
    z-index: 1;
}

.cards-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap; /* Changed from wrap to nowrap */
    gap: 30px;
    width: 100%;
    margin-top: 0; /* Remove extra space, handled by cards-section */
    max-width: 100%; /* Changed from 1200px to allow full width */
    position: relative;
    z-index: 2; /* Place cards above the overlay */
    overflow-x: auto; /* Add horizontal scrolling capability */
    padding: 20px 0; /* Add some vertical padding */
    scrollbar-width: thin; /* For Firefox */
    -ms-overflow-style: none; /* For IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.cards-container::-webkit-scrollbar {
    height: 6px;
}

.cards-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.cards-container::-webkit-scrollbar-thumb {
    background: rgba(213, 246, 55, 0.5);
    border-radius: 10px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 0 0 280px; /* Fixed width, don't grow or shrink */
    min-width: 280px; /* Minimum width to maintain consistency */
    max-width: 280px; /* Maximum width to maintain consistency */
    perspective: 1000px; /* Create 3D effect for hover */
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.card {
    border-radius: 12px; /* Rounded corners for modern look */
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.15); /* Deeper, more modern shadow */
    background-color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smoother animation with bounce effect */
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(5px); /* Modern glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
}

.card-link:hover .card {
    transform: translateY(-15px) rotateX(5deg); /* 3D transform effect */
    box-shadow: 0 20px 35px rgba(0,0,0,0.2); /* Enhanced shadow on hover */
}

.card-image {
    height: 280px; /* Increased from 250px to make cards taller */
    overflow: hidden;
    position: relative;
    flex-grow: 1;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7) 100%);
    opacity: 0.7;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.card-link:hover .card-image::before {
    opacity: 0.4; /* Reduce gradient opacity on hover */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card-link:hover .card-image img {
    transform: scale(1.1) rotate(-2deg); /* Slightly rotate image on hover */
}

.card-content {
    padding: 15px 20px; /* Reduced padding from 20px 25px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background: white;
    transition: background 0.3s ease;
}

.card-link:hover .card-content {
    background: #f8f8f8; /* Subtle background change on hover */
}

.card-title {
    font-size: 1.4rem; /* Slightly smaller font size from 1.5rem */
    font-weight: 700;
    margin-bottom: 10px; /* Reduced from 12px */
    color: #000;
    position: relative;
    padding-bottom: 10px; /* Reduced from 12px */
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #D5F637; /* Accent color underline */
    transition: width 0.3s ease;
}

.card-link:hover .card-title::after {
    width: 60px; /* Expand underline on hover */
}

/* Parallax section styles */
.parallax-section {
    position: relative;
    height: 100vh; /* Changed from 80vh to 100vh for full screen height */
    width: 100%;
    background-image: url('https://furplecs.com/wp-content/uploads/2022/10/LWOOD_PAINTBALL_PARK.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the parallax effect */
    margin: 0; /* Removed bottom margin to eliminate white space */
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.parallax-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-subtitle {
    font-size: 1.8rem;
    max-width: 700px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.parallax-button {
    margin-top: 30px;
    background-color: #D5F637;
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.parallax-button:hover {
    background-color: white;
    transform: scale(1.05);
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    overflow: hidden; /* Prevent transformed items from creating horizontal scrollbars */
    width: 100%;
    max-width: 100%;
    background:#fff;
}

.gallery-header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #000;
}

.gallery-header span {
    color: red;
}

/* Animation keyframes for continuous sliding from right to left */
@keyframes slideLeft {
    0% {
        transform: translateX(0%) rotate(-3deg);
    }
    100% {
        transform: translateX(-50%) rotate(-3deg);
    }
}

.gallery-grid {
    display: flex;
    justify-content: flex-start; /* Changed from center to flex-start */
    gap: 30px;
    margin-bottom: 60px;
    transform: rotate(-3deg);
    animation: slideLeft 30s linear infinite; /* Increased duration for smoother movement */
    position: relative;
    z-index: 1;
    width: 200%; /* Doubled width to accommodate duplicated items */
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid:nth-of-type(2) {
    animation: slideLeft 30s linear infinite;
    animation-delay: -15s; /* Offset second row animation */
}

.gallery-grid:nth-of-type(3) {
    animation: slideLeft 30s linear infinite;
    animation-delay: -10s; /* Offset third row animation */
}

.gallery-item {
    width: 15%; /* Reduced width since we have more items */
    height: 200px;
    overflow: hidden;
    border-radius: 8px; /* Added slightly rounded corners like YouTube */
    position: relative;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    transform: none;
    flex-shrink: 0; /* Prevent items from shrinking */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* YouTube-like shadow */
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px); /* Modified to work better with animation */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 5; /* Ensure hovered items appear above others */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 15px;
    color: white;
    opacity: 1; /* Always visible like YouTube */
    transition: opacity 0.3s ease;
}

/* YouTube-style play button in center */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    background-color: rgba(255, 0, 0, 0.8); /* YouTube red on hover */
}

/* YouTube-style title */
.gallery-item-overlay {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 30%, transparent 50%, transparent 100%);
    padding: 8px 10px;
    top: 0;
    height: 100%;
}

.gallery-item-overlay div {
    margin-top: 0; /* Position at top instead of bottom */
    width: 100%;
}

.gallery-item-overlay span:first-child {
    display: none; /* Hide the existing play icon since we've added the center one */
}

.gallery-item-overlay span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    max-height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/* Add a duration badge like YouTube */
.gallery-item::before {
    content: '3:45';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 3;
}

/* Fixed Background Section Styles */
.fixed-bg-section {
    position: relative;
    height: 100vh; /* Changed from 80vh to 100vh for full screen */
    width: 100%;
    background-image: url('assets/images/IMG_9433.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Animations for parallax text sliding in from different directions */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fixed-bg-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.fixed-bg-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
    animation: slideFromLeft 1.2s ease-out forwards;
}

.fixed-bg-text {
    font-size: 1.5rem;
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
    font-style: italic;
    animation: slideFromRight 1.2s ease-out 0.3s forwards;
    opacity: 0; /* Start invisible and fade in with animation */
}

.fixed-bg-button {
    background-color: #ff0066;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: slideFromLeft 1.2s ease-out 0.6s forwards;
    opacity: 0; /* Start invisible and fade in with animation */
}

.fixed-bg-button:hover {
    background-color: #D5F637;
    color: #000;
    transform: scale(1.05);
}

/* Video Gallery Section Styles */
.video-gallery-section {
    padding: 80px 0;
    background-color: #1a2332;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.video-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/IMG_9407.JPG') center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.video-gallery-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.video-gallery-title span {
    color: #D5F637;
    margin: 0 0.5rem;
}

.video-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-row:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(213, 246, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-col {
    flex: 0 0 50%;
    padding: 0;
    position: relative;
    z-index: 2;
}

.video-info-col {
    flex: 0 0 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.video-col video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #D5F637;
}

.video-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.video-cta {
    display: inline-block;
    background-color: rgba(213, 246, 55, 0.1);
    color: #D5F637;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    border: 2px solid rgba(213, 246, 55, 0.5);
}

.video-cta:hover {
    background-color: #D5F637;
    color: #000;
    transform: scale(1.05);
}

/* Pinterest-Style Photo Gallery Section */
.pinterest-gallery-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    position: relative;
}

.pinterest-gallery-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    text-align: center;
}

.pinterest-gallery-title span {
    color: #ff0066;
}

.pinterest-gallery-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.pinterest-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 15px;
}

.pinterest-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pinterest-gallery-item.tall {
    grid-row: span 2;
}

.pinterest-gallery-item.wide {
    grid-column: span 2;
}

.pinterest-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pinterest-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.pinterest-gallery-item:hover img {
    transform: scale(1.05);
}

.pinterest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.pinterest-gallery-item:hover .pinterest-overlay {
    opacity: 1;
}

.pinterest-overlay-content {
    color: white;
}

.pinterest-overlay-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.pinterest-overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Media query for responsive layout */
@media (max-width: 768px) {
    .pinterest-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        grid-auto-rows: 160px;
        gap: 10px;
    }
    
    .pinterest-gallery-item.wide {
        grid-column: auto;
    }
    
    .pinterest-overlay-content h3 {
        font-size: 1rem;
    }
    
    .pinterest-overlay-content p {
        font-size: 0.8rem;
    }
    
    .pinterest-gallery-title {
        font-size: 2rem;
    }
    
    .pinterest-gallery-subtitle {
        font-size: 1rem;
    }
}

/* Continue with existing media queries */
@media (max-width: 768px) {
    header {
        flex-direction: row; /* Always row */
        align-items: center;
        padding: 10px 0;
        flex-wrap: wrap;
    }
    .logo {
        font-size: 1.5rem;
    }
    .logo img {
        height: 50px; /* Increased from 38px */
        max-width: 250px; /* Increased from 120px */
    }
    .right-nav {
        margin-top: 0;
        width: auto;
        justify-content: flex-end;
    }
    .purchase-btn {
        padding: 12px 20px; /* Reduced from 15px 25px */
        font-size: 1rem; /* Reduced from 1.1rem */
        margin-right: 0;
    }
    .arrow-icon {
        width: 24px; /* Reduced from 28px */
        height: 24px; /* Reduced from 28px */
        margin-left: 10px; /* Reduced from 12px */
    }
    .card-link {
        min-width: 90vw;
        max-width: 98vw;
        flex: 1 1 98vw;
    }
    .card-image {
        height: 320px; /* Increased from 300px for mobile */
    }
    .parallax-title {
        font-size: 2.2rem;
    }
    .parallax-subtitle {
        font-size: 1.1rem;
    }
    .video-row {
        flex-direction: column;
    }
    .video-col, .video-info-col {
        flex: 0 0 100%;
    }
    .video-col {
        height: 350px;
    }
    .video-title {
        font-size: 1.5rem;
    }
    .video-description {
        font-size: 0.9rem;
    }
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #D5F637; /* Changed from #000 to green */
    color: #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3); /* Adjusted shadow to match green color */
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1ea952; /* Darker green on hover instead of #D5F637 */
    color: #fff; /* Keep text white for better contrast */
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 20px;
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp brand color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 32px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .back-to-top, .whatsapp-button {
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 18px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
}

/* Logo Section */
.logo-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.logo-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* New composite logo item styles */
.composite-logo-item {
    text-align: center;
    padding: 0; /* Removed padding to allow full width */
    transition: all 0.3s ease;
    width: 100%; /* Changed from max-width: 90% to width: 100% */
    margin: 0 auto;
}

.composite-logo-item img {
    width: 100%; /* Ensure image takes full width */
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.composite-logo-item:hover {
    transform: translateY(-5px);
}

.composite-logo-item:hover img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
