.hero-section {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Aligns text to the right */
    background-color: transparent;
    overflow:hidden;
}

/* Left-side Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('/drupal/sites/default/files/2025-03/CS-Photo-10-bright-1-e1706656913573_0.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

/* Black Curved Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: url('/drupal/sites/default/files/2025-03/CS_Nodes-sub_0.png') no-repeat center center;
    background-size: cover;
    z-index: 2;
}

/* Text Content */
.hero-content {
    position: relative;
    width: 40%;
    color: white;
    text-align: left;
    padding: 20px;
    z-index:3; /* Ensures text is on top */
    background: transparent !important;
}
.hero-content h1 {
            font-size: 28px;
            margin-bottom: 10px;
            color: white;
        }

.hero-content p {
            font-size: 16px;
            line-height: 1.5;
            color: white;
        }

/* Learn More Button */
.hero-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: bold;
    border: 2px solid white;
    border-color: #fff
}

.hero-button:hover {
    background-color: rgba(255,255,255,.24);
    color: #fff;
    border-color: transparent;
}
/* Section Container */
.soc-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

/* Headings */
.soc-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.soc-section p {
    font-size: 16px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Features Grid */
.soc-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Individual Feature */
.feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Feature Images */
.feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Feature Titles */
.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}