/* Define CSS custom properties (variables) at the root level */
:root {
    scroll-behavior: smooth;
    /* Base colors */
    --primary-color: #FF6CC0; /* Changed from #DB559D */
    --primary-hover: #ff8ecd; /* Slightly lighter version for hover states */
    --secondary-color: #FF6CC0; /* Changed to match primary */
    --dark-bg: #06070B;
    --light-bg: #ffffff;
    --dark-text: #1a202c;
    --light-text: #f9f9f9;
    
    /* Theme variables will be set by theme.js */
    
    /* Section spacing */
    --section-gap: 0.5rem;          /* 96px - space between sections */
    --section-gap-small: 4rem;    /* 64px - space before footer */
}
    
/* Disable animations initially */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* For smooth momentum scrolling on iOS */
    animation: none !important;
}

/* Re-enable animations after a short delay */
body {
    animation: none !important;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color, #06070B); /* Use CSS variable with fallback */
    color: var(--text-color, #ffffff); /* Use CSS variable with fallback */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px; /* Reduced from 20px to 5px */
}

/* Consolidate shared properties for elements */
.header, .footer {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.header {
    align-items: center;
    justify-content: space-between; /* Space between logo and controls */
    padding: 5px 0px; /* Reduced from 15px to 5px */
    position: relative;
    margin-bottom: -30px; /* Added small margin bottom */
    gap: 10px; /* Add spacing between buttons */
    animation: fadeIn 1s ease-in-out;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px; /* Increased gap between theme toggle and burger menu */
    justify-content: flex-end; /* Align controls to the right */
}

@media (min-width: 769px) {
    .header {
        justify-content: space-between; /* Keep logo on the left and menu + theme toggle on the right */
    }

    .header-controls {
        order: 2; /* Ensure theme toggle is after the menu buttons */
    }

    .nav-menu {
        order: 1; /* Ensure menu buttons are before the theme toggle */
        display: flex;
        gap: 20px; /* Add spacing between menu buttons */
    }
}

.header img {
    margin-right: 0; /* Remove extra margin from the logo */
}

.header nav {
    display: flex;
    gap: 20px;
}

.headline-container {
    color: var(--headline-text);
    background-color: transparent; /* Changed from var(--menu-button-border) to transparent */
    background-image: url('../assets/headline-bg.webp');
    position: relative;
    background-size: 100% auto; /* Changed from cover to ensure full width display */
    background-position: center 60%; /* Changed from center center to move image down */
    background-repeat: no-repeat;
    min-height: 200px; /* Increased from 180px to better fit the 500px height image */
    padding: 3rem 2rem; /* Increased padding to utilize more vertical space */
    border-radius: 16px;
    margin: 1rem 0;
    text-align: center;
    line-height: 1.8;
    animation: fadeIn 1.2s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Remove the dark overlay completely by setting fully transparent background */
.headline-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Changed from 0.2 to 0 (fully transparent) */
    border-radius: 16px; /* Match parent border-radius */
    z-index: 1;
}

/* Ensure text is above the overlay */
.headline-container h1,
.headline-container p {
    position: relative;
    z-index: 2; /* Place above the overlay */
    color: var(--headline-text);
}

.headline-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3em;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7); /* Enhanced text shadow for better readability */
    z-index: 2;
    position: relative;
    max-width: 800px;
    letter-spacing: -0.01em;
}

.headline-container p {
    margin-top: 0.25em;
    line-height: 1.3;
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7); /* Enhanced text shadow for better readability */
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .headline-container {
        background-size: cover; /* Switch to cover on medium screens */
        background-position: center center; /* Reset to center on tablet */
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .headline-container {
        min-height: 120px; /* Reduced from 150px */
        padding: 1.5rem 1rem;
        background-size: cover;
    }
}

@media (max-width: 600px) {
    .headline-container {
        min-height: 110px; /* Reduced from 130px */
        padding: 1.2rem 0.8rem;
        background-size: cover;
    }
}

h1 {
    margin-top: 0;
    color: #ffffff;
}

h2, h3 {
    color: var(--primary-color);
}

.card {
    background-color: #333333;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content {
    font-size: 1rem;
}

.btn {
    background-color: #9C3FA8;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 10px; /* Increased from 5px */
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    background-color: #DB559D;
    transform: scale(1.05);
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #2c2c2c;
    position: relative;
    bottom: 0;
    width: 100%;
    border-radius: 20px; /* Increased from 12px */
    margin-top: var(--section-gap-small);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.footer .left-section,
.footer .right-section {
    flex: 1;
    text-align: center;
    margin-bottom: 10px;
}

.footer .right-section p {
    font-size: 0.75rem; /* Reduced from default size */
    opacity: 0.8; /* Slightly dimmed for better hierarchy */
}

.header nav button {
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px; /* Set menu button font size */
    transition: color 0.3s ease; /* Only transition color */
    position: relative;
    cursor: pointer; /* Add pointer cursor on hover */
}

.header nav button:hover {
    color: var(--primary-color); /* Change to primary color on hover */
    transform: none; /* Remove the lift effect */
}

.header nav button:after {
    content: none; /* Remove the underline element */
}

/* Remove the hover:after rule as well since we're not using the underline effect */
.header nav button:hover:after {
    width: 0; /* Remove underline expansion */
}

/* Also update light mode menu buttons */
.light .header nav button:hover {
    color: var(--primary-color); /* Ensure same hover color in light mode */
}

.table-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px; /* Increased from 12px */
    background: #000000;
    /* Added thin border */
    border: 1px solid #333333;
}

