/* Reset some basic styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    margin-top:10px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-container p {
    margin: 5px 0;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #fff;
}

.hero {
    height: 50vh;
    background-image: url('https://srglobaledge.co.in/images/farmers.png'); /* Example background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.heroA {
    height: 50vh;
    background-image: url('https://srglobaledge.co.in/images/image3.png'); /* Example background */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.heroB {
    height: 50vh;
    background-image: url('https://srglobaledge.co.in/images/image1.jpg'); /* Example background */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
}



.hero:A:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}

.heroA-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.heroA h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.heroA p {
    font-size: 1.2em;
}

.hero:B:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}
.heroB-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.heroB h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.heroB p {
    font-size: 1.2em;
}