* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter Tight', sans-serif;
}

body {
    background-color: #777;
    color: #fff;
}

/* Prevent horizontal overflow on small devices and cap media sizes */
html,
body {
    overflow-x: hidden;
}


.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;
    position: relative;
    z-index: 2;
}

.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);
}

/* Paintball Icon Styles */
.paintball-icon {
    background-color: #D5F637;
    color: black;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.paintball-icon svg {
    width: 18px;
    height: 18px;
}

.paintball-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0);
}

.purchase-btn:hover .paintball-icon {
    background-color: #000;
    color: #D5F637;
    transform: scale(1.1) rotate(10deg);
}

.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: flex-start;
    justify-content: flex-end;
    position: absolute;
    top: 80%;
    left: 35%;
    transform: translate(-35%, -30%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.tagline {
    font-size: 2rem !important;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-style: italic;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
}

/* Dynamic Subtitle Styles */
.dynamic-subtitle {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-top: 150px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
    align-self: center;
    margin-left: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dynamic-subtitle .line1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-subtitle .line2 {
    font-size: 4rem;
    font-weight: 900;
    margin-top: 0.2em;
    color: #D5F637;
    line-height: 1;
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.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;
    position: relative;
    z-index: 2;
}

.cards-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 80px 20px;
    background-image: url('../assets/bg/Shotcom_BLACK Bolt vector-JUL-2020-92.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: center;
    /* Changed from flex-start to center */
    flex-wrap: wrap;
    /* Changed from nowrap to wrap */
    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;
}

/* 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 380px;
    /* Increased from 280px */
    min-width: 380px;
    /* Increased from 280px */
    max-width: 380px;
    /* Increased from 280px */
    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: black;
    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: 280px;
    /* Reduced from 100% */
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(5px);
    /* Modern glass effect */
    border: 1px solid rgba(0, 0, 0, 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: 180px;
    /* Reduced from 320px */
    overflow: hidden;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.9;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.card-link:hover .card-image::before {
    opacity: 0.7;
    /* Slightly reduce gradient opacity on hover */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.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: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: transparent;
    transition: transform 0.3s ease;
    letter-spacing: 2px;
    text-align: center;
}

.card-link:hover .card-content {
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.4rem;
    /* Slightly smaller font size from 1.5rem */
    font-weight: 700;
    margin-bottom: 10px;
    /* Reduced from 12px */
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    /* Reduced from 12px */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.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('../assets/thrill.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.6rem !important;
    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: 30px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: xx-large;
}

.parallax-button:hover {
    background-color: white;
    transform: scale(1.05);
}

/* Gallery Section Styles */
.gallery-section {
    padding: 150px 0;
    overflow: hidden;
    /* Prevent transformed items from creating horizontal scrollbars */
    width: 100%;
    max-width: 100%;
    background: #fff;
    min-height: 100%;
}

.gallery-header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.gallery-header span {
    color: #D5F637;
}

/* Animation keyframes for sliding cards along diagonal rows */
@keyframes slideAlongDiagonal {
    0% {
        transform: rotate(-15deg) translateX(100vw);
    }

    100% {
        transform: rotate(-15deg) translateX(-100vw);
    }
}

/* Animation keyframes for sliding gallery grid from right to left */
@keyframes gallery-scroll-horizontal {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.gallery-grid {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 30px !important;
    margin-bottom: 6px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    /* Animate the grid to move right to left */
    animation: gallery-scroll-horizontal 15s linear infinite;
    will-change: transform;
}

.gallery-grid:nth-of-type(2) {
    margin-top: 0;
}

.gallery-item {
    width: 400px;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid #111;
    cursor: pointer;
}

.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: '2:30';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    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);
}

.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: #fff;
    text-align: center;
}

.pinterest-gallery-title span {
    color: #D5F637;
}

.pinterest-gallery-subtitle {
    text-align: center;
    color: #e7e5e5;
    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;
    }

    /* Center hero content horizontally on mobile */
    .hero-content {
        left: 50% !important;
        transform: translate(-55%, -30%) !important;
        top: 80% !important;
        align-items: center;
        padding: 0 12px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-text-container {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

}

/* 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: 60px;
        max-width: 210px;
    }



    .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: 160px;
        /* Reduced from 320px for mobile */
    }

    .parallax-title {
        font-size: 2rem;
    }

    .parallax-overlay {
        padding: 0 15px;
    }

    .parallax-subtitle {
        font-size: 1rem !important;
    }

    .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;
    }

    .gallery-header {
        font-size: 2rem;
    }
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    color: #111;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
}

