﻿/* Hero Banner Section */
/* About Us Section */
.aboutUs {
    background-color: #547792;
    color: white;
    padding: 60px 0;
}

.info-card {
    background-color: #547792;
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-details {
    background-color: #213448;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-details:hover {
        background-color: #1a2838;
        transform: translateY(-2px);
    }

/* Statistics Section */
.statistics {
    background-color: #F5F5DC;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #E91E63;
    margin-bottom: 10px;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
}

.cta-text {
    color: #9C27B0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
}

.btn-start-project {
    background: linear-gradient(to right, #9C27B0, #E91E63);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-start-project:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(156, 39, 176, 0.4);
    }

/* Products Section */
.products-section {
    background-image: url("../images/projectbgimg.png");
    color: white;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

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

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-size {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-actions {
    margin-top: auto;
    padding: 0 20px 20px;
}

.icon-link {
    transition: all 0.25s ease;
}

    .icon-link:hover {
        gap: 10px;
        color: #1e40af;
    }


@@media (max-width: 768px) {
    .banner h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .banner-arrow {
        width: 40px;
        height: 40px;
    }
}
