.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(240, 240, 240, 0.8), rgba(0, 0, 0, 0.5));
    padding: 10px 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #202d42;
    border-radius: 4px;
}

 /* Animations and Effects */
 .mobile-menu-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    .desktop-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .desktop-menu.active {
        display: block;
    }
    .desktop-menu .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .desktop-menu .nav-links a {
        display: block;
        padding: 0.5rem;
        width: 100%;
        text-align: center;
    }
    .contact-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}
.image-placeholder {
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mobile-menu-items.active {
    display: block;
}

.mobile-menu-items a {
    display: block;
    padding: 0.75rem 1rem;
    color: #1a365d;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.mobile-menu-items a:hover {
    background-color: #f3f4f6;
    color: #3182ce;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
    .desktop-menu {
        display: flex;
    }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes shine {
    0% { background-position: -100px; }
    100% { background-position: 500px; }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 55%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #202d42;
    border-radius: 4px;
}

/* Product Cards */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product-card .overlay-text {
    transform: translateZ(20px);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(49, 130, 206, 0.1));
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

/* Navigation */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3182ce, #2c5282);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: translateX(0);
}

/* Swiper Customization 
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #3182ce;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #3182ce;
    color: white;
}*/

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    .desktop-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .desktop-menu.active {
        display: block;
    }
    .desktop-menu .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .desktop-menu .nav-links a {
        display: block;
        padding: 0.5rem;
        width: 100%;
        text-align: center;
    }
    .contact-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* 3D Transform on Hover */
.transform-3d {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.transform-3d:hover {
    transform: perspective(1000px) rotateY(10deg) translateZ(20px);
}

/* Logo 
.navbar .logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}*/

/* Navbar Links 
.navbar .nav-links {
    display: flex;
    gap: 20px;
}*/

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
}

/* Dropdown Indicator */
.navbar .nav-links a::after {
    content: " ▼";
    font-size: 0.8rem;
    display: none;
}

.navbar .nav-links a.dropdown::after {
    display: inline-block;
}

.navbar .nav-links a:hover {
    color: #00aaff;
}

/* Contact Us Button */
.navbar .contact-btn {
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.navbar .contact-btn:hover {
    background: white;
    color: black;
}
.product-section {
    text-align: center;
    padding: 20px;
}

.product-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-container {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 20px;
}

.product-container::-webkit-scrollbar {
    height: 8px;
}

.product-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.product-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product-card {
    flex: 0 0 calc(33.33% - 20px); /* Show 3 items by default */
    min-width: calc(33.33% - 20px);
    background: #fff;
}

.product-card img {
    width: 100%;

}
.product-card:hover img {
    filter: brightness(35%); /* Darken the image */
}

.product-card .overlay-text {
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .overlay-text {
    opacity: 2; /* Show text on hover */
}
 /* Custom Scrollbar */
 ::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #3B82F6;
    border-radius: 4px;
}

/* Enhanced Responsive Navigation */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    .desktop-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .desktop-menu.active {
        display: block;
    }
    .desktop-menu .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .desktop-menu .nav-links a {
        display: block;
        padding: 0.5rem;
        width: 100%;
        text-align: center;
    }
    .contact-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Responsive Banner */
@media (max-width: 640px) {
    #home .home-height {
        height: 400px;
    }
    #home h2 {
        font-size: 1.875rem;
    }
    #home p {
        font-size: 1rem;
    }
}

/* Responsive Testimonials Section */
@media (max-width: 640px) {
    .testimonials {
        flex-direction: column;
        align-items: center;
    }
    .testimonial {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
}
/* Responsive Services Grid */
@media (max-width: 640px) {
    #services .w-64 {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive Product Gallery */
@media (max-width: 640px) {
    .product-card {
        height: 250px;
    }
    .overlay-text {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer .grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    footer .flex {
        justify-content: center;
    }
}

.image-placeholder {
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: bold;
    transition: all 0.3s ease;
}
.image-placeholder:hover {
    background-color: #d1d1d1;
    transform: scale(1.02);
}

/* Responsive Navigation Links */
.nav-links {
    display: flex;
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}
.mobile-menu-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu-items.active {
    display: block;
}

.mobile-menu-items a {
    display: block;
    padding: 0.75rem 1rem;
    color: #1a365d;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.mobile-menu-items a:hover {
    background-color: #f3f4f6;
    color: #3182ce;
}
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 55%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #202d42;
    border-radius: 4px;
}

/* Product Cards */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product-card .overlay-text {
    transform: translateZ(20px);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(49, 130, 206, 0.1));
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

/* Navigation */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3182ce, #2c5282);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: translateX(0);
}

/* Swiper Customization 
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #3182ce;
    transition: all 0.3s ease;
}*/

/*
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #3182ce;
    color: white;
}*/

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    .desktop-menu {
        display: none;
    }
}

/* 3D Transform on Hover */
.transform-3d {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.transform-3d:hover {
    transform: perspective(1000px) rotateY(10deg) translateZ(20px);
}