/* Add fixed column widths for tables */
.table th:nth-child(1),
.table td:nth-child(1) {
    width: 30%; /* Name column - increased from 25% */
}

.table th:nth-child(2),
.table td:nth-child(2) {
    width: 45%; /* Directions column - reduced from 55% */
    max-width: 200px;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    padding-left: 30px; /* Reduced from 72px to move content to the left */
    padding-right: 24px; /* Add right padding */
    text-align: center; /* Center-align text */
}

.table th:nth-child(3), /* Rating column header */
.table td:nth-child(3) { /* Rating column cells */
    width: 25%; /* Rating column - increased from 20% */
    padding-left: 16px; /* Standard left padding */
    padding-right: 24px; /* Standard right padding */
    text-align: center; /* Center align rating */
}

/* Ensure table layout is fixed */
.table {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #ffffff;
}

.table th, .table td {
    padding: 16px;
    border-bottom: 1px solid #2d2d2d;
    text-align: left;
    padding-left: 24px;
    vertical-align: middle;
    word-wrap: break-word; /* Ensure long text wraps */
    white-space: normal; /* Allow text to wrap to the next line */
}

/* Remove the thin right border from table cells */
.table th:not(:last-child),
.table td:not(:last-child) {
    border-right: none; /* Removed vertical borders */
}

/* Also remove the light mode vertical borders */
.light .table th:not(:last-child),
.light .table td:not(:last-child) {
    border-right: none; /* Removed vertical borders in light mode */
}

.table th:nth-child(2), /* Directions column header */
.table td:nth-child(2) { /* Directions column cells */
    max-width: 200px; /* Set a maximum width for the column */
    word-wrap: break-word; /* Ensure long text wraps */
    white-space: normal; /* Allow text to wrap */
    overflow-wrap: break-word; /* Break long words if necessary */
    padding-left: 0px; /* Reduced from 72px to move content to the left */
}

.table th {
    background: #000000; /* Changed from #1a1a1a to match the table background */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #9ca3af;
    border-bottom: 1px solid #2d2d2d;
}

.light .table th {
    background-color: #ffffff; /* Changed from #eaeaea to match the table background */
    color: #1a202c;
    border-bottom: 1px solid #bdbdbd;
}

.light .table td {
    border-color: #bdbdbd; /* Darker border for better visibility */
}

.light .table-wrapper {
    background-color: #ffffff;
    border: 1px solid #bdbdbd; /* Darker border for better visibility in light mode */
}

.light .table td .star {
    color: var(--primary-color) !important; /* Use the same pink color for consistency */
}

.table tr:last-child td {
    border-bottom: none;
}

/* Update table row hover effects with subtle background highlight instead of borders */
.table tbody tr {
    transition: background-color 0.2s ease;
    /* Remove border transitions */
}

