/* ////////////////////////////////// Banner Section Start ////////////////////////////////////////// */

.home-banner .myswiper {
    width: 100%;
    height: 100vh;
}

.home-banner .myswiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-banner .myswiper .swiper-slide.slide-one {
    background-image: url("../../../images/homepage/banner.png");
}

.home-banner .myswiper .swiper-slide.slide-two {
    background-image: url("../../../images/homepage/banner-1.jpg");
}

.home-banner .myswiper .swiper-slide .banner-content {
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    margin-top: 10rem;
}

.home-banner .myswiper .swiper-slide .banner-content .banner-heading {
    font-family: "Area-Normal-Extrabold, sans-serif";
    margin-bottom: 50px;
    font-size: 3rem;
    line-height: 65px;
    color: #fff;
}

.home-banner .myswiper .swiper-slide .banner-content .points {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.home-banner .myswiper .swiper-slide .banner-content .points .point {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    /* flex-basis: calc(50% - 1rem); */
}

/* .home-banner .myswiper .swiper-slide .banner-content .points .point img {
    width: 24px;
    height: auto;
    margin-right: 20px;
} */

.home-banner .myswiper .swiper-slide .banner-content .points .point p {
    font-family: "Area-Normal-Semibold, sans-serif";
    margin-bottom: 0px;
    font-size: 20px;
    color: #fff;
}

.home-banner .myswiper .swiper-slide .banner-content .logo-column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
    border: 2px solid #777777;
    width: 100%;
    max-width: 700px;
}

.home-banner .myswiper .swiper-slide .banner-content .logo-column a {
    width: calc(25% - 10px);
}

.home-banner .myswiper .swiper-slide .banner-content .logo-column a img {
    width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(1);
    transition: all 0.4s ease;
}

.home-banner .myswiper .swiper-slide .banner-content .logo-column a:hover img {
    transform: scale(1.05)!important;
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.05) saturate(1.1);
}

/* .home-banner .myswiper .custom-navigation {
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 97px;
    top: 0%;
    z-index: 1;
}

.home-banner .myswiper .custom-navigation .line-one {
    height: 20%; 
    width: 2px; background: 
    linear-gradient(transparent,white);
}

.home-banner .myswiper .custom-navigation .line-two {
    height: 20%; 
    width: 2px; background: 
    linear-gradient(white, transparent);
}

.home-banner .myswiper .custom-navigation button {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.home-banner .myswiper .custom-navigation button i {
    position: relative;
    z-index: 1;
}

.home-banner .myswiper .custom-navigation button::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: #aad04e;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.home-banner .myswiper .custom-navigation button:hover {
    background-color: #aad04e;
    transform: scale(1.1);
}

.home-banner .myswiper .custom-navigation button:hover::before {
    transform: translate(-50%, -50%) scale(1);
} */

@media (max-width: 768px) {
    .home-banner .myswiper {
        height: 80vh;
    }

    .home-banner .myswiper .swiper-slide {
        flex-direction: column;
    }

    .home-banner .myswiper .swiper-slide .banner-content .banner-heading {
        font-size: 1.5rem;
        line-height: 34px;
        margin-bottom: 30px;
        text-align: left;
    }

    .home-banner .myswiper .swiper-slide .banner-content .points {
        margin-bottom: 30px;
    }

    .home-banner .myswiper .swiper-slide .banner-content .points .point p {
        font-size: 18px;
    }

    .home-banner .myswiper .swiper-slide .banner-content .points .point {
        /* flex-basis: 100%; */
        margin-bottom: 0px;
    }
    .home-banner .myswiper .swiper-slide .banner-content .logo-column a {
        width: calc(50% - 10px);
    }

    .home-banner .myswiper .swiper-slide .banner-content .logo-column img {
        width: 100%;
        height: auto;
    }

    /* .home-banner .myswiper .custom-navigation {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row-reverse;
        align-items: center;
        gap: 15px;
        width: auto;
        height: auto;
    }

    .home-banner .myswiper .custom-navigation button {
        width: 35px;
        height: 35px;
    }
    .home-banner .myswiper .custom-navigation .line-one,
    .home-banner .myswiper .custom-navigation .line-two {
        display: none;
    } */
}


/* ////////////////////////////////// Banner Section End ////////////////////////////////////////// */

/* Who we are section CSS Start */
.who-we-are {
    padding-top: 70px;
    padding-bottom: 70px;
}

