* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    background: #0b0b0b;    
    color: white;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    height: auto;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 11, 11, 0.9);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 50px;
    background-color: rgba(11, 11, 11, 0.95);
    box-shadow: 0 5px 20px rgba(199, 231, 9, 0.1);
}

.logo img {
    height: 75px;
    transform: scale(2);
    transform-origin: left center;
    transition: all 0.5s ease;
}

header.scrolled .logo img {
    transform: scale(1.5) translateX(10px);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #c7e709;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #c7e709;
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) !important;
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Menu Page Specific Styles */
.menu-container {
    padding: 180px 50px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 80px;
}

.menu-section h2 {
    color: #c7e709;
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #c7e709;
}

/* Menu Slider */
.menu-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.menu-slide {
    padding: 0 15px;
    outline: none;
}

.menu-slide-inner {
    position: relative;
    padding-bottom: 50%;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(199, 231, 9, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.menu-slide:hover .menu-slide-inner {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(199, 231, 9, 0.2);
}

.menu-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Navigation */
.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before, 
.slick-next:before {
    font-size: 40px;
    color: #c7e709;
    opacity: 0.8;
}

.slick-prev:hover:before, 
.slick-next:hover:before {
    opacity: 1;
}

/* Slider Dots */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #c7e709;
    opacity: 1;
}

/* Full Menu Download - Desktop Version */
.download-section {
    text-align: center;
    margin-top: 60px;
}

.download-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #c7e709;
}

.download-btn {
    display: inline-block;
    background-color: #c7e709;
    color: #000;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #b5d300;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(199, 231, 9, 0.3);
}

.download-btn i {
    margin-right: 8px;
}

/* Mobile Notice - Single Download Section for Mobile */
.mobile-menu-notice {
    display: none;
    text-align: center;
    padding: 25px;
    background: rgba(199, 231, 9, 0.1);
    border-radius: 10px;
    margin: 30px auto;
    max-width: 500px;
    border: 1px solid rgba(199, 231, 9, 0.3);
}

.mobile-menu-notice p {
    margin-bottom: 15px;
    font-size: 16px;
}

.or-divider {
    margin: 15px 0;
    position: relative;
    font-weight: bold;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    height: 1px;
    background: rgba(255,255,255,0.3);
    width: 40%;
    top: 50%;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

/* Footer Styles */
.site-footer {
    background-color: #0b0b0b;
    color: white;
    padding: 60px 0 20px;
    border-top: 2px solid #c7e709;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
}

.footer-section h3 {
    color: #c7e709;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #c7e709;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #c7e709;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #c7e709;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Mobile Menu Active State */
.nav-active {
    transform: translateX(0%) !important;
}

/* Toggle class for hamburger animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .menu-slide-inner {
        padding-bottom: 56.25%;
    }
}

@media (max-width: 992px) {
    .slick-prev {
        left: -30px;
    }
    
    .slick-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 50px;
        transform: scale(1.5) !important;
        transform-origin: left center !important;
    }
    
    header.scrolled .logo img {
        transform: scale(1.2) translateX(10px) !important;
    }
    
    /* Mobile menu styles */
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 25px;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background-color: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 1000;
    }
    
    nav a {
        margin: 15px 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(199, 231, 9, 0.2);
    }
    
    /* Hide menu slider on mobile */
    .menu-slider {
        display: none !important;
    }
    
    /* Show mobile notice as the only download option */
    .mobile-menu-notice {
        display: block;
        margin: 30px auto;
    }
    
    /* Hide desktop download section */
    .download-section {
        display: none;
    }
    
    /* Adjust menu section spacing */
    .menu-section {
        padding-bottom: 20px;
        margin-bottom: 0;
    }
    
    .menu-section h2 {
        margin-bottom: 10px;
    }
    
    .menu-section h2::after {
        display: none;
    }
    
    /* Hide quicklinks in footer on mobile */
    .footer-section:first-child {
        display: none;
    }
    
    /* Hide paati image in footer on mobile */
    .footer-section:last-child {
        display: none;
    }
    
    .menu-container {
        padding: 150px 20px 50px;
    }
    
    .menu-section h2 {
        font-size: 28px;
    }
    
    .menu-slide-inner {
        padding-bottom: 75%;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .mobile-menu-notice {
        display: none;
    }
    
    .download-section {
        display: block;
    }
}

@media (max-width: 576px) {
    .menu-slide-inner {
        padding-bottom: 100%;
    }
    
    .slick-prev, 
    .slick-next {
        display: none !important;
    }
    
    nav a {
        font-size: 16px;
    }
    
    .mobile-menu-notice {
        padding: 20px;
    }
    
    .download-btn {
        width: 100%;
        padding: 15px;
    }
}
.site-by {
  display: flex;
  align-items: center;
  justify-content: center; /* or 'flex-start' depending on layout */
  gap: 10px;
  font-size: 16px;
  color: #ffffff; /* change to match your footer text color */
  margin-top: 20px;
}

.site-by p {
  margin: 0;
  font-weight: 500;
}

.site-by a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.company-icon {
  height: 24px; /* adjust as needed */
  width: auto;
  transition: transform 0.3s ease;
}

.company-icon:hover {
  transform: scale(1.1);
}