.table tbody tr:hover {
    background-color: rgba(255, 108, 192, 0.08); /* Subtle pink tint matching the primary color */
    /* Remove border styles */
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.table tbody tr:hover td {
    /* Remove border color change */
    border-color: #2d2d2d; /* Keep original border color */
    border-bottom-width: 1px; /* Keep original border width */
}

/* Apply the same hover effect to both dark and light mode */
.light .table tbody tr:hover {
    background-color: rgba(255, 108, 192, 0.05); /* Even more subtle for light mode */
    /* Remove border styles */
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.light .table tbody tr:hover td {
    /* Keep original border color and width in light mode */
    border-color: #bdbdbd;
    border-bottom-width: 1px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 16px; /* More rounded badges */
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.status-badge.active {
    background-color: #064e3b;
    color: #34d399;
}

.status-badge.maintenance {
    background-color: #854d0e;
    color: #fcd34d;
}

.table-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

.social-links h3 {
    color: var(--primary-color);
}

.social-links .social-link img {
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1); /* Keep the scaling effect */
    filter: none; /* Remove color change */
}

/* Ensure consistency in light mode */
.light .social-link:hover img {
    filter: none; /* Remove color change */
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars .star {
    font-size: 1.5rem;
    color: #9C3FA8;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-stars .star:hover,
.rating-stars .star.active {
    color: #DB559D;
}

.rating-value {
    font-size: 1.25rem;
    color: #ffffff;
}

/* Set rating star icons in the exchange table to pink for both dark and light modes */
.table td .star {
    color: var(--primary-color) !important; /* Use the same pink color for consistency */
}

/* Ensure the stars remain pink regardless of the theme */
.light .table td .star,
.dark .table td .star {
    color: var(--primary-color) !important;
}

/* Add this near the table styles section */
.rating-star {
    color: var(--primary-color);
    font-weight: bold;
}

/* Override any theme-based colors */
.light .rating-star,
.dark .rating-star {
    color: var(--primary-color) !important;
}

/* Explicitly set the color of star icons in the exchange table to pink */
.table td .rating-star {
    color: var(--primary-color) !important; /* Use the primary pink color */
    font-weight: bold; /* Make the stars bold for better visibility */
}

/* Ensure the stars remain pink in both light and dark modes */
.light .table td .rating-star,
.dark .table td .rating-star {
    color: var(--primary-color) !important;
}

/* Add external link indicator styles */
.table td:first-child {
    position: relative;
    padding-right: 36px; /* Changed from padding-left */
    padding-left: 24px; /* Restore default left padding */
}

.external-link-icon {
    position: absolute;
    right: 8px; /* Changed from left to right */
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    width: 20px;
    height: 20px;
    transition: opacity 0.2s ease;
    margin-left: 16px; /* Increased from 12px to move the icon slightly to the right */
}

/* Show icon on row hover for desktop */
.table tr:hover .external-link-icon {
    opacity: 1;
}

/* Always show icon on mobile */
@media (max-width: 768px) {
    .external-link-icon {
        position: relative; /* Ensure it aligns relative to the text */
        margin-left: 0; /* Remove extra margin */
        margin-right: 4px; /* Add a small margin to the right for spacing */
        display: inline-block; /* Ensure it stays inline with the text */
        transform: translateY(2px); /* Slight adjustment to align vertically */
    }
}

/* Update external link indicator spacing */
.external-link-icon {
    position: relative;
    display: inline-block;
    opacity: 0;
    width: 20px;
    height: 20px;
    transform: translateY(4px);
    margin-left: 16px; /* Increased from 12px to move the icon slightly to the right */
    transition: opacity 0.2s ease;
}

.table td:first-child {
    position: relative;
    white-space: nowrap;
    overflow: visible;
    padding-right: 12px; /* Increased padding to match margin */
}

/* Reduce duplicate media queries by combining them */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 15px;
        justify-content: space-between; /* Keep logo on the left and controls on the right */
        gap: 5px; /* Reduce gap between elements */
    }

    .header-controls {
        gap: 10px; /* Ensure increased gap between buttons on mobile */
    }

    .theme-toggle {
        margin: 0; /* Remove extra margins */
    }

    .burger-menu {
        margin: 0; /* Remove extra margins */
    }

    .header nav button {
        padding: 8px 15px;
        border-radius: 10px; /* Increased from 4px */
        cursor: pointer; /* Ensure pointer cursor on mobile too */
    }

    .table-wrapper {
        overflow-x: auto;
    }

    .table th, .table td {
        padding: 12px;
    }

    .table th:nth-child(3),
    .table td:nth-child(3) {
        padding-left: 0;
        padding-right: 16px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer .right-section {
        text-align: center;
        margin-top: 10px;
    }

    .headline-container {
        min-height: 120px; /* Reduced from 150px */
        padding: 1.5rem 1rem;
        background-size: cover;
    }
    
    .headline-container h1 {
        font-size: 1.8rem; /* Increased from 1.6rem for better visibility on tablets */
    }
    
    .headline-container p {
        font-size: 1rem;
    }

    .burger-menu {
        display: block;
        position: static; /* Ensure it stays in the flex flow */
        top: auto;
        right: auto;
        width: 40px; /* Set width */
        height: 40px; /* Set height to match width */
        padding: 0; /* Remove internal padding */
        border: 1px solid var(--primary-color);
        border-radius: 16px; /* Increased from 10px */
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2; /* Ensure burger menu is next to the theme toggle */
        margin: 0; /* Remove extra margins */
        background-color: transparent; /* Make the button transparent */
        color: var(--primary-color); /* Ensure the icon is visible */
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .burger-menu:hover {
        background-color: rgba(255, 255, 255, 0.1); /* Add a subtle hover effect */
        transform: scale(1.05); /* Slightly enlarge on hover */
    }

    .burger-menu.active {
        color: var(--primary-color);
        transform: rotate(90deg); /* Rotate when menu is open */
        background-color: rgba(255, 108, 192, 0.2); /* Highlight with primary color when active */
        border-color: var(--primary-color); /* Ensure border is visible */
    }

    .header nav {
        display: none; /* Initially hide the nav */
        position: fixed;
        top: 100px; /* Adjusted from 80px to 100px */
        left: 0;
        right: 0;
        background-color: rgba(6, 7, 11, 0.95); /* Darker semi-transparent background */
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Adjusted shadow for better visibility */
        z-index: 99;
        flex-direction: column;
        gap: 15px;
        align-items: center; /* Center align menu elements */
        text-align: center; /* Center text inside menu buttons */
    }

    .header nav.active {
        display: flex; /* Show when active */
    }

    .header nav button {
        width: 100%; /* Full width for buttons */
        max-width: 300px; /* Optional: Limit button width */
        text-align: center;
        padding: 12px;
        border-radius: 10px; /* Increased from 4px */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Add subtle divider */
    }

    .header nav button:last-child {
        border-bottom: none; /* Remove border from last item */
    }

    .header nav button:hover {
        background-color: transparent; /* Remove hover background in mobile view */
    }

    .burger-menu {
        order: 2; /* Ensure burger menu is on the right */
        margin-left: auto; /* Push it to the right */
    }

    .theme-toggle {
        order: 1; /* Ensure theme toggle is next to the burger menu */
        margin: 0; /* Remove extra margins */
    }

    .header {
        justify-content: space-between; /* Keep logo on the left and controls on the right */
    }

    .headline-container {
        padding: 1.5rem; /* Reduce padding to fit content better */
    }
    
    .headline-container h1 {
        font-size: 1.4rem; /* Increased from 1.2rem for better readability */
        margin-bottom: 0.2em;
    }
    
    .headline-container p {
        font-size: 0.9rem; /* Increased from 0.85rem */
        margin-top: 0.2em;
    }

    .table th:first-child,
    .table td:first-child {
        padding-left: 16px; /* Match header padding */
    }

    .table th, .table td {
        padding: 12px 16px; /* Standardize padding */
    }

    .table th:nth-child(2),
    .table td:nth-child(2) {
        padding-left: 30px; /* Reduced from 72px to match desktop view */
    }

    .table td:first-child {
        white-space: nowrap; /* Prevent name wrapping */
        overflow: visible; /* Allow icon to be visible */
        padding-right: 8px; /* Reduce right padding */
    }

    .external-link-icon {
        position: relative; /* Change from absolute to relative */
        display: inline-block;
        opacity: 1;
        width: 20px;
        height: 20px;
        transform: translateY(4px); /* Align with text */
        margin-left: 16px; /* Increased from 12px to move the icon slightly to the right */
        right: auto; /* Remove right positioning */
    }

    .external-link-icon {
        width: 14px; /* Reduced from 20px */
        height: 14px; /* Reduced from 20px */
        transform: translateY(3px); /* Adjusted for smaller size */
    }
    
    .external-link-icon img {
        width: 14px; /* Ensure image itself is also smaller */
        height: 14px;
    }

    /* Hide Owl Carousel navigation arrows on mobile */
    .owl-nav {
        display: none; /* Hide navigation arrows */
    }

    /* Reduce spacing between sections on mobile */
    section {
        margin-top: 2rem !important; /* Force reduced top margin on mobile */
        margin-bottom: 2rem !important; /* Force reduced bottom margin on mobile */
    }
    
    section + #banners {
        margin-top: 2rem !important; /* Reduced from 5rem */
    }
    
    #banners + section {
        margin-top: 1.5rem !important; /* Reduced from 3rem */
    }
    
    #banners {
        margin-top: 1.5rem !important; /* Reduced from 2.5rem */
        margin-bottom: 1.5rem !important; /* Reduced from 3rem */
    }
}

/* ===== HEADLINE MOBILE FONT SIZE ADJUSTMENTS - START ===== */
@media {
    /* Headline container adjustments for mobile phones */
    .headline-container {
        padding: 1.2rem;
        background-size: cover; /* Add specific background sizing for mobile devices */
        min-height: 100px; /* Adjust min-height for smaller screens */
    }
    
    .headline-container h1 {
        font-size: 1.5rem; /* Increased from 1.2rem */
        text-shadow: 0 0 5px rgba(219, 85, 157, 0.8),
                    0 0 10px rgba(156, 63, 168, 0.6);
        margin-top: 0.5rem; /* Increased from 0.2em */
    }
    
    .headline-container p {
        font-size: 0.85rem; /* Increased from 0.75rem */
        text-shadow: 0 0 4px rgba(219, 85, 157, 0.7);
    }
}
/* ===== HEADLINE MOBILE FONT SIZE ADJUSTMENTS - END ===== */

@media (max-width: 600px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .header nav {
        display: none; /* Hide navigation links */
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px; /* Adjust as needed */
        left: 0;
        width: 100%;
        background-color: #06070B; /* Changed to match page background */
        padding: 10px;
        border-radius: 0 0 12px 12px;
        z-index: 10;
    }

    .header nav.active {
        display: flex; /* Show navigation links when active */
    }

    .burger-menu {
        display: block; /* Show burger menu icon */
        cursor: pointer;
        font-size: 24px;
        color: #ffffff;
        position: absolute;
        top: 15px; /* Adjust as needed */
        right: 20px; /* Adjust as needed */
    }

    .burger-menu.active {
        color: var(--primary-color);
    }

    .table th, .table td {
        font-size: 0.75rem;
    }

    .headline-container {
        min-height: 110px; /* Reduced from 130px */
        padding: 1.2rem 0.8rem;
        background-size: cover;
    }
    
    .headline-container h1 {
        font-size: 1.5rem; /* Increased from 1.4rem for better visibility on mobile */
    }
    
    .headline-container p {
        font-size: 0.9rem;
    }
}

@media (max-width: 500px) {
    .burger-menu {
        order: 2; /* Ensure burger menu is on the right */
        margin-left: auto; /* Push it to the right */
    }

    .theme-toggle {
        order: 1; /* Ensure theme toggle is next to the burger menu */
        margin-left: 10px; /* Move closer to the burger menu */
        margin-right: 10px;
    }

    .header {
        justify-content: flex-end; /* Align all header items to the right */
    }
}

.hidden {
    display: none !important;
}

tr.showing {
    display: table-row !important;
    animation: fadeInRow 0.5s ease-in-out forwards;
}

@keyframes fadeInRow {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update FAQ item hover styles to remove any movement */
.faq-item {
    margin-bottom: 12px;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 12px;
    transition: border-color 0.2s ease; /* Remove border-width transition */
    position: relative; /* Add position relative */
    box-sizing: border-box; /* Ensure padding is included in element's total width/height */
    cursor: pointer; /* Add pointer cursor for the entire FAQ item, including the border */
    animation: fadeIn 1.8s ease-in-out;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background-color: transparent;
    border-color: var(--primary-color); /* Change border color on hover */
    border-width: 1px; /* Keep border width consistent */
    cursor: pointer; /* Ensure pointer cursor remains on hover */
}

.light .faq-item {
    border: 1px solid #bdbdbd; /* Darker border for better visibility */
}

.light .faq-item:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    border-width: 1px; /* Keep border width consistent */
}

/* Reduce padding for accordion buttons */
.accordion {
    padding: 12px 15px; /* Reduced top/bottom padding from 15px to 12px */
    margin-bottom: 3px; /* Reduced from 5px */
    color: #ffffff;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 12px; /* Increased from 8px */
    font-size: 1rem;
    font-weight: bold;
    background-color: transparent; /* Remove background color */
    position: relative; /* For arrow positioning */
}

.accordion:after {
    content: '\25BE'; /* Unicode character for down arrow */
    font-size: 1.4em; /* Make the arrow bigger */
    color: var(--primary-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-weight: bold; /* Make the arrow bolder */
}

.accordion.active:after {
    content: '\25B4'; /* Unicode character for up arrow */
    transform: translateY(-50%) rotate(180deg);
}

.accordion:hover {
    background-color: transparent; /* Remove hover effect */
}

.accordion.active {
    background-color: transparent; /* Remove active background */
}

/* Adjust panel styles for smoother and gentler open/close animation */
.panel {
    padding: 0 15px; /* Remove top/bottom padding initially */
    background-color: transparent;
    display: block; /* Ensure it's block for animation */
    overflow: hidden;
    border-radius: 10px; /* Rounded corners */
    margin-top: 0;
    color: #cccccc;
    font-size: 1rem;
    border-top: 1px solid #2d2d2d;
    max-height: 0; /* Initially collapsed */
    opacity: 0; /* Initially hidden */
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease; /* Smooth and gentle animation */
}

.panel.show {
    max-height: 500px; /* Set a reasonable max height for expansion */
    opacity: 1; /* Fully visible */
    padding: 12px 15px; /* Restore padding when expanded */
}

.light .panel {
    color: #333333;
    border-top: 1px solid #bdbdbd; /* Darker border for better visibility */
}

.burger-menu {
    display: none; /* Hidden by default */
    font-size: 32px; /* Increased from 24px */
    cursor: pointer;
    color: #ffffff;
    z-index: 100;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative; /* Remove absolute positioning */
    margin-left: auto; /* Push to the right */
    border: 1px solid var(--primary-color);
    border-radius: 16px; /* Increased from 10px */
    background-color: transparent; /* Make the button transparent */
}

.burger-menu:active {
    transform: scale(0.9); /* Add press animation */
}

.burger-menu.active {
    color: var(--primary-color);
    transform: rotate(90deg); /* Rotate when menu is open */
    background-color: rgba(255, 108, 192, 0.2); /* Highlight with primary color when active */
    border-color: var(--primary-color); /* Ensure border is visible */
}

/* Mobile menu styles */
.burger-menu {
    display: none;
    font-size: 32px; /* Increased from 24px */
    cursor: pointer;
    color: #ffffff;
    z-index: 100;
    transition: transform 0.3s ease, color 0.3s ease;
    background-color: transparent; /* Make the button transparent */
}

.burger-menu:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Add a subtle hover effect */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.burger-menu:active {
    transform: scale(0.9); /* Add press animation */
}

.burger-menu.active {
    color: var(--primary-color);
    transform: rotate(90deg); /* Rotate when menu is open */
    background-color: rgba(255, 108, 192, 0.2); /* Highlight with primary color when active */
    border-color: var(--primary-color); /* Ensure border is visible */
}

.light .burger-menu {
    color: var(--primary-color); /* Pink color for burger menu in light mode */
}

.light .header nav.active {
    background-color: var(--bg-color); /* Invert to light background color when active in light mode */
    color: var(--text-color);
}

.burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px; /* Adjust width to 20px */
    height: 20px; /* Adjust height to 20px */
}

.burger-icon span {
    display: block;
    height: 3px; /* Adjust bar height for better proportions */
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-menu.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
        position: static; /* Ensure it stays in the flex flow */
        top: auto;
        right: auto;
        width: 40px; /* Set width */
        height: 40px; /* Set height to match width */
        padding: 0; /* Remove internal padding */
        border: 1px solid var(--primary-color);
        border-radius: 16px; /* Increased from 10px */
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2; /* Ensure burger menu is next to the theme toggle */
        margin: 0; /* Remove extra margins */
        background-color: transparent; /* Make the button transparent */
        color: var(--primary-color); /* Ensure the icon is visible */
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .burger-menu:hover {
        background-color: rgba(255, 255, 255, 0.1); /* Add a subtle hover effect */
        transform: scale(1.05); /* Slightly enlarge on hover */
    }

    .header nav {
        display: none;
        position: fixed;
        top: 100px; /* Increased from 80px to move menu down */
        left: 0;
        right: 0;
        background-color: rgba(6, 7, 11, 0.95); /* Darker semi-transparent background */
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 99;
        flex-direction: column;
        gap: 15px;
        align-items: center; /* Center align menu elements */
        text-align: center; /* Center text inside menu buttons */
    }

    .header nav.active {
        display: flex;
    }

    .header nav button {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 10px; /* Increased from 4px */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Add subtle divider */
        cursor: pointer; /* Ensure pointer cursor on mobile too */
    }

    .header nav button:last-child {
        border-bottom: none; /* Remove border from last item */
    }

    .header nav button:hover {
        background-color: transparent; /* Remove hover background in mobile view */
    }

    .burger-menu {
        order: 2; /* Ensure burger menu is on the right */
        margin-left: auto; /* Push it to the right */
    }

    .theme-toggle {
        order: 1; /* Ensure theme toggle is next to the burger menu */
        margin-right: 30px; /* Align it to the right */
    }

    .header {
        justify-content: space-between; /* Keep logo on the left and controls on the right */
        gap: 5px; /* Reduce gap between elements */
    }

    .theme-toggle {
        order: 1; /* Ensure theme toggle is next to the burger menu */
        margin: 0; /* Remove extra margins */
    }

    .burger-menu {
        order: 2; /* Ensure burger menu is next to the theme toggle */
        margin: 0; /* Remove extra margins */
    }
}

/* Mobile menu improvements */
@media (max-width: 768px) {
    /* ...existing code... */

    .header nav {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px;
        margin: 0;
        background-color: rgba(6, 7, 11, 0.95); /* Darker semi-transparent background */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 999; /* Increased z-index to ensure it's above all content */
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
        overflow-y: auto; /* Allow scrolling if menu is too tall */
        max-height: calc(100vh - 120px); /* Prevent menu from going off-screen */
    }

    .header nav button {
        width: 100%;
        max-width: 90%; /* Slightly narrower than container for visual appeal */
        text-align: center;
        padding: 12px;
        margin: 0 auto; /* Center buttons in container */
        border-radius: 10px; /* Increased from 4px */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.2s ease;
        cursor: pointer; /* Ensure pointer cursor on mobile too */
    }

    .light .header nav {
        background-color: rgba(255, 255, 255, 0.98); /* Nearly opaque white background */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Lighter shadow for light mode */
    }

    .light .header nav button {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* Additional refinements for very small screens */
@media (max-width: 480px) {
    .header nav {
        padding: 15px 10px; /* Reduce padding on smaller screens */
    }

    .header nav button {
        padding: 10px;
        font-size: 0.95rem; /* Slightly smaller font */
    }
}

/* Light mode theme fixes */
.light {
    --bg-color: #ffffff; /* Light background */
    --text-color: #1a202c; /* Dark text for readability */
    --table-bg: #f8f9fa; /* Light table background */
    --table-border: #e0e0e0; /* Light table border */
    --table-text: #1a202c; /* Dark text for table */
    --menu-text: #1a202c; /* Dark text for menu */
    --faq-text: #1a202c; /* Dark text for FAQ */
    --menu-button-bg: #ffffff; /* Light background for menu buttons */
    --menu-button-text: #1a202c; /* Dark text for menu buttons */
    --menu-button-border: #1a202c; /* Dark border for menu buttons */
    --footer-bg: #f5f5f5; /* Slightly darker footer background */
    --footer-text: #1a202c; /* Dark footer text */
    --headline-text: #f9f9f9; /* Light headline text for contrast against the background image */
    --accordion-text: #1a202c; /* Dark text for accordions */
    --panel-text: #333333; /* Dark text for panel content */
}

/* Table styles for light mode */
.light .table {
    color: #1a202c;
    background-color: #fffffff3;
    border-color: #e0e0e0;
}

.light .table th {
    background-color: #ffffff; /* Darker background for table header for better contrast */
    color: #1a202c;
    border-bottom: 1px solid #bdbdbd; /* Changed from 2px to 1px to match other borders */
}

.light .table td {
    border-color: #bdbdbd; /* Darker border for better visibility */
}

.light .table-wrapper {
    background-color: #ffffff;
    /* Added thin border for light mode */
    border: 1px solid #bdbdbd; /* Darker border for better visibility in light mode */
}

.light .container {
    background-color: #ffffff;
}

.light .footer {
    background-color: var(--footer-bg);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

/* FAQ styles for light mode */
.light .accordion {
    color: #1a202c;
}

.light .panel {
    color: #333333;
    border-top: 1px solid #bdbdbd; /* Darker border for better visibility */
}

.light .accordion:after {
    color: var(--primary-color); /* Keep the arrow color consistent */
}

/* Header and navigation styles for light mode */
.light .header nav button {
    color: #1a202c;
}

.light .burger-icon span {
    background-color: var(--primary-color); /* Keep the burger icon color consistent */
}

/* Fix for button and star colors in light mode */
.light .table td .star {
    color: var(--primary-color); /* Keep star icon color consistent */
}

.light h2, .light h3 {
    color: var(--primary-color); /* Keep heading color consistent */
}

/* Update theme toggle button styles for consistent centering across devices */
.theme-toggle {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
    
    /* Improve centering for all devices */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Remove default padding */
    line-height: 1; /* Reset line height */
    text-align: center; /* Center text */
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--primary-hover);
}

/* Add iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    .theme-toggle {
        /* Safari/iOS specific adjustments */
        padding-bottom: 1px; /* Slight adjustment for iOS rendering */
        line-height: 40px; /* Match height for vertical centering in Safari */
    }
}

/* Ensure theme toggle displays properly on smaller screens */
@media (max-width: 768px) {
    .theme-toggle {
        /* Keep same styling on mobile */
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Add standardized section spacing */
section {
    margin-top: 4rem; /* Add consistent top margin */
    margin-bottom: 4rem; /* Add consistent bottom margin */
    animation: fadeIn 1.5s ease-in-out;
}

/* Adjust spacing for sections with banners */
section + #banners {
    margin-top: 5rem; /* Increased spacing when banners follow another section */
}

#banners + section {
    margin-top: 3rem; /* Add spacing before sections that follow banners */
}

/* Update mobile/tablet breakpoint from 768px to 1024px */
@media (max-width: 1024px) {
    /* ...existing mobile styles... */
    
    .table td:first-child {
        white-space: nowrap;
        overflow: visible;
        padding-right: 8px;
    }

    .external-link-icon {
        position: relative;
        display: inline-block;
        opacity: 1;
        width: 14px; /* Smaller icon size for mobile/tablet */
        height: 14px;
        transform: translateY(3px);
        margin-left: 16px; /* Increased from 12px to move the icon slightly to the right */
        right: auto;
    }

    .external-link-icon img {
        width: 14px;
        height: 14px;
    }

    /* Adjust table font size for better readability on tablets */
    .table th, .table td {
        font-size: 0.875rem; /* Slightly larger than mobile but smaller than desktop */
        padding-top: 16px; /* Increased from 12px */
        padding-bottom: 16px; /* Increased from 12px */
    }

    /* Ensure table scrolls horizontally on tablets if needed */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Hide Owl Carousel navigation arrows on mobile and tablet */
    .owl-nav {
        display: none !important; /* Hide navigation arrows with higher specificity */
    }
}

/* Add verified label styles */
.verified-label {
    color: #34D399;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.verified-label img {
    margin-right: 4px;
    width: 16px;
    height: 16px;
}

/* Footer social media styles */
.social-links-container {
    margin: 1.5rem 0;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 108, 192, 0.4);
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease; /* Removed filter transition */
}

