.top-header {
    background: linear-gradient(90deg, #0b8a5a, #148f77);
    padding: 8px 0;
    font-size: 15px;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-header a:hover {
    color: #ffd54f;
}

/* Social Icons */
.social-icons a {
    color: #fff;
    font-size: 22px;
    margin-left: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffd54f;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 100px;
    width: 800px;
}

.navbar-brand span {
    color: #0b8a5a;
    font-size: 20px;
    font-weight: 700;
}

/* Menu */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d4a017;
}

/* Underline Effect */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #d4a017;
    transition: 0.3s;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 100%;
}

/* Dropdown Hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}
/* Contact Button */
.btn-contact {
    background: #d4a017;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-contact:hover {
    background: #0b8a5a;
    color: #fff;
}
.footer-section {
    background: #0b5e3c;
    color: #fff;
    padding: 40px 0 0;
}

.footer-logo {
    width: 200px;
}

.footer-section h4 {
    color: #ffd54f;
    font-weight: 700;
}

.footer-section h5 {
    color: #ffd54f;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #ddd;
    line-height: 28px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ffd54f;
    padding-left: 6px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
}

.footer-social a:hover {
    background: #ffd54f;
    color: #0b5e3c;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    background: #08492e;
    padding: 18px 0;
    color: #ddd;
    font-size: 15px;
}

.footer-bottom span {
    color: #ffd54f;
    font-weight: 600;
}
/* ===========================
   HERO SLIDER
=========================== */

.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    background: #fff;
}

.hero-slider .carousel,
.hero-slider .carousel-inner {
    width: 100%;
}

.hero-slider .carousel-item {
    height: 550px;
    overflow: hidden;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Navigation Buttons */

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0;
    transition: 0.4s;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: 18px;
    background-color: rgba(11, 138, 90, 0.8);
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background: #d4a017;
}

/* Indicators */

.carousel-indicators {
    bottom: 18px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    background: #ffffff;
    opacity: 0.5;
    transition: 0.3s;
}

.carousel-indicators .active {
    width: 34px;
    border-radius: 20px;
    background: #d4a017;
    opacity: 1;
}

/* Smooth */

.carousel-item {
    transition: transform 0.8s ease-in-out;
}

/* Responsive */

@media (max-width: 1400px) {
    .hero-slider .carousel-item {
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .hero-slider .carousel-item {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .hero-slider .carousel-item {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 240px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-item {
        height: 180px;
    }

    .carousel-indicators {
        bottom: 8px;
    }
}
/*==============================
    FEATURE SECTION
==============================*/

.feature-section {
    background: #f8fafc;
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    background: #dff5ea;
    color: #0b8a5a;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.section-title span {
    color: #0b8a5a;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #0b8a5a;
    transform: scaleX(0);
    transition: 0.35s;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    border-bottom: 4px solid #d4a017;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b8a5a, #18b46c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 38px;
    color: #fff;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 28px;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 75px;
        height: 75px;
    }

    .feature-icon i {
        font-size: 30px;
    }
}
/*=========================================
            ABOUT SECTION
=========================================*/

.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s;
}

.about-image:hover img {
    transform: scale(1.02);
}

.experience-box {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: #0b8a5a;
    color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.experience-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.experience-box span {
    font-size: 15px;
    text-align: center;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    line-height: 1.3;
    margin: 20px 0;
}

.about-title span {
    color: #0b8a5a;
}

.about-text {
    color: #666;
    line-height: 30px;
    font-size: 17px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
}

.about-list i {
    color: #0b8a5a;
    margin-right: 10px;
    font-size: 18px;
}

.btn-about {
    background: #0b8a5a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-about:hover {
    background: #d4a017;
    color: #fff;
}

@media (max-width: 991px) {
    .experience-box {
        width: 120px;
        height: 120px;
        right: 15px;
        bottom: 15px;
    }

    .about-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 15px;
    }

    .experience-box {
        width: 100px;
        height: 100px;
    }

    .experience-box h2 {
        font-size: 28px;
    }
}
/*==============================
        SERVICES SECTION
==============================*/

.services-section {
    padding: 60px 0;
    background: #f8fafc;
}

.service-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* Content */

.service-content {
    padding: 22px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: #f3faf6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s;
}

.service-icon i {
    font-size: 30px;
    color: #0b8a5a;
    transition: 0.35s;
}

.service-card:hover .service-icon {
    background: #0b8a5a;
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: scale(1.1);
}

.service-text {
    flex: 1;
}

.service-text h5 {
    margin: 0 0 8px;
    color: #173d2b;
    font-size: 22px;
    font-weight: 700;
}

.service-text p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Button */

.btn-service {
    padding: 14px 36px;
    background: #0b8a5a;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-service:hover {
    background: #d4a017;
    color: #fff;
}

/* Responsive */

@media (max-width: 992px) {
    .service-image {
        height: 210px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 70px 0;
    }

    .service-image {
        height: 190px;
    }

    .service-header {
        align-items: flex-start;
    }

    .service-text h5 {
        font-size: 20px;
    }
}
.clientSwiper {
    width: 100%;
    overflow: hidden;
}

.clientSwiper .swiper-wrapper {
    align-items: center;
}

.clientSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.clientSwiper .swiper-slide img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: .3s ease;
}

