/* google font link */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}
.rounded-image {
    border-radius: 50%; /* Makes the image circular */
    overflow: hidden; /* Ensures the image fits within the rounded area */
}
.container {
    max-width: 1145px;
    margin: 0 auto;
}
 /* Add custom styles for the banner */
 .banner_section {
    position: relative;
}

.banner_img {
    position: relative;
}

.banner_img img {
    width: 100%;
    height: auto;
}

.welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:  #fffb00;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
/* header */
.header_section {
	padding: 5 px 0;
	background-color: #C9E7FF;
}
.header_section .container {
    display: grid;
    grid-template-columns: 1fr 4fr;
}

.header_section .container .logo_col img {
    width: 60%;
}

.clock {
   color: #fffb00;
    align-content: center;
    text-align: center;
    margin-top: 11px;
}
.header_section .container .manu_col {
    align-content: center;
    text-align: right;
    /* margin: ; */
    margin-top: 11px;
}

.header_section .container .manu_col ul {
    list-style-type: none;
}

.header_section .container .manu_col ul li {
    display: inline-block;
}

.header_section .container .manu_col ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    margin-left: 20px;
    text-transform: uppercase;
    transition: 0.4s;
}

.header_section .container .manu_col ul li a:hover {
    color: rgb(255, 0, 0);
}

h2 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    color: #A53F1B;
   padding-top: 70px;
   padding-bottom: 30px;
    text-transform: capitalize;
}

h5 {
    font-size: 25px;
    font-weight: 500;
    color: #A53F1B;
    padding: 10px 0;
    text-transform: capitalize;
}

.card-body a {
    text-decoration: none;
    color: #bb3708;
    padding: 10px 40px;
    background-color: #efcb9a;
    border-radius: 50px;
}

.Farming_Guides {
	margin: 0;
	background-color: #F3F0EB;
}

.Corps_Details {
    margin: 0;
	background-color: #F3F0EB;
}

.card-img,
.card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
    height: 30vh;
}

.Pest_Control {
    margin: 0;
	background-color: #F3F0EB;
}

.footer_section {
	padding: 10px 0;
	background-color: #C9E7FF;
}

.cp img {
    width: 30%;
}

.footer_section .cp p {
    font-size: 25px;
    font-weight: 500;
    color: #268C44;
    text-transform: capitalize;
    text-align: center;
}

/* fg */
.inner_section .banner_img img {
    width: 100%;
}

.details {
    background-color: #F3F0EB;
}

.details .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

.details .container .about_img img {
    width: 100%;
}

.details .container .about_text {
    margin-top: 160px;
}

.details .container .about_text h4 {
    font-size: 25px;
    font-weight: 500;
    color: #A53F1B;
    padding: 20px 0;
    text-transform: capitalize;
}

.contact_info .container {

    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
}
   

form {
    margin: 50px 0;
}

.form-group {
    margin-bottom: 20px;
}

.text {
    text-align: center;
    color: #A53F1B;
}

iframe {
    width: 100%;
}
/* General adjustments for smaller screens */
@media (max-width: 992px) {
    .header_section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header_section .manu_col {
        margin-top: 15px;
    }

    .manu_col ul {
        display: inline-block;
        padding: 0;
    }

    .manu_col ul li {
        display: block;
        margin: 5px 0;
    }

    .welcome-text {
        font-size: 2.5rem;
    }

    .footer_section .cp p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    /* Adjust header for smaller tablets */
    .header_section .logo_col img {
        width: 50%;
    }

    .welcome-text {
        font-size: 2rem;
        text-align: center;
        padding: 20px;
    }

    .manu_col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-img,
    .card-img-top {
        height: auto;
    }

    .details .container {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .contact_info .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    /* Mobile-specific adjustments */
    .header_section .logo_col img {
        width: 40%;
    }

    .welcome-text {
        font-size: 1.5rem;
        padding: 10px;
    }

    h2 {
        font-size: 20px;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    h5 {
        font-size: 18px;
        padding: 5px 0;
    }

    .card-body a {
        font-size: 14px;
        padding: 5px 20px;
    }

    .footer_section .cp p {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    /* Very small screen adjustments */
    .header_section .logo_col img {
        width: 30%;
    }

    .welcome-text {
        font-size: 1.2rem;
    }

    .header_section .manu_col ul li {
        margin: 3px 0;
    }

    h2, h5 {
        font-size: 16px;
    }

    .card-body a {
        font-size: 12px;
        padding: 5px 15px;
    }

    .footer_section .cp p {
        font-size: 14px;
    }
}