.social-link:hover img {
    transform: scale(1.1); /* Keep the scaling effect */
    filter: none; /* Remove color change */
}

.light .social-link:hover img {
    filter: none; /* Remove color change */
}

/* Responsive adjustments for social icons */
@media (max-width: 480px) {
    .social-icons {
        gap: 1rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link img {
        width: 20px;
        height: 20px;
    }
}

/* Add fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll-triggered animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure FAQ items have sequential delays */
.faq-item.scroll-fade {
    transition-delay: calc(var(--scroll-index, 0) * 0.1s);
}

/* Fallback for reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .scroll-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Improve scroll-triggered animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure FAQ items don't remain hidden */
.faq-item.scroll-fade {
    opacity: 0.01; /* Set very slight opacity instead of fully hidden */
    transition-delay: calc(var(--scroll-index, 0) * 0.1s);
}

/* Fallback to ensure no content remains hidden */
@media (prefers-reduced-motion: reduce) {
    .scroll-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Add scroll-triggered animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add sequential delays for FAQ items */
.faq-item.scroll-fade {
    transition-delay: calc(var(--scroll-index, 0) * 0.1s);
}

.owl-carousel .item img {
    width: 100%;
    height: auto;
}

#banners {
    text-align: center;
    margin-top: 2.5rem; /* Add spacing above the banner section */
    margin-bottom: 3rem; /* Add spacing below the banner section */
}

.owl-carousel {
    padding-top: 0.5rem; /* Add subtle spacing within the carousel container */
    padding-bottom: 1rem; /* Add space below the carousel content */
}

/* Adjust spacing after sections when followed by the banner */
section + #banners {
    margin-top: 5rem; /* Increased space when banners follow another section */
}

