@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* WhatsApp Button + Animation */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 80px;
    height: 80px;
    background-image: url('https://dummyticketsbooking.com/wp-content/uploads/2025/07/Whatsapp-icon.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    filter: invert(0.9);
}

@keyframes shake {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        transform: translate(-2px, 0) rotate(-5deg);
    }

    40% {
        transform: translate(2px, 0) rotate(5deg);
    }

    60% {
        transform: translate(-2px, 0) rotate(-5deg);
    }

    80% {
        transform: translate(2px, 0) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.whatsapp-float:hover {
    animation: shake 0.6s ease;
}

/* --- Footer Styling --- */
.site-footer {
    background-color: var(--accent-blue);
    color: var(--text-muted);
    padding: 40px 20px;
    border-top: 1px solid var(--card-border-dark);
    box-shadow: 0 -2px 10px var(--shadow-dark-medium);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.about-us p {
    font-size: 0.95em;
    line-height: 1.8;
    color: var(--text-muted);
}

.site-footer h3 {
    color: var(--text-light);
    font-size: 1.2em;
    margin-bottom: 18px;
    position: relative;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-cta);
    border-radius: 2px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95em;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.site-footer ul li a:hover {
    color: var(--primary-cta);
    transform: translateX(5px);
}

.site-footer ul li a i,
.site-footer ul li address i {
    margin-right: 8px;
    color: var(--primary-cta);
    font-size: 1.1em;
}

.contact-info address {
    font-style: normal;
    font-size: 0.95em;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border-dark);
    font-size: 0.85em;
    color: var(--text-muted);
}

.Powered {
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.Powered:hover {
    color: var(--primary-cta);
}

@media (max-width: 992px) {
    .footer-column {
        min-width: 200px;
    }

    .footer-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-column {
        width: 100%;
        min-width: unset;
        text-align: left;
        margin-bottom: 0;
    }

    .site-footer {
        padding: 30px 15px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .site-footer h3 {
        font-size: 1.1em;
        margin-bottom: 12px;
    }

    .site-footer h3::after {
        width: 30px;
        bottom: -3px;
    }

    .site-footer ul li a,
    .about-us p,
    .contact-info address {
        font-size: 0.9em;
    }

    .footer-bottom {
        font-size: 0.8em;
        margin-top: 30px;
    }
}

/*-------------------header */
/* ========================================
   Clean New Header CSS -
   ======================================== */

.suraj-main-header {
    background-color: var(--dark-bg-color);
    /* Using theme variable */
    color: var(--text-light);
    /* Using theme variable */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: var(--shadow-dark-light) 0px 4px 12px;
    /* Subtle shadow */
}

.suraj-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* Increased padding for better spacing */
}

.suraj-logo img {
    height: 45px;
    /* Slightly larger logo */
    transition: transform var(--transition-speed);
}

.suraj-logo img:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.suraj-main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.suraj-nav-links {
    display: flex;
    gap: 1.8rem;
    /* Adjusted gap */
    list-style: none;
    margin: 0;
    padding: 0;
}

.suraj-nav-links li {
    position: relative;
}

.suraj-nav-links a {
    color: var(--text-light);
    /* Using theme variable */
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    /* Added padding for clickable area */
    transition: color var(--transition-speed), border-bottom var(--transition-speed);
}

.suraj-nav-links a:hover {
    color: var(--primary-cta);
    /* Hover color from theme */
    border-bottom: 2px solid var(--primary-cta);
    /* Underline effect on hover */
}

.suraj-has-dropdown>a i {
    margin-left: 0.5rem;
    transition: transform var(--transition-speed);
}

.suraj-has-dropdown:hover>a i {
    transform: rotate(180deg);
    /* Rotate arrow on hover */
}

.suraj-dropdown-menu {
    display: none;
    position: absolute;
    top: 120%;
    /* Position directly at the bottom of the header */
    left: 0;
    background-color: var(--dark-bg-color);
    /* Using theme variable */
    padding: 1.5rem;
    /* Increased padding */
    border-radius: var(--border-radius);
    /* All corners will be rounded using your theme variable */
    box-shadow: var(--shadow-dark-medium) 0px 10px 25px;
    /* Stronger shadow */
    gap: 2.5rem;
    /* Adjusted gap */
    z-index: 1000;
    min-width: 400px;
    /* Minimum width for dropdown */
    border: 1px solid var(--card-border-dark);
    /* Subtle border */
    transform: translateY(0);
    /* Removed initial offset for direct start */
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);
}

.suraj-has-dropdown:hover .suraj-dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Animate to original position */
}

