
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
:root {
    --bg-primary: #ff004c;
    --bg-secondary: #1a1a1a;
    --accent: #ff004c;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
}

body {
    background: var(--bg-primary);
    background-image: url(bg6.jpg);
    min-height: 100vh;
    color: var(--text-primary);
    padding-top: 80px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    direction: ltr !important;
 }
 
 
 .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
 }
 
 .nav-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: auto; /* Push to right side */
    direction: ltr !important;
 }
 
 /* Navigation links container */
 .nav-links {
    display: flex;
    gap: 2.5rem;
    margin-right: 2rem; /* Space between links and language buttons */
    direction: ltr !important;
 }
 
 /* Individual nav links */
 .nav-link {
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap; /* Prevent text wrapping */
    direction: ltr !important;
 }

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;  /* Changed from 80% to 100% */
    height: 100vh;
    background: rgba(255, 0, 76, 0.95);  /* Semi-transparent background */
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 2rem;
    transition: 0.3s ease-in-out;
    z-index: 1000;
}


    .nav-content.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .language-select {
        margin: 1rem 0;
    }
}

.contact-card {
    background: rgb(255, 254, 254);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-item:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--bg-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.social-link:hover {
    color: var(--text-primary);
    background: var(--accent);
    transform: translateY(-5px);
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color:black;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hours-row:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.language-select {
    display: flex;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #ffe600;
}
img{
    width: 60px;
    height: 48px;
 }
 
/* Shine effect */
.contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.contact-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: var(--text-primary);
font-size: 1.5rem;
cursor: pointer;
}

@media (max-width: 768px) {
.navbar {
    padding: 1rem;
}

.mobile-menu-btn {
    display: block;
    color: white;
    z-index: 1001;
}

.nav-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;  /* Changed from 80% to 100% */
    height: 100vh;
    background: rgba(255, 0, 76, 0.95);  /* Semi-transparent background */
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 2rem;
    transition: 0.3s ease-in-out;
    z-index: 1000;
}

.nav-content.active {
    right: 0;
}

.nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.language-select {
    margin: 1rem 0;
}
}