.back-to-top i {
    display: block;
    position: absolute;
    top: 13px;
    left: 17px;
    right: 0;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #111;
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s;
}

.back-to-top:hover i {
    color: #1ea952;
}

.back-to-top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid #D5F637;
    margin: 0 auto;
    transition: border-bottom-color 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.back-to-top:hover::before {
    border-bottom-color: #1ea952;
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    /* Place above back-to-top (30px + 50px + 10px gap) */
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 20px;
}

/* FAQ Button Styles */
.faq-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.faq-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    background-color: #D5F637;
    color: #000;
}

.faq-button i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .faq-button {
        width: 45px;
        height: 45px;
        left: 20px;
        bottom: 20px;
    }

    .logo-section-title {
        font-size: 2.1rem !important;
    }
}

/* Logo Section */
.logo-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.logo-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-section-subtitle {
    font-size: 1.1rem;
    color: #111 !important;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

/* 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%;
    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);
}

.video-gallery-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 320px;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 450px;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.video-card video {
    width: 100%;
    height: 400px;
    /* Changed from 200px to 320px for vertical video */
    object-fit: cover;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    display: block;
}

.video-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #D5F637;
    text-align: center;
    padding: 16px 8px 12px 8px;
    background: none;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.video-modal-content {
    position: relative;
    z-index: 2;
    background: #111;
    border-radius: 12px;
    padding: 24px 16px 16px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-modal-close {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
}

.video-modal-close:hover {
    color: #D5F637;
}

#modal-video {
    width: 80vw;
    max-width: 700px;
    max-height: 70vh;
    background: #000;
    border-radius: 8px;
}

/* Responsive for video cards and modal */
@media (max-width: 900px) {
    .video-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        width: calc(50% - 10px);
        height: 340px;
        /* taller vertical rectangle */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .video-card video {
        width: 100%;
        height: 220px;
        /* taller video area inside card */
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }

    .video-card .video-card-title {
        padding: 12px 8px;
        font-size: 1rem;
        flex: 1 0 auto;
    }
}

@media (max-width: 600px) {
    .video-card {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        box-sizing: border-box;
        height: 320px;
        /* slightly shorter but still vertical rectangle */
        margin: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .video-card video {
        width: 100%;
        height: 200px;
        /* adjusted for small screens */
        object-fit: cover;
    }

    .video-card .video-card-title {
        padding: 10px 8px;
        font-size: 0.95rem;
    }
}

/* YouTube-style Modal Styles for Gallery */
.gallery-video-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-video-modal.show {
    opacity: 1;
    visibility: visible;
}

.gallery-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    /* constrain modal content height so it never covers full screen */
}

.gallery-video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: color 0.3s ease;
}

.gallery-video-modal-close:hover {
    color: #ff0000;
}

.gallery-video-modal iframe {
    width: 100%;
    /* Keep aspect ratio but never exceed viewport height */
    height: min(56.25vw, 75vh);
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .gallery-video-modal-content {
        width: 95%;
    }

    .gallery-video-modal-close {
        top: -35px;
        font-size: 1.5rem;
    }

    .gallery-video-modal iframe {
        height: min(56.25vw, 50vh);
    }
}

/* Testimonials Section */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slides {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 0;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: #D5F637;
    transform: scale(1.2);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Ensure the hero content is positioned correctly in slides */
.slide .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 3;
}

/* Ensure the hero logo is visible over slide backgrounds */
.hero-logo img {
    max-width: 180px;
}

