* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    position: relative;
    font-family: 'poppins', sans-serif;
}

::selection {
    background: #1b1b1b;
    color: #fff;
}

.navbar {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
    background: #fff;
    z-index: 9;
}

.links-container {
    display: flex;
    list-style: none;
}

.link {
    padding: 10px;
    margin-left: 10px;
    text-decoration: none;
    text-transform: capitalize;
    color: #000;
}

.header {
    margin-top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    background: url(../img/header.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
}

.heading {
    color: #fff;
    text-transform: capitalize;
    font-size: 80px;
    line-height: 60px;
    margin-bottom: 80px;
}

.heading .small {
    display: block;
    font-size: 40px;
}

.heading .no-fill {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.btn {
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
}
.blogs-section {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 90px;
}

.about {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* Allow contentBx and imgBx to wrap to a new line if needed */
}

.about .contentBx {
    flex: 3;
    /* Let the content box occupy the available space */
    max-width: 400px;
    /* Adjust the max-width as needed */
    text-align: left; /* Align the text to the left */
    margin-right: 30px; /* Add space between contentBx and imgBx */
}

.titleText {
    font-weight: 700; /* Increase font weight for bolder text */
    color: #111; /* Change text color to a darker shade */
    font-size: 2.2rem; /* Slightly reduce font size */
    margin-bottom: 8px; /* Reduce margin-bottom for less space below the title */
}


.title-text {
    color: #111;
    font-size: 1.2em;
    /* Increase the title text size */
}

.about .imgBx {
    justify-content: space-between;
    flex: 1;
    /* Let the image box occupy the available space */
    min-width: 370px;
    /* Reduce the minimum width of the image */
    max-width: 750px;
    /* Limit the maximum width of the image */
    min-height: 300px;
    /* Reduce the minimum height of the image */
    max-height: 400px;
    /* Limit the maximum height of the image */
    object-fit: cover;
}


.btn2 {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 30px;
    background: #fff;
    border: .8px solid #111;
    color: #333;
    text-decoration: none;
    transition: 0.5s;
}

.btn2:hover {
    background-color:#95C22B;
    border: none;
    color: #fff;
}

/* Alternate the order of image and content for every even section */
.about:nth-child(even) .contentBx {
    order: 1;
    /* Change the order of content for even sections */
}

.about:nth-child(even) .imgBx {
    order: 2;
    /* Reverse the order of image for even sections */
}

.about:nth-child(odd) .contentBx {
    order: 2;
    /* Change the order of content for odd sections */
}

.about:nth-child(odd) .imgBx {
    order: 1;
    /* Reverse the order of image for odd sections */
}