
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    body {
    font-family: 'Barlow', sans-serif;
    background: #0b0b0b;    
    color: white;
    overflow-x: hidden;
    }

    /* 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; }
    }

    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 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 Styles */
    .hamburger {
        display: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-links {
        display: flex;
    }
    
    .nav-links.active {
        transform: translateX(0%) !important;
    }

    /* Contact Page Specific Styles */
    .contact-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 180px 80px 100px;
        min-height: 100vh;
    }

    .contact-info {
        flex: 1;
        padding-right: 40px;
        transform: translateX(-50px);
    }

    .contact-info h1 {
        font-size: 45px;
        margin-bottom: 30px;
        color: #c7e709;
    }

    .contact-info h2 {
        font-size: 28px;
        margin: 30px 0 15px;
        position: relative;
        display: inline-block;
    }

    .contact-info h2::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #c7e709;
    }

    .contact-details {
        margin-bottom: 30px;
    }

    .contact-details p {
        margin: 15px 0;
        font-size: 18px;
        display: flex;
        align-items: center;
    }

    .contact-details i {
        margin-right: 15px;
        color: #c7e709;
        font-size: 20px;
        min-width: 25px;
    }

    .business-hours {
        margin-top: 40px;
    }

    .hours-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
    }

    .hours-table tr {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hours-table tr:last-child {
        border-bottom: none;
    }

    .hours-table td {
        padding: 12px 0;
        font-size: 16px;
    }

    .hours-table td:first-child {
        font-weight: bold;
        color: #c7e709;
    }

    .map-container {
        flex: 1;
        height: 500px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(199, 231, 9, 0.2);
        transform: translateX(50px);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* 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 Styles */
    .social-icons {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
        align-items: center;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        transition: transform 0.3s ease;
    }

    .social-icon:hover {
        transform: scale(1.1);
    }
    
    .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;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
        .contact-container {
            padding: 150px 40px 80px;
        }
    }

    @media (max-width: 768px) {
        header {
            padding: 15px 20px;
            flex-direction: row;
            height: auto;
        }
        
        .hamburger {
            display: block;
        }
        
        .nav-links {
            position: absolute;
            right: 0;
            top: 80px;
            background-color: rgba(11, 11, 11, 0.95);
            flex-direction: column;
            align-items: center;
            width: 100%;
            padding: 20px 0;
            transform: translateX(100%);
            transition: transform 0.5s ease-in;
            z-index: 999;
        }
        
        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);
        }
        
        .logo img {
            transform: scale(1.5);
        }
        
        header.scrolled .logo img {
            transform: scale(1.2);
        }
        
        .contact-container {
            flex-direction: column;
            padding: 120px 20px 60px;
        }

        .contact-info {
            padding-right: 0;
            margin-bottom: 40px;
            transform: translateX(0);
        }

        .map-container {
            width: 100%;
            height: 400px;
            transform: translateX(0);
        }

        .footer-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
            width: 100%;
        }
        
        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-section ul li {
            justify-content: center;
        }
        
        /* Social Icons Mobile Styles */
        .footer-section .social-icons {
            justify-content: center;
            width: 100%;
            margin: 20px 0;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            margin: 0 10px;
        }
        
        /* Hide Quick Links on mobile */
        .footer-section:first-child {
            display: none;
        }
        
        /* Hide paati image on mobile */
        .footer-section:last-child img {
            display: none;
        }
    }

    @media (max-width: 480px) {
        /* Stack social icons vertically on very small screens */
        .footer-section .social-icons {
            align-items: center;
            gap: 15px;
        }
        
        .social-icon {
            margin: 5px 0;
        }
    }
 .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);
}