/* Make the tagline stand out more over slides */
.tagline {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: white;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
    }

    .hero-logo img {
        max-width: 200px;
    }
}

/* About Us Section Styles */
.about-us-section {
    padding: 50px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
}

.about-us-section>.container {
    position: relative;
    z-index: 2;
}

.about-us-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
}

.about-us-title .highlight {
    color: #D5F637;
    position: relative;
}

.about-us-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D5F637, #D5F637);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.about-us-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #fff;
    border-radius: 8px;
}

.highlight-text {
    color: #D5F637;
    font-weight: 700;
    /* background: #7b883c; */
    padding: 2px 6px;
    border-radius: 4px;
}

/* currently-operate - made larger and adjusted spacing */
.currently-operate {
    margin: 0 0 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 220px;
    /* ensure a bigger visual block */
}

.currently-operate h4 {
    color: #fff;
    font-size: 1.25rem;
    /* larger heading */
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.facilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facilities-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    /* slightly larger list text */
    font-weight: 600;
}

.facilities-list li i {
    color: #D5F637;
    margin-right: 14px;
    font-size: 1.25rem;
    /* larger icon */
    width: 22px;
    text-align: center;
}

.clientele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

/* new: social icons styling placed near clientele styles */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all .22s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icons a i {
    font-size: 18px;
}

.social-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    background: linear-gradient(90deg, #D5F637, #D5F637);
    color: #111;
    border-color: transparent;
}

.clientele-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(213, 246, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(213, 246, 55, 0.2);
    transition: all 0.3s ease;
}

.clientele-item:hover {
    transform: translateY(-3px);
    background: rgba(213, 246, 55, 0.15);
    border-color: rgba(213, 246, 55, 0.4);
    box-shadow: 0 5px 15px rgba(213, 246, 55, 0.1);
}

.clientele-item i {
    color: #D5F637;
    font-size: 1.3rem;
    margin-right: 12px;
    width: 25px;
    text-align: center;
}

.clientele-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.highlight-paragraph {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #fff;
    margin-top: 20px;
}

