/* Reset & General Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
}

/* Navbar (Using existing styles, linked via fetch) */
#main-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Hero Section */
.product-hero-detail {
    width: 100%;
    background-color: #e5e5e5; /* Light gray background */
    padding: 50px 0;
    margin-top: 7rem; /* Account for navbar height */
}

.product-hero-detail-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.product-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-image-img {
    width: 100%; /* Adjust image size to fit the layout */
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.image-wrpaere {
    width: 30%;
}

.product-details {
    width: 40%; /* Adjusted width to accommodate new div */
    text-align: left;
}

.product-category {
    font-size: 1.2rem;
    color: #003b4d;
    margin-bottom: 10px;
}

.product-name {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px; /* Add space before cards */
}

/* New Contact Info Styling */
.contact-info {
    width: 30%; /* Equal distribution with other divs */
    text-align: left;
    border-left: 2px solid #003b4d; /* Left border to separate from description */
    padding-left: 2rem; /* Space from the border */
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #003b4d;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contact-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.contact-info p strong {
    color: #333;
}

/* Rest of your existing styles */
.detail-card-wraper {
    width: 100%;
    margin-top: 2rem;
    padding: 50px 20px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    margin-bottom: 30px;
}

.header h2 {
    font-size: 2rem;
    font-weight: bold;
}

.header p {
    color: #aaa;
    font-size: 1rem;
}

.feature-card {
    background: white;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    min-width: 260px;
    max-width: 320px;
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    /* transform: translateY(-5px); */
}

.Advanced-feature {
    font-size: 2.5rem;
    color: #003b4d;
    margin-bottom: 4px;
    text-align: center;
}

.advanced-feature-text {
    color: #666;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 1.8rem;
    color: white;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
}

.feature-descriptions {
    margin: 0 0 15px 0;
    text-align: left;
    font-weight: 200;
    font-size: 14px;
    color: black;
}

/* Responsive Design */
@media (max-width: 1124px) {
    .product-hero-detail-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .image-wrpaere {
        width: 100%;
    }

    .product-details {
        width: 100%;
        padding-left: 0;
        text-align: left;
    }

    .contact-info {
        width: 100%;
        border-left: none; /* Remove border on smaller screens */
        border-top: 2px solid #003b4d; /* Add top border instead */
        padding-left: 0;
        padding-top: 2rem;
    }

    .product-image-img {
        width: 50%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }

    .product-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-hero-detail {
        padding: 30px 0;
        margin-top: 6rem;
    }

    .product-image {
        background-color: white;
    }

    .app-image-card img {
        width: 55%;
        height: auto;
        border-radius: 5px;
    }

    .product-hero-detail-container {
        padding: 0 15px;
        gap: 20px;
    }

    .product-category {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .product-name {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .product-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-title {
        font-size: 1em;
    }

    .detail-card-wraper {
        margin-bottom: 0rem;
    }

    .feature-icon-wrapper {
        display: none;
    }

    .feature-card {
        width: 90%;
        max-width: 400px;
    }

    .Advanced-feature {
        font-size: 1em;
        color: #003b4d;
    }
}