body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

section {
    padding: 40px 20px;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* Style the navigation links */
header nav a {
  color: #ADD8E6; /* Light Blue */
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #87CEEB; /* Slightly darker blue on hover */
}

/* Style the contact button separately */
header nav a.contact-button {
  background-color: #4CAF50; /* Green */
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
}

header nav a.contact-button:hover {
  background-color: #367C39; /* Darker green on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Feature icons sizing */
.feature-icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}
/* Product Image Styling */
.product-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintains aspect ratio */
    transition: transform 0.3s ease;
}

/* Hover effect for images */
.product-image:hover img {
    transform: scale(1.05);
}

/* Contact details styling */
#contact .contact-details a {
  color: red; /* Initial color */
  transition: color 0.3s ease; /* Smooth transition for the hover effect */
}

#contact .contact-details a:hover {
  color: darkred; /* Color on hover */
}