/* Adjust spacing before sections that come after the banner */
#banners + section {
    margin-top: 3rem; /* Add space before sections that follow banners */
}

/* Simplified banner styles for Owl Carousel */
.owl-carousel .banner-item {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    text-align: left;
    border-radius: 16px; /* Use the same border-radius as headline-container */
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.7s ease-in-out !important;
}

/* Gentler Owl Carousel animations */
.owl-carousel .owl-stage {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1.0) !important; /* More gentle easing */
    transition-duration: 800ms !important; /* Longer transition duration */
}

.owl-carousel.owl-drag .owl-item {
    transition: opacity 300ms ease, transform 300ms ease; /* Add opacity transition for smoother appearance */
}

/* Add subtle fade effect to non-active items */
.owl-carousel .owl-item:not(.active) {
    opacity: 0.6;
    transform: scale(0.95);
}

/* Active item full opacity with gentle transition */
.owl-carousel .owl-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Improve dot transitions */
.owl-dots .owl-dot span {
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0) !important; /* Same easing as carousel */
}

/* Improve navigation button transitions */
.owl-nav button {
    transition: background-color 0.4s ease, transform 0.3s ease !important;
}

.owl-nav button:hover {
    transform: scale(1.1);
}

/* Add overlay for better text visibility */
.owl-carousel .banner-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.owl-carousel .banner-content {
    margin-left: 30px; /* Consistent left margin */
    padding: 24px; /* Standardized padding */
    max-width: 65%;
    position: relative;
    z-index: 2; /* Place above the overlay */
    display: flex;
    flex-direction: column;
    gap: 12px; /* Consistent spacing between elements */
}

