
/* Hero Section Styling */
.hero-section {
    position: relative; /* Required for the overlay */
    height: 60vh; /* 60% of the viewport height. Adjust as needed (e.g., 400px, 80vh) */
    
    /* REPLACE THIS with your background image path */
    background-image: url('images/about/Frame-46.png'); 
    
    background-size: cover;
    background-position: center;
    
    /* Flexbox to center the content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    color: #ffffff; /* Text color */
}

/* Semi-transparent dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% black. Adjust 0.5 for more/less darkness */
    z-index: 1; /* Sits below the content */
}

/* Content container */
.hero-content {
    position: relative; /* Sits on top of the overlay */
    z-index: 2;
    padding: 20px;
}

/* Title styling */
.hero-title {
    font-size: 3.5rem; /* Large font size */
    font-weight: 700;
    margin: 0; /* Remove default margin */
    
    /* Optional: Add a subtle text shadow */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh; /* Make it shorter on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem; /* Smaller font size for mobile */
    }
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-we-do-section {
    padding: 80px 0; /* 80px padding top and bottom */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section 1: "Solutions" Styles --- */
.solutions-section {
    padding: 80px 0;
    overflow: hidden;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap; /* Stacks on mobile */
    align-items: center;
    gap: 40px;
}

.solutions-text {
    flex: 1; /* Takes half the space */
    min-width: 300px;
}

.solutions-images {
    flex: 1; /* Takes the other half */
    min-width: 300px;
    display: flex;
    gap: 15px; /* Space between the two images */
}

.solutions-images img {
    flex: 1; /* Each image takes half the space of the image container */
    width: 50%;
    height: 400px; /* Fixed height, adjust as needed */
    object-fit: cover;
    border-radius: 8px;
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 8px;
    display: block;
}

.solutions-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.solutions-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.solutions-text p strong {
    color: #111;
}

/* --- Section 2: "Products" Grid Styles --- */
.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    /* Creates 2 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 50px; /* 40px vertical, 50px horizontal */
}

.product-item {
    /* No background card, just text on the page */
}

.product-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

/* Hide the divider for the first two items (top row) */
.product-item:nth-child(1) .product-divider,
.product-item:nth-child(2) .product-divider {
    display: none;
}

.product-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #63ccc1; /* Teal color from image */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #63ccc1;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 10px 0;
}

.product-description {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .solutions-text h2,
    .section-title {
        font-size: 2.2rem;
    }

    .solutions-images {
        height: 300px;
    }

    /* On mobile, show divider for all items except the very first one */
    .product-item:nth-child(1) .product-divider {
        display: none;
    }
    .product-item:nth-child(2) .product-divider {
        display: block;
    }
}
/* 1. Style for the icon's container div.
  This creates the circular border and defines the space for the icon.
*/
.product-icon {
  width: 80px; /* Adjust size of the outer circle as needed */
  height: 80px; /* Adjust size of the outer circle as needed */
  margin: 0 auto 20px; /* Centers the icon container and adds space below it */
  display: flex; /* Use flexbox to easily center the image inside */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  border-radius: 50%; /* Makes the container round */
  border: 3px solid #4dc0b5; /* The teal circular border */
}

/* 2. Styles for the actual image icon inside the container. */
.product-icon .product-img-icon {
  max-width: 60%; /* Adjust how large the image icon is relative to its container */
  max-height: 60%;
  /* If your image already has the correct teal color, you don't need filter: invert() */
  /* filter: invert(34%) sepia(97%) saturate(300%) hue-rotate(130deg) brightness(85%) contrast(80%); */
  /* This filter attempts to change a black icon to teal. 
     If your icon is already teal, remove this line.
  */
  display: block; /* Remove any extra spacing issues */
}