.about-owg-logo {
    margin-top: 0;
    align-self: flex-start;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px 10px;
    /* slightly adjusted padding */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-owg-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-owg-logo img {
    max-width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.about-owg-logo:hover img {
    filter: brightness(1.2);
}

.about-us-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-us-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-us-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(213, 246, 55, 0.8), rgba(255, 0, 102, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
}

.overlay-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activities-section {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activities-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activities-title .highlight {
    color: #D5F637;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.activity-item:hover {
    transform: translateY(-2px);
    background: rgba(213, 246, 55, 0.1);
    border-color: rgba(213, 246, 55, 0.3);
    box-shadow: 0 3px 10px rgba(213, 246, 55, 0.1);
}

.activity-item i {
    color: #D5F637;
    font-size: 1.1rem;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.activity-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.closing-statement {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(213, 246, 55, 0.1), rgba(255, 0, 102, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.closing-statement p {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: #D5F637;
    color: #111;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ensure the two columns align their children to the top */
.row.align-items-start>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* currently-operate - remove top margin so it starts at column top */
.currently-operate {
    margin: 0 0 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 220px;
}

/* ensure logo sits at the top of its column */
.about-owg-logo {
    margin-top: 0;
    align-self: flex-start;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px 10px;
    /* slightly adjusted padding */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Sports Ticker Styles */
.sports-ticker {
    width: 100vw;
    overflow: hidden;
    background: #D5F637;
    border-top: 2px solid #D5F637;
    border-bottom: 2px solid #D5F637;
    position: relative;
    z-index: 10;
    height: 60px;
    display: flex;
    align-items: center;
}

.sports-ticker .ticker-content {
    display: flex;
    width: max-content;
    animation: ticker-scroll 18s linear infinite;
    align-items: center;
    gap: 60px;
}

.sports-ticker span {
    color: #111;
    font-weight: 1000;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    white-space: nowrap;
    padding: 0 18px;
    display: inline-block;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.book-slot-img-btn {
    display: inline-block;
    border: none;
    background: none;
    padding: 0;
    margin: 0 0 0 10px;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    transition: transform 0.15s;
}

.book-slot-img-btn img {
    display: block;
    height: 90px !important;
    width: auto;
    border: none;
    background: none;
    box-shadow: none;
    transition: transform 0.15s;
}

/* Mobile: reduce size of book-now image to prevent layout issues */
@media (max-width: 600px) {
    .book-slot-img-btn img {
        height: 60px !important;
        width: auto;
    }
}

@media (max-width: 400px) {
    .book-slot-img-btn img {
        height: 48px !important;
        width: auto;
    }
}

/* Equipment Section Styles */
.equipment-section {
    margin-top: 50px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.equipment-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipment-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 0;
}

.equipment-item:hover {
    transform: translateY(-5px);
    background: rgba(213, 246, 55, 0.1);
    border-color: rgba(213, 246, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.equipment-image {
    height: 300px;
    width: 250px;
    overflow: hidden;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
    background: transparent;
}

.equipment-content {
    padding: 20px;
}

.equipment-content h4 {
    color: #D5F637;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.equipment-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.equipment-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(213, 246, 55, 0.1), rgba(255, 0, 102, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.equipment-cta h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.equipment-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}


/* Testimonials Section */
.testimonials-section {
    background-color: #1a2332;
    padding: 3.5rem 0;
    /* Increased from 3rem but still less than original 5rem */
    position: relative;
    overflow: hidden;
}

.testimonials-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;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.testimonials-title .highlight {
    color: #D5F637;
    margin: 0 0.5rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    /* Increased from 1.5rem */
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-slider {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.8rem;
    /* Increased from 1.5rem */
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(200, 255, 0, 0.1);
    line-height: 1;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(213, 246, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #D5F637;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 12.8em;
    /* 8 lines × 1.6 line-height */
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #D5F637;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    /* Reduced from 2rem */
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(213, 246, 55, 0.5);
    color: #D5F637;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(213, 246, 55, 0.2);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .testimonials-title {
        font-size: 3rem;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonial-controls {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.google-logo {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}

/* ...existing code... */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.dynamic-subtitle .line1 {
    /* ...existing code... */
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-subtitle .line2 {
    /* ...existing code... */
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile: two video cards per row */
@media (max-width: 900px) {
    .video-gallery-cards {
        justify-content: space-between;
        gap: 10px;
    }

    .video-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        width: calc(50% - 10px);
        height: 340px;
        /* taller vertical rectangle */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .video-card video {
        width: 100%;
        height: 220px;
        /* taller video area inside card */
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }

    .video-card .video-card-title {
        padding: 12px 8px;
        font-size: 1rem;
        flex: 1 0 auto;
    }
}

/* Mobile: strict 2-per-row layout for video cards */
@media (max-width: 600px) {
    .video-gallery-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
        align-items: stretch;
        box-sizing: border-box;
        padding: 0 8px;
    }

    .video-card {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        box-sizing: border-box;
        height: 300px;
        /* slightly shorter but still vertical rectangle */
        margin: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .video-card video {
        width: 100%;
        height: 250px;
        /* adjusted for small screens */
        object-fit: cover;
    }

    .video-card .video-card-title {
        padding: 10px 8px;
        font-size: 0.95rem;
    }
}

/* Desktop: keep video gallery on one line, allow horizontal scroll if needed */
@media (min-width: 901px) {
    .video-gallery-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 6px;
        /* space for scrollbar on some browsers */
    }

    .video-gallery-cards::-webkit-scrollbar {
        height: 8px;
    }

    .video-gallery-cards::-webkit-scrollbar-thumb {
        background: rgba(213, 246, 55, 0.35);
        border-radius: 6px;
    }

    .video-card {
        flex: 0 0 auto;
        width: 270px;
        max-width: 270px;
        box-sizing: border-box;
        margin: 0;
    }

    .video-gallery-title {
        font-size: 2rem !important;
    }
}