.suraj-dropdown-col h4 {
    color: var(--primary-cta);
    /* Using primary CTA for headings */
    margin-bottom: 0.8rem;
    /* Adjusted margin */
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.suraj-dropdown-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.suraj-dropdown-col li {
    margin: 0.6rem 0;
    /* Adjusted margin */
}

.suraj-dropdown-col a {
    color: var(--text-muted);
    /* Using text muted for sub-links */
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    /* Adjusted gap */
    transition: color var(--transition-speed), transform var(--transition-speed);
}

.suraj-dropdown-col a:hover {
    color: var(--text-light);
    /* Lighter text on hover */
    transform: translateX(5px);
    /* Slight slide effect */
}

/* --- ICON COLOR CHANGE --- */
.suraj-dropdown-col a i {
    color: var(--text-light);
    /* Icons are now white */
}

/* --- END ICON COLOR CHANGE --- */

.suraj-hamburger-menu {
    display: none;
    font-size: 1.8rem;
    /* Larger hamburger icon */
    background: none;
    color: var(--primary-cta);
    /* Primary CTA color for icon */
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed);
}

.suraj-hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.suraj-mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--dark-bg-color);
    /* Using theme variable */
    z-index: 1001;
    padding: 2rem;
    overflow-y: auto;
    animation: fadeInSlide var(--transition-speed) forwards;
    /* Entry animation */
}

.suraj-mobile-menu-overlay.suraj-open {
    display: block;
}

.suraj-close-menu {
    background: none;
    border: none;
    font-size: 2.5rem;
    /* Larger close icon */
    color: var(--error-color);
    /* Error color for close button */
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-speed);
}

.suraj-close-menu:hover {
    transform: rotate(90deg);
    /* Rotate on hover */
}

.suraj-mobile-nav-links {
    list-style: none;
    padding: 0;
}

.suraj-mobile-nav-links li {
    margin-bottom: 1.2rem;
    /* Adjusted margin */
    border-bottom: 1px solid var(--card-border-dark);
    /* Separator for links */
    padding-bottom: 0.8rem;
}

.suraj-mobile-nav-links li:last-child {
    border-bottom: none;
}

.suraj-mobile-nav-links a {
    color: var(--text-light);
    /* Using theme variable */
    text-decoration: none;
    font-size: 1.2rem;
    /* Larger font size for mobile */
    display: block;
    /* Make links block level */
    padding: 0.5rem 0;
    transition: color var(--transition-speed);
}

.suraj-mobile-nav-links a:hover {
    color: var(--primary-cta);
    /* Highlight on hover */
}

/* Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    /* Adjusted breakpoint for tablets/smaller desktops */
    .suraj-nav-links {
        display: none;
    }

    .suraj-hamburger-menu {
        display: block;
    }

    .suraj-container {
        padding: 0 1rem;
        /* Slightly reduced padding on smaller screens */
    }
}

/* logo title setup */
/* Styling for Logo Title and Tagline */
.suraj-logo a {
    display: flex;
    /* Use flexbox for horizontal alignment */
    align-items: center;
    /* Vertically align items in the middle */
    gap: 10px;
    /* Add some space between the logo image and the text */
    text-decoration: none;
    /* Remove underline from the whole link */
}

.suraj-logo .logo-text-container {
    display: flex;
    flex-direction: column;
    /* Stack title and tagline vertically within this container */
    justify-content: center;
    /* Center the text vertically if needed */
}

/* Simplified selectors for logo text */
.suraj-logo .tittle {
    /* Changed from .suraj-logo .logo.tittle */
    color: #E94560;
    font-size: 18px;
    font-weight: 800;
    font-family: 'quicksands';
    white-space: nowrap;
}

.suraj-logo .tagline {
    /* Changed from .suraj-logo .logo.tagline */
    color: #FFD369;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.2;
}

.suraj-logo img {
    height: 70px;
    width: auto;
}

@media (max-width: 768px) {
    .suraj-logo img {
        height: 45px;
        /* Adjust for smaller screens if needed */
    }

    .suraj-logo .tittle {
        /* Changed from .suraj-logo .logo.tittle */
        color: #E94560;
        font-size: 14px;
        font-weight: 500;
        font-family: 'quicksands';
        white-space: nowrap;
    }

    .suraj-logo .tagline {
        /* Changed from .suraj-logo .logo.tagline */
        color: #FFD369;
        font-size: 10px;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        white-space: nowrap;
        line-height: 1.2;
    }
}

/* Active menu item color */
.suraj-nav-links a.active-link {
    color: #FF69B4;
    /* Pink color */
    border-bottom: 2px solid #FF69B4;
    /* Consistent underline */
}