.owl-carousel .banner-content h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: bold;
    color: #ffffff;
}

.owl-carousel .banner-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    color: #ffffff;
}

.owl-carousel .banner-content button {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: 8px; /* Consistent spacing above button */
    align-self: flex-start; /* Align all buttons to the left */
    width: 120px; /* Fixed width for all buttons */
    text-align: center;
}

/* Responsive adjustments for banners */
@media (max-width: 1024px) {
    .owl-carousel .banner-content {
        max-width: 80%;
        margin-left: 25px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .owl-carousel .banner-item {
        height: 200px;
    }
    
    .owl-carousel .banner-content {
        max-width: 80%;
        margin-left: 20px;
        padding: 18px;
        gap: 8px; /* Reduce gap for smaller screens */
    }
    
    .owl-carousel .banner-content h3 {
        font-size: 1.3rem;
    }
    
    .owl-carousel .banner-content button {
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .owl-carousel .banner-item {
        height: 180px;
    }
    
    .owl-carousel .banner-content {
        max-width: 85%;
        margin-left: 15px;
        padding: 15px;
        gap: 6px; /* Further reduce gap for mobile */
    }
    
    .owl-carousel .banner-content h3 {
        font-size: 1.2rem;
    }
    
    .owl-carousel .banner-content p {
        font-size: 0.9rem;
    }
    
    .owl-carousel .banner-content button {
        padding: 6px 16px;
        font-size: 0.8rem;
        margin-top: 4px;
        width: 100px; /* Smaller width for mobile */
    }
}

/* Hover effect for desktop */
@media (min-width: 1024px) {
    .owl-carousel .banner-item:hover {
        transform: scale(1.03); /* Subtle scale instead of background-size change */
    }
}

/* Simplified navigation styles */
.owl-nav button {
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button:hover {
    background-color: var(--primary-color) !important;
}

.owl-nav .owl-prev {
    left: 10px;
}

.owl-nav .owl-next {
    right: 10px;
}

.owl-dots {
    margin-top: 18px; /* Increased from 15px for better spacing */
    display: flex;
    justify-content: center;
    gap: 8px; /* Add gap between dots */
}

.owl-dots .owl-dot {
    outline: none; /* Remove focus outline */
    transition: transform 0.3s ease;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0; /* Remove default margins */
    background: rgba(255, 255, 255, 0.3) !important; /* More subtle in dark mode */
    transition: all 0.3s ease;
    border-radius: 50%;
    display: block;
}

.owl-dots .owl-dot.active span {
    width: 12px; /* Slightly larger active dot */
    height: 12px;
    background: var(--primary-color) !important;
    box-shadow: 0 0 6px rgba(255, 108, 192, 0.5); /* Subtle glow effect */
}

.owl-dots .owl-dot:hover span {
    background: rgba(255, 108, 192, 0.5) !important; /* Hint of primary color on hover */
}

/* Light mode adjustments for dots */
.light .owl-dots .owl-dot span {
    background: rgba(26, 32, 44, 0.2) !important; /* Darker dots for light mode */
}

.light .owl-dots .owl-dot.active span {
    background: var(--primary-color) !important; /* Keep same active color */
}

.light .owl-dots .owl-dot:hover span {
    background: rgba(255, 108, 192, 0.5) !important; /* Same hover effect in light mode */
}

/* Add welcome award text styles */
.welcome-award-text {
    color: var(--primary-color); /* Match the H2 color */
}