/* Tablet */
@media (max-width: 992px) {
    .clientSwiper .swiper-slide {
        height: 100px;
    }

    .clientSwiper .swiper-slide img {
        max-width: 140px;
        max-height: 65px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .clientSwiper .swiper-slide {
        height: 80px;
    }

    .clientSwiper .swiper-slide img {
        max-width: 110px;
        max-height: 50px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .clientSwiper .swiper-slide {
        height: 70px;
    }

    .clientSwiper .swiper-slide img {
        max-width: 90px;
        max-height: 40px;
    }
}
}
.para {
    color: #0b8a5a;
    font-weight: 600;
}
.about-company {
    padding: 100px 0;
    background: #fff;
}

.aboutimage {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.aboutimage img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: 0.5s;
}

.aboutimage:hover img {
    transform: scale(1.05);
}

.about-text {
    color: #666;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 14px;
    background: #f8fafc;
    transition: 0.3s;
}

.about-feature i {
    font-size: 24px;
    color: #0b8a5a;
}

.about-feature span {
    font-weight: 600;
    color: #333;
}

.about-feature:hover {
    background: #0b8a5a;
    transform: translateY(-4px);
}

.about-feature:hover i,
.about-feature:hover span {
    color: #fff;
}

.btn-about {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 35px;
    border-radius: 50px;
    background: #0b8a5a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-about:hover {
    background: #d4a017;
    color: #fff;
}

@media (max-width: 992px) {
    .aboutimage img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-company {
        padding: 70px 0;
    }

    .aboutimage img {
        height: 300px;
    }

    .about-text {
        font-size: 15px;
        line-height: 28px;
    }
}
.our-story {
    padding: 100px 0;
    background: #f8fafc;
}

.story-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.5s;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-text {
    color: #666;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .story-image img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .our-story {
        padding: 70px 0;
    }

    .story-image img {
        height: 280px;
    }

    .story-text {
        font-size: 15px;
        line-height: 28px;
    }
}
.purpose-section {
    padding: 110px 0;
    background: #fff;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    align-items: center;
    gap: 60px;
}

.purpose-box {
    text-align: center;
}

.purpose-main-icon {
    font-size: 45px;
    color: #0b8a5a;
    margin-bottom: 20px;
}

.purpose-box h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.purpose-box p {
    color: #666;
    line-height: 30px;
}

.earth-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: auto;
}

.earth {
    width: 220px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: earthRotate 40s linear infinite;
    filter: drop-shadow(0 20px 35px rgba(0, 120, 255, 0.25));
}

.orbit {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #0b8a5a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.orbit1 {
    top: 5%;
    left: 50%;
}
.orbit2 {
    top: 28%;
    right: 0;
}
.orbit3 {
    bottom: 20%;
    right: 10%;
}
.orbit4 {
    bottom: 0;
    left: 50%;
}
.orbit5 {
    bottom: 25%;
    left: 0;
}
.orbit6 {
    top: 30%;
    left: 5%;
}

@keyframes earthRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit {
    animation: floatIcon 3s ease-in-out infinite;
}

.orbit:nth-child(2) {
    animation-delay: 0.2s;
}
.orbit:nth-child(3) {
    animation-delay: 0.5s;
}
.orbit:nth-child(4) {
    animation-delay: 0.8s;
}
.orbit:nth-child(5) {
    animation-delay: 1.1s;
}
.orbit:nth-child(6) {
    animation-delay: 1.4s;
}
.orbit:nth-child(7) {
    animation-delay: 1.7s;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .earth-wrapper {
        order: -1;
        margin-bottom: 40px;
    }
}
.industries-section {
    padding: 100px 0;
    background: #fff;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 25px;
}

