/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa !important;
}

.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Background Image */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(6px);
    z-index: -1;
}

/* Navigation */


/* Hero Section */
.hero {
    position: relative;
    padding: 20px 0;
    color: white;
    background-image: url('hero/hero photo.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: #ccc;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #245352 !important;
    border-color: #245352 !important;
}

.btn-primary:hover {
    background-color: #1a3e3d !important;
    border-color: #1a3e3d !important;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
    background-color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 2px;
    justify-items: center;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-item {
    position: relative;
    width: 100%;
    max-width: 150px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.product-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    text-decoration: none;
}

.product-item:hover .product-name {
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.about-left h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-left p {
    margin-bottom: 16px;
    font-size: 16px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    background-color: #245352;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    color: white;
}

.benefits-list li span {
    font-size: 18px;
    font-weight: 500;
}

/* Logo Slider */
.logo-slider-container {
    width: 100%;
    max-width: 961px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border: 1px solid #ddd;
    margin: auto;
    background-color: white;
}

.logo-track {
    display: flex;
    gap: 15px;
    transition: transform 3s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    padding: 15px;
}

.logo-box {
    width: 180px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    background: white;
}

.logo-box img {
    max-width: 95%;
    max-height: 150px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    color: #245352;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Testimonials and Contact */
.testimonials-contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-card {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-form .form-control {
    padding: 12px;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #245352 !important;
    color: white !important;
    padding: 50px 0 20px;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.social-icons {
    font-size: 20px;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s;
    color: white;
    font-size: 24px;
}

.floating-contact:hover {
    transform: scale(1.1);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: start;
}

.category-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    width: 100%;
    max-width: 250px;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo-slider-container {
        width: 100%;
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .search-container {
        width: 100%;
        margin-top: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .logo-slider-container {
        max-width: 300px;
    }
    
    .logo-box {
        width: 140px;
        height: 120px;
    }
}
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}