/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3498db;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    border: 2px solid #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #3498db;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(to right, #3498db, #9b59b6, #2980b9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo h1:hover {
    background: linear-gradient(to right, #2980b9, #8e44ad, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    transform: scale(1.03);
}

.nav-links ul {
    display: flex;
}

.nav-links ul li {
    margin-left: 30px;
}

.nav-links ul li a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links ul li a:hover {
    color: #3498db;
}

#openMenu, #closeMenu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Banner Styles */
.banner {
    height: 100vh;
    background-color: #1a2a3a; /* Fallback color that matches the image theme */
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* To account for fixed navbar */
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.3), rgba(155, 89, 182, 0.15) 50%, rgba(26, 42, 58, 0.1) 70%);
    z-index: 1;
}

.banner::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 380px;
    height: 380px;
    background: url('info/logo-fotor-bg-remover-20250904123326.png') no-repeat center center;
    background-size: contain;
    opacity: 1;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    mix-blend-mode: screen;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 240px; /* Increased space for the logo above */
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #74c0ff, #d292ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.3);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Products Section Styles */
.products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.products-container {
    display: flex;
    gap: 30px;
}

.categories {
    flex: 0 0 250px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.categories h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.search-container {
    display: flex;
    margin-bottom: 15px;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.search-input:focus {
    border-color: #3498db;
}

.search-button {
    background: linear-gradient(to right, #3498db, #9b59b6);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: linear-gradient(to right, #2980b9, #8e44ad);
    transform: scale(1.05);
}

.category-item {
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover {
    background-color: #f1f1f1;
    color: #3498db;
}

.category-item.active {
    background-color: #3498db;
    color: white;
}

.product-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, max-height 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card-header {
    background-color: #3498db;
    color: white;
    padding: 15px 20px;
}

.product-card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.product-card-body {
    padding: 20px;
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.highlight {
    background-color: rgba(52, 152, 219, 0.2);
    font-weight: bold;
    padding: 0 2px;
    border-radius: 2px;
    color: #2c3e50;
}

/* Search category headers */
.search-category-header {
    margin: 20px 0 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.search-category-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.search-category-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #3498db, #9b59b6);
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #777;
    font-style: italic;
}

.product-card.expanded .product-card-body {
    max-height: 2000px;
}

.see-more-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: linear-gradient(to top, rgba(255,255,255,1) 20%, rgba(255,255,255,0.8) 80%, rgba(255,255,255,0) 100%);
    cursor: pointer;
    color: #3498db;
    font-weight: 600;
}

.product-card.expanded .see-more-btn {
    position: relative;
    background: none;
}

.product-items {
    columns: 2;
    column-gap: 20px;
    word-break: break-word;
}

.product-items li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    padding-right: 5px;
    break-inside: avoid;
    overflow-wrap: break-word;
}

.product-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
}

/* About Section Styles */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.about-block {
    margin-bottom: 30px;
}

.about-block h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-block ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #3498db;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .products-container {
        flex-direction: column;
    }
    
    .categories {
        flex: none;
        width: 100%;
    }
    
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .banner::after {
   
    width: 270px;
    height: 280px;
    
}
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        padding: 80px 20px 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
    }
    
    .nav-links ul li {
        margin: 0 0 20px 0;
    }
    
    #openMenu {
        display: block;
    }
    
    #closeMenu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-blocks {
        grid-template-columns: 1fr;
    }
    
    .product-items {
        columns: 1;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}