.industry-item {
    text-decoration: none;
    text-align: center;
    color: #222;
    position: relative;
    transition: 0.35s;
}

.industry-item i {
    font-size: 52px;
    color: #0b8a5a;
    transition: 0.35s;
}

.industry-item span {
    display: block;
    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
}

.industry-item::after {
    content: "";
    width: 0;
    height: 3px;
    background: #d4a017;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    transition: 0.35s;
    border-radius: 50px;
}

.industry-item:hover::after {
    width: 70px;
}

.industry-item:hover {
    transform: translateY(-8px);
    color: #0b8a5a;
}

.industry-item:hover i {
    transform: scale(1.15);
    color: #d4a017;
}

@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
/*==============================Service Page Header==============================*/
.page-header {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fcfb 0%, #ffffff 100%);
    overflow: hidden;
}
.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #e9f7f1;
    color: #0b8a5a;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}
.page-header h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #173d2b;
    margin-bottom: 25px;
}
.page-header h1 span {
    color: #0b8a5a;
}
.page-header p {
    color: #666;
    font-size: 18px;
    line-height: 32px;
    max-width: 620px;
}
.page-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    flex-wrap: wrap;
}
.btn-main {
    background: #0b8a5a;
    color: #fff;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-main:hover {
    background: #08714a;
    color: #fff;
}
.btn-outline-main {
    border: 2px solid #0b8a5a;
    color: #0b8a5a;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline-main:hover {
    background: #0b8a5a;
    color: #fff;
}
.page-header img {
    animation: floatImage 5s ease-in-out infinite;
}
@keyframes floatImage {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@media (max-width: 992px) {
    .page-header {
        padding: 70px 0;
        text-align: center;
    }
    .page-header h1 {
        font-size: 40px;
    }
    .page-header p {
        margin: auto;
    }
    .page-buttons {
        justify-content: center;
    }
    .page-header img {
        margin-top: 50px;
        max-width: 420px;
    }
}
@media (max-width: 576px) {
    .page-header h1 {
        font-size: 32px;
    }
    .page-header p {
        font-size: 16px;
        line-height: 28px;
    }
}
.contact-section {
    background: #f8fafc;
}

.contact-card,
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-card h3,
.contact-form h3 {
    font-weight: 700;
    color: #0b8a5a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-top: 30px;
}

.contact-item i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0b8a5a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h6 {
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #ddd;
}

.contact-form textarea {
    resize: none;
}

.btn-main {
    background: #0b8a5a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #066b44;
    color: #fff;
}

.process-header {
    padding: 100px 0;
    background: #f8fafc;
}

.page-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #e9f8ef;
    color: #0b8a5a;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-header h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.process-header h1 span {
    color: #0b8a5a;
}

.process-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 14px 30px;
    border-radius: 50px;
    margin-right: 15px;
}

.process-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

#processTimeline {
    position: relative;
}

/* Each Row */

.timeline-row {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

/* Center */

.timeline-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Vertical Line */

.timeline-line {
    position: absolute;
    top: 60px;
    width: 4px;
    height: 150px;
    background: #0b8a5a;
    border-radius: 20px;
}

/* Circle */

.timeline-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0b8a5a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    border: 8px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.timeline-row:hover .timeline-circle {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(11, 138, 90, 0.35);
}

/* Heading */

.timeline-title h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: 0.3s;
}

.timeline-title p {
    color: #777;
    margin: 0;
    transition: 0.3s;
}

/* Card */

.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}

/* Shine Effect */

.process-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -40%;
    width: 120px;
    height: 250%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(25deg);
    transition: 0.7s;
}

.process-card:hover::before {
    left: 120%;
}

/* Hover */

.process-card:hover {
    background: linear-gradient(135deg, #0b8a5a, #159c66);
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(11, 138, 90, 0.35);
}

/* Arrow */

.timeline-content {
    position: relative;
}

.timeline-row:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 18px solid #fff;
    transition: 0.3s;
}

.timeline-row:nth-child(even) .timeline-content::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 18px solid #fff;
    transition: 0.3s;
}

.timeline-row:nth-child(odd) .process-card:hover + .timeline-content::after {
    border-left-color: #0b8a5a;
}

.timeline-row:nth-child(even) .process-card:hover + .timeline-content::before {
    border-right-color: #0b8a5a;
}

/* Card Heading */

.process-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
    transition: 0.3s;
}

/* Description */

.process-card p {
    color: #666;
    line-height: 1.8;
    transition: 0.3s;
}

/* Activities */