.who-we-are .image-container {
    width: 100%;
    max-width: 700px;
    overflow: hidden;
}

.who-we-are .image-container img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-section {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    gap: 10px;
}

.content-section .heading {
    font-size: 13px;
    color: #000;
    font-family: "Area-Normal-Semibold, sans-serif";
}

.content-section .underline {
    height: 1px;
    width: 45px;
    background-color: #aad04e;
}

.who-we-are .text-content {
    display: flex;
    gap: 2.5rem;
}

.who-we-are .our-legacy,
.who-we-are .our-commitment {
    margin-bottom: 30px;
    flex: 1;
}

.who-we-are .text-content h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.who-we-are .text-content .description {
    text-align: left;
}

.who-we-are .read-more {
    font-size: 16px;
    padding: 12px 40px;
}

/* Responsive Styles */

@media (min-width: 768px) and (max-width: 1024px) {
    .who-we-are .text-content {
        display: flex;
        gap: 2.5rem;
    }

    .who-we-are .image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .who-we-are {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .who-we-are .image-container {
        max-width: 100%;
        text-align: center;
    }

    .who-we-are .text-content {
        flex-direction: column;
        gap: 0px;
    }

    .who-we-are .our-legacy,
    .who-we-are .our-commitment {
        margin-bottom: 10px;
    }

    .who-we-are .text-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .who-we-are .read-more {
        display: block;
        margin: 0px auto 20px;
        padding: 10px 30px;
        font-size: 14px;
        width: max-content;
    }
}

/* Who we are section CSS End */

/* Our Products Section Start */

.our-products {
    padding-top: 20px;
    padding-bottom: 35px;
    position: relative;
}

.our-products .card {
    display: flex;
    justify-content: space-between;
    border: 2px solid #ddd;
    border-radius: 0px;
    padding: 12px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.our-products .card:hover {
    background-color: #aad04e;
    border: 2px solid #aad04e;
}

.our-products .card .image-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
    border: 1px solid #cdcdcd;
}

.our-products .card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-products .card .card-content {
    padding: 15px 5px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.our-products .card .card-content .card-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000;
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.our-products .card .card-content .card-text {
    font-family: "Area-Normal-Regular, sans-serif";
    margin-bottom: 20px;
    font-size: 14px;
    color: #4b4b4b;
}

.our-products .card .card-content .read-more {
    font-size: 15px;
    margin-bottom: 15px;
    color: #000;
    font-family: "Area-Normal-Bold, sans-serif";
    text-decoration: none;
    cursor: pointer !important;
    transition: color 0.3s ease;
}

.our-products .card .card-content .read-more i {
    transition: transform 0.3s ease;
}

.our-products .card .card-content .read-more:hover {
    color: #fff;
}

.our-products .card .card-content .read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .our-products {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .our-products .card .card-content {
        min-height: 220px;
    }

    .our-products .card .card-content .card-title {
        font-size: 1.1rem;
    }
}

/* Our Products Section End */

/* Our Innovation Section Start */
.our-innovations {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f5fbff;
}

.our-innovations .card {
    display: flex;
    justify-content: space-between;
    border-radius: 0px;
    border: none;
    background-color: #f5fbff;
}

.our-innovations .card .image-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.our-innovations .card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-innovations .card .card-content {
    padding: 20px 10px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.our-innovations .card .card-content .card-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #000;
    font-family: "Area-Normal-Bold, sans-serif";
    line-height: 30px;
}

.our-innovations .card .card-content .card-text {
    font-family: "Area-Normal-Regular, sans-serif";
    margin-bottom: 20px;
    font-size: 14px;
    color: #4b4b4b;
}

.our-innovations .read-more {
    font-size: 16px;
    padding: 12px 40px;
}

@media (max-width: 768px) {
    .our-innovations {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .our-innovations .card .image-container {
        height: 220px;
    }

    .our-innovations .card .card-content .card-title {
        font-size: 1.1rem;
        line-height: 26px;
    }
}

/* Our Innovation Section End */

/* Our Protection Section Start */

.our-protection {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #aad04e;
}

.our-protection .image-container {
    width: 100%;
    height: 100%;
    max-width: 480px;
    overflow: hidden;
}

.our-protection .image-container img {
    max-width: 100%;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.our-protection .text-content {
    display: flex;
    gap: 2.5rem;
}

.our-protection .our-legacy,
.our-protection .our-commitment {
    flex: 1;
    margin-bottom: 30px;
}

.our-protection .text-content h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.our-protection .read-more {
    font-size: 16px;
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #000;
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    transform: scale(1);
    padding: 12px 40px;
}

.our-protection .read-more:hover {
    background-color: #0084de;
    transform: scale(1.05);
    color: #fff;
}

@media (max-width: 768px) {
    .our-protection {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .our-protection .text-content {
        display: flex;
        gap: 20px;
    }

    .our-protection .text-content h5 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .our-protection .read-more {
        display: block;
        margin: 0px auto 30px;
        padding: 10px 30px;
        font-size: 14px;
        width: max-content;
    }

}

/* Our Protection Section End */

/* Global Section Section Start */

.global-impact-section {
    padding-top: 100px;
    padding-bottom: 20px;
    overflow: hidden;
}

/* .global-impact-section .container {
    background: url('../../../images/homepage/map.jpg');
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
    width: 100%;
} */

/*.global-impact-section .map-image {*/
/*    background: url('../../../images/homepage/map.jpg');*/
/*    background-position: bottom;*/
/*    background-size: contain;*/
/*    background-repeat: no-repeat;*/
/*    position: relative;*/
/*    height: 100vh;*/
/*    width: 100%;*/
/*}*/


.global-impact-section svg {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.global-impact-section svg circle {
    fill: #0084de;
    cursor: pointer;
    transition: fill 0.2s ease;
}

.global-impact-section svg circle:hover {
    fill: #aad04e;
}

#tooltip {
    position: absolute;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border: 1px solid #000;
    border-radius: 4px;
    font-family: "Area-Normal-Regular, sans-serif";
    pointer-events: none;
    font-size: 14px;
    z-index: 10;
}

.global-impact-section .locations .location-icon {
    position: absolute;
    cursor: pointer;
}

.global-impact-section .locations .location-icon i {
    color: #2f2f2f;
    font-size: 45px;
}

.global-impact-section .locations .location-icon i:hover {
    color: #0184de;
    animation: locationfadeInUp 1.5s ease;
}

.global-impact-section .locations .location-icon.active i {
    color: #0184de;
}

@keyframes locationfadeInUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.global-impact-section .locations .location-icon.location-1 {
    top: 58%;
    right: 37%;
}

.global-impact-section .locations .location-icon.location-2 {
    top: 63%;
    right: 26.2%;
}

.global-impact-section .locations .location-icon.location-3 {
    top: 46%;
    right: 26%;
}

.global-impact-section .locations .location-icon.location-4 {
    top: 70%;
    right: 18%;
}

.global-impact-section .content-box {
    position: absolute;
    top: 0;
    right: -100%;
    width: 22%;
    height: 100%;
    background: #0184de;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    transition: right 0.8s ease-in-out;
}

.global-impact-section .content-box.open {
    right: 0;
}

.global-impact-section .content-box .image-container {
    overflow: hidden;
    height: 220px;
    width: 100%;
}

.global-impact-section .content-box .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-impact-section .content-box .text-container {
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.global-impact-section .content-box .text-container .content-heading {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.global-impact-section .content-box .text-container .content-underline {
    width: 100%;
    height: 1.5px;
    margin-bottom: 30px;
    background-color: #fff;
}

.global-impact-section .content-box .text-container .content-text {
    font-family: "Area-Normal-Regular, sans-serif";
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
}

.global-impact-section .content-box .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1;
}

.global-impact-section .content-box .close-btn i {
    font-size: 22px;
    background: #fff;
    height: 30px;
    width: 30px;
    color: #0184de;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tablet: Screen size between 768px and 1024px */
@media screen and (max-width: 1024px) {

    .global-impact-section .locations .location-icon i {
        font-size: 35px;
    }

    .global-impact-section .content-box {
        width: 30%;
    }

    .global-impact-section .content-box .image-container {
        height: 180px;
    }

    .global-impact-section .content-box .text-container .content-heading {
        font-size: 1.8rem;
    }

    .global-impact-section .content-box .text-container .content-text {
        font-size: 12px;
    }

    .global-impact-section .locations .location-icon.location-1 {
        top: 60%;
        right: 35%;
    }

    .global-impact-section .locations .location-icon.location-2 {
        top: 65%;
        right: 25%;
    }

    .global-impact-section .locations .location-icon.location-3 {
        top: 48%;
        right: 24%;
    }

    .global-impact-section .locations .location-icon.location-4 {
        top: 72%;
        right: 17%;
    }
}

@media (max-width: 768px) {
    .global-impact-section {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .global-impact-section .locations .location-icon i {
        font-size: 24px;
    }

    .global-impact-section .content-box {
        width: 80%;
        height: auto;
        top: auto;
        bottom: 0;
        right: 0;
    }

    .global-impact-section .content-box .close-btn {
        display: none;
    }

    .global-impact-section .content-box .text-container .content-heading {
        font-size: 1.5rem;
    }

    .global-impact-section .content-box .text-container .content-underline {
        margin-bottom: 15px;
    }

    .global-impact-section .content-box .text-container .content-text {
        font-size: 12px;
    }

    .global-impact-section .locations .location-icon.location-1 {
        top: 28%;
        right: 36%;
    }

    .global-impact-section .locations .location-icon.location-2 {
        top: 29.6%;
        right: 25%;
    }

    .global-impact-section .locations .location-icon.location-3 {
        top: 26%;
        right: 13%;
    }

    .global-impact-section .locations .location-icon.location-4 {
        top: 31%;
        right: 18%;
    }

}

/* Global Section Section End */

/* Sustainability Section Start */

.sustainability-section .slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sustainability-section .mySwiper3 {
    width: 100%;
    height: 100%;
}

.sustainability-section .mySwiper3 .swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.sustainability-section .mySwiper3 .swiper-slide.slide-one {
    background-image: url("../../../images/homepage/banner.png");
}

.sustainability-section .mySwiper3 .swiper-slide.slide-two {
    background-image: url("../../../images/homepage/sustainability.webp");
}

.sustainability-section .slider-content {
    color: #fff;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.sustainability-section .slider-content .section-heading {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7)
}

.sustainability-section .slider-content .read-more {
    font-size: 13px;
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #000;
    background-color: #aad04e;
    border: none;
    outline: none;
    border-radius: 30px;
    padding: 10px 50px;
}

.sustainability-section .custom-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 1;
    left: 0px;
}

.sustainability-section .custom-navigation button {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sustainability-section .custom-navigation .swiper-button-b {
    margin-left: 100px;
}

.sustainability-section .custom-navigation .swiper-button-a {
    margin-right: 100px;
}

.sustainability-section .custom-navigation button span {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.sustainability-section .custom-navigation button::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: #aad04e;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.sustainability-section .custom-navigation button:hover {
    background-color: #aad04e;
    transform: scale(1.1);
}

.sustainability-section .custom-navigation button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .sustainability-section .slider-container {
        height: 400px;
    }

    .sustainability-section .slider-content .section-heading {
        font-size: 1rem;
        line-height: 28px;
    }

    .sustainability-section .custom-navigation {
        top: 90%;
    }

    .sustainability-section .custom-navigation button {
        width: 40px;
        height: 40px;
    }

    .sustainability-section .custom-navigation .swiper-button-b {
        margin-left: 10px;
    }

    .sustainability-section .custom-navigation .swiper-button-a {
        margin-right: 10px;
    }

    .sustainability-section .slider-content .read-more {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* Sustainability Section End */

/* Media and Resources Section Start */

.media-and-resources {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f5fbff;
}

.media-and-resources .button-container {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 50px;
}

.media-and-resources .button-container .read-more {
    font-size: 16px;
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #000;
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 30px;
    text-decoration: none;
    padding: 12px 40px;
    transition: all 0.4s ease;
    transform: scale(1);
    border: 2px solid #ddd;
}

.media-and-resources .button-container .read-more:hover {
    background-color: #0084de;
    transform: scale(1.05);
    color: #fff;
}

.media-and-resources .mySwiper2 {
    position: relative;
    padding-bottom: 35px;
}

.media-and-resources .mySwiper2 .card {
    display: flex;
    justify-content: space-between;
    border: none;
    border-radius: 0px;
    background-color: #f5fbff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
}

.media-and-resources .mySwiper2 .card .image-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.media-and-resources .mySwiper2 .card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-and-resources .mySwiper2 .card .card-content {
    padding: 20px 20px;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-and-resources .mySwiper2 .card .card-content .card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.media-and-resources .mySwiper2 .card .card-content .card-text {
    font-family: "Area-Normal-Regular, sans-serif";
    margin-bottom: 20px;
    font-size: 14px;
    color: #4b4b4b;
}

.media-and-resources .mySwiper2 .card .card-content .read-more {
    font-size: 15px;
    margin-bottom: 15px;
    color: #000;
    font-family: "Area-Normal-Bold, sans-serif";
    text-decoration: none;
    cursor: pointer!important;
    transition: color 0.3s ease;
}

.media-and-resources .mySwiper2 .card .card-content .read-more i {
    transition: transform 0.3s ease;
}

.media-and-resources .mySwiper2 .card .card-content .read-more:hover {
    color: #007BFF;
}

.media-and-resources .mySwiper2 .card .card-content .read-more:hover i {
    transform: translateX(5px);
}

.media-and-resources .mySwiper2 .swiper-pagination {
    position: relative;
    margin-top: 10px;
    text-align: center;
}

.media-and-resources .mySwiper2 .swiper-pagination-bullet {
    background-color: #ddd;
    width: 12px;
    height: 12px;
    opacity: 1;
    transition: background-color 0.3s;
}

.media-and-resources .mySwiper2 .swiper-pagination-bullet-active {
    background-color: #aad04e;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .media-and-resources {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .media-and-resources .button-container {
        margin-bottom: 0px;
    }

    .media-and-resources .mySwiper2 .card .card-content .card-title {
        font-size: 1.2rem;
        line-height: 30px;
    }

    .media-and-resources .mySwiper2 .card .card-content {
        min-height: 310px;
    }
}

@media (max-width: 767px) {

    .media-and-resources {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .media-and-resources .button-container {
        justify-content: start;
        margin-bottom: 30px;
    }

    .media-and-resources .button-container .read-more {
        padding: 10px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 150px;
    }

    .media-and-resources .mySwiper2 .card .card-content {
        min-height: 240px;
    }

    .media-and-resources .mySwiper2 .card .card-content .card-title {
        font-size: 1.1rem;
    }
}

/* Media and Resources Section End */

/* Our Certificates Section Start */

.our-certificates {
    padding-top: 70px;
    padding-bottom: 70px;
}

.our-certificates .certificates-heading {
    font-family: "Area-Normal-Semibold, sans-serif";
    font-size: 2.2rem;
    line-height: 45px;
    color: #000;
}

.our-certificates .certificates-heading span {
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.our-certificates .line {
    width: 2px;
    background: #aad04e;
    height: 100%;
}

.our-certificates .certificates {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    width: 250px;
    height: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.our-certificates .certificates:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.our-certificates .certificates .img-box {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.our-certificates .certificates .img-box img {
    max-width: 100%;
    height: auto;
}

.our-certificates .certificates p {
    font-size: 15px;
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #000;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .our-certificates {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .our-certificates .certificates-heading {
        font-size: 1.2rem;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .our-certificates .certificates {
        width: 100%;
        height: 250px;
    }

    .our-certificates .certificates .img-box {
        width: 150px;
        height: 150px;
    }

    .our-certificates .certificates p {
        font-size: 13px;
    }
}

/* Our Certificates Section End */

/* Our Clients Start */

.our-clients {
    padding-top: 70px;
    padding-bottom: 70px;
}

.our-clients .container-fluid .col-lg-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.our-clients .logo-slider {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 50px 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.our-clients .logo-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.our-clients .logo-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}

.our-clients .logo-slider .swiper-slide img {
    width: auto;
    height: 50px;
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
}

.our-clients .logo-slider .swiper-slide .size-increase {
    transform: scale(1.5);
}

.our-clients .logo-slider .swiper-slide img:hover {
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width: 768px) {
    .our-clients {
        padding-top: 40px;
        padding-bottom: 20px;
    }
}

/* Our Clients End */

/* Discover Our Products Section Start */

.discover-our-products {
    padding-top: 30px;
    padding-bottom: 70px;
}

.discover-our-products .button-container {
    display: flex;
    gap: 1rem;
}

.discover-our-products .button-container .read-more:first-child {
    background-color: #aad04e;
    color: #000;
}

.discover-our-products .button-container .read-more {
    font-size: 16px;
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #fff;
    background-color: #0084de;
    border: none;
    outline: none;
    text-decoration: none;
    border-radius: 30px;
    padding: 12px 40px;
}

.discover-our-products .image-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.discover-our-products .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .discover-our-products .button-container .read-more {
        margin: 20px 0px;
    }
}

@media (max-width: 767px) {
    .discover-our-products {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .discover-our-products .button-container .read-more {
        padding: 10px 20px;
        font-size: 13px;
        margin: 0 auto 30px;
    }

    .desktop-break {
        display: none;
    }

}

/* Discover Our Products Section End */