.process-card ul {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.process-card li {
    position: relative;
    padding: 14px 18px 14px 50px;
    margin-bottom: 12px;
    color: #444;
    border-radius: 10px;
    transition: 0.35s;
}

/* Tick */

.process-card li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0b8a5a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transition: 0.35s;
}

/* Badge */

.process-card .badge {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    background: #0b8a5a !important;
    transition: 0.35s;
}

/* Hover Text */

.process-card:hover h4,
.process-card:hover p,
.process-card:hover li {
    color: #fff;
}

/* Hover Activities */

.process-card:hover li {
    background: rgba(255, 255, 255, 0.12);
}

/* Hover Tick */

.process-card:hover li::before {
    background: #fff;
    color: #0b8a5a;
}

/* Hover Badge */

.process-card:hover .badge {
    background: #fff !important;
    color: #0b8a5a;
}

/* Last Line Hide */

.timeline-row:last-child .timeline-line {
    display: none;
}

/* Responsive */

@media (max-width: 991px) {
    .timeline-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .timeline-center {
        order: -1;
    }

    .timeline-title {
        text-align: center !important;
    }

    .timeline-content::before,
    .timeline-content::after {
        display: none;
    }

    .timeline-line {
        display: none;
    }

    .timeline-circle {
        margin: auto;
    }

    .process-card {
        padding: 25px;
    }

    .timeline-title h3 {
        font-size: 24px;
    }
}
.epr-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fbf9, #eef8f2);
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: #e7f8ef;
    color: #0b8a5a;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.epr-hero h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
}

.epr-hero h1 span {
    color: #0b8a5a;
}

.epr-hero p {
    margin: 30px 0;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.workflow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.workflow-item {
    width: 130px;
    background: #fff;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.workflow-item:hover {
    transform: translateY(-8px);
    background: #0b8a5a;
    color: #fff;
}

.workflow-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: #0b8a5a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: 0.35s;
}

.workflow-item:hover .workflow-icon {
    background: #fff;
    color: #0b8a5a;
}

.workflow-arrow {
    font-size: 28px;
    color: #0b8a5a;
    font-weight: bold;
}
.epr-target-section {
    background: #fff;
}

.epr-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #eef1f4;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.epr-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #0b8a5a;
    transform: scaleX(0);
    transition: 0.35s;
}

.epr-card:hover::before {
    transform: scaleX(1);
}

.epr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.epr-card .icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #e8f8f0;
    color: #0b8a5a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
    transition: 0.35s;
}

.epr-card:hover .icon {
    background: #0b8a5a;
    color: #fff;
    transform: rotateY(180deg);
}

.epr-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.epr-card p {
    color: #666;
    line-height: 1.8;
}
.epr-service-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    transition: 0.35s;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.epr-service-card:hover {
    background: #0b8a5a;
    color: #fff;
    transform: translateY(-8px);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-top i {
    font-size: 42px;
    color: #0b8a5a;
}

.service-top span {
    font-size: 32px;
    font-weight: 700;
    color: #dee2e6;
}

.epr-service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.epr-service-card p {
    color: #6c757d;
}

.epr-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.epr-service-card li {
    padding: 8px 0;
}

.epr-service-card li::before {
    content: "✓ ";
    color: #198754;
    font-weight: bold;
}

.epr-service-card:hover i,
.epr-service-card:hover p,
.epr-service-card:hover span,
.epr-service-card:hover li,
.epr-service-card:hover h4 {
    color: #fff;
}

.epr-service-card:hover li::before {
    color: #fff;
}
.process-number {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #0b8a5a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.process-number i {
    font-size: 28px;
    margin-bottom: 5px;
}

.process-number span {
    font-size: 18px;
    font-weight: 700;
}

.process-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #0b8a5a;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.process-box p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
}

.row:hover .process-box {
    background: #0b8a5a;
    color: #fff;
}

.row:hover .process-box p {
    color: #fff;
}

.row:hover .process-number {
    transform: scale(1.08);
}
.material-card {
    background: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.35s ease;
}

.material-card:hover {
    transform: translateY(-6px);
    border-color: #0b8a5a;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
}

.material-image {
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8faf8, #ffffff);
    border-right: 1px solid #ececec;
}

.material-image img {
    width: 100%;
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
    transition: 0.4s ease;
}

.material-card:hover .material-image img {
    transform: scale(1.08);
}

.material-category {
    background: #e8f7ef;
    color: #0b8a5a;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.4px;
}
.material-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #23313f;
}

.material-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.9;
    margin-top: 15px;
}

.btn-order {
    background: #d4a017;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    transition: 0.3s;
}

.btn-order:hover {
    background: #b8860b;
    color: #fff;
    transform: translateY(-2px);
}

.material-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.material-card .mt-4 {
    margin-top: auto !important;
}

@media (max-width: 991px) {
    .material-image {
        border-right: none;
        border-bottom: 1px solid #ececec;
        min-height: 220px;
    }

    .material-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .material-image {
        min-height: 180px;
        padding: 20px;
    }

    .material-image img {
        max-width: 160px;
        max-height: 160px;
    }

    .material-card h3 {
        font-size: 22px;
    }

    .material-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .btn-order {
        width: 100%;
    }
}
.capacity-section {
    background: #05080d;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.capacity-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -250px;
    top: -250px;
    background: radial-gradient(#3ccf4e25, transparent 70%);
}

.capacity-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    bottom: -250px;
    background: radial-gradient(#3ccf4e18, transparent 70%);
}

.section-tag {
    color: #7ed957;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.capacity-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin: 15px 0;
}

.capacity-title span {
    color: #7ed957;
}

.capacity-subtitle {
    color: #bdbdbd;
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
}

.capacity-box {
    background: linear-gradient(180deg, #11161d, #090c10);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    min-height: 400px;
}

.capacity-box:hover {
    transform: translateY(-8px);
    border-color: #63d64f;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.unit-badge {
    background: #63d64f;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
}

.state-name {
    color: #63d64f;
    font-weight: 600;
}

.green-line {
    width: 45px;
    height: 3px;
    background: #63d64f;
    margin: 18px 0;
}

.address {
    color: #cfcfcf;
    line-height: 1.8;
    max-width: 350px;
}

.plant-image {
    width: 250px;
    opacity: 0.22;
    align-self: flex-end;
}

.counter .comma {
    font-size: 46px;
    color: #8cf24f;
    font-weight: 700;
    margin-top: 10px;
}

.capacity-display {
    padding: 25px 15px;
}

.capacity-number {
    font-size: 60px;
    font-weight: 800;
    color: #79ff4d;
    letter-spacing: 3px;
    text-shadow:
        0 0 10px rgba(124, 255, 84, 0.4),
        0 0 25px rgba(124, 255, 84, 0.2);
}

.capacity-label {
    margin-top: 10px;
    color: #bdbdbd;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.capacity-label i {
    color: #79ff4d;
}
.donation-hero {
    background: #0f172a;
    padding: 110px 0;
    color: #fff;
    overflow: hidden;
}

.hero-badge {
    background: #16a34a;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
}

.hero-title span {
    color: #22c55e;
}

.hero-text {
    font-size: 18px;
    opacity: 0.85;
    line-height: 1.8;
}

.hero-image {
    max-height: 430px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    50% {
        transform: translateY(-15px);
    }
}

.feature-card1 {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s;
}

.feature-card1:hover {
    transform: translateY(-8px);
}

.feature-card1 i {
    font-size: 55px;
    color: #16a34a;
}

.feature-card1 h4 {
    margin-top: 20px;
    font-weight: 700;
}

.donation-counter {
    background: #111827;
    padding: 70px 0;
    color: #fff;
}

.donation-counter h2 {
    font-size: 55px;
    font-weight: 800;
    color: #22c55e;
}

.category-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.category-card:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-5px);
}

.category-card i {
    font-size: 45px;
    margin-bottom: 15px;
    display: block;
}
.donate-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: 0.3s;
    background: #fff;
}

.donate-item:hover {
    background: #198754;
    color: #fff;
    transform: translateX(8px);
}

.donate-item:hover i {
    color: #fff !important;
}

.donate-item i {
    font-size: 28px;
    width: 35px;
}

/* Mobile */
@media (max-width: 768px) {

    .section-title {
        font-size: 28px;
    }

    .hero-content {
        text-align: center;
    }

    .top-header {
        text-align: center;
    }

    .social-icons {
        text-align: center !important;
        margin-top: 10px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .navbar-nav {
        text-align: center;
    }
}
.blog-feature-image{
    width:100%;
    height:500px;
    object-fit:cover;
}

@media(max-width:768px){
    .blog-feature-image{
        height:250px;
    }
}
@media(max-width:768px){

    .display-6{
        font-size:1.8rem;
    }

}
@media(max-width:768px){

    .lead{
        font-size:16px;
    }

}
@media(max-width:768px){

    .blog-btn{
        width:100%;
    }

}
