/*=========
Font load
===========*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #125a0f;
    --secondary-color: #008f00;
    --light-color: #eeeeee;
    --dark-color: #2c3e50;
    --bg-white: #fff;
    --text-white: #fff;
    --text-color: #333;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: #222222;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar Styles */
.topbar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.8rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a,
.social-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.contact-info a:last-child,
.social-links a:last-child {
    margin-right: 0;
}

.social-links a {
    margin-right: 15px;
}

/* Navbar Styles */
.navbar {
    background: white;
    padding: 7px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: var(--primary-color);
}

.logo img {
    width: 100px;
    height: 90px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 30px;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.cta-button {
    background: var(--secondary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
}

.cta-button:hover {
    background: #125a0f;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Offcanvas Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.offcanvas-menu.active {
    right: 0;
}

.menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background: var(--primary-color);
    color: white;
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.menu-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.menu-contact-info a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.menu-contact-info a:hover {
    color: var(--secondary-color);
}

.menu-contact-info i {
    color: var(--secondary-color);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.menu-links a {
    padding: 10px 0;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.menu-links a:hover,
.menu-links a.active {
    color: var(--secondary-color);
}

.menu-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.menu-social a {
    color: var(--text-color);
    background: #f5f5f5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-social a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('../img/banner.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .topbar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    /* background: var(--light-color); */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 95%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.about-image .about-box {
    width: 200px;
    height: 200px;
    background: #008f00;
    border-radius: 10%;
    position: absolute;
    bottom: -30px;
    right: -10px;

}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 30px;
}

.achievements {
    list-style: none;
    margin-bottom: 30px;
}

.achievements li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.achievements i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    /* display: inline-flex; */
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

.read-more i {
    transition: var(--transition);
    font-size: 1.2rem;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1531834685032-c34bf0d84c77') center/cover fixed;
    position: relative;
    color: white;
}

.counter-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for desktop */
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.counter-item h4 {
    font-size: 1.2rem;
}

/* Update media queries for counter grid */
@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
        gap: 40px 20px;
    }
}

@media (max-width: 480px) {
    .counter-grid {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
        gap: 30px;
    }
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: var(--light-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.package-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price .period {
    color: #666;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.package-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 80px 0;
    background: #f3fff3;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-us-text>p {
    margin-bottom: 40px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reason-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Additional Media Queries */
@media (max-width: 768px) {
    .why-us-content {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        order: -1;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;

}

.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    bottom: 0;
}

.project-overlay h3 {
    margin-bottom: 5px;
}

.project-overlay i {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Details */
.project-details {
    background: var(--bg-white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 10px;

}

.client-info i {
    color: var(--secondary-color);
}

.project-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-item i {
    color: var(--secondary-color);
    width: 20px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    text-align: center;
}

.lightbox-image-container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    cursor: move;
    /* Show move cursor when image is zoomable */
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    transform-origin: center;
    transition: transform 0.3s ease;
    user-select: none;
}

.lightbox-zoom-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 1001;
}

.lightbox-zoom-controls button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-zoom-controls button:hover {
    background: var(--secondary-color);
}

/* Add styles for when image is being dragged */
.lightbox-image.dragging {
    transition: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

.lightbox-nav:hover {
    background: var(--secondary-color);
}

.prev-image {
    left: 20px;
}

.next-image {
    right: 20px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.lightbox-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-dot.active {
    background: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f3fff3;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: center;
}

.client-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--secondary-color);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex-grow: 1;
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-content span {
    color: #666;
    font-size: 0.9rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.prev-slide,
.next-slide {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--secondary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
}

/* Additional Media Queries */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .client-image {
        margin: 0 auto;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .cta-button {
    padding: 10px 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Additional Media Queries */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--secondary-color);
    padding-left: 25px;
}

/* Update mobile menu styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        justify-content: space-between;
    }

    .nav-links .dropdown a {
        margin: 0;
    }
}





/*--------------------------------------------------------------
# Provide One
--------------------------------------------------------------*/
.Provide-One {
    position: relative;
    display: block;
    z-index: 1;
}

.provide-one__bg-shape img {
    width: auto;
}

.Provide-One__wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.Provide-One__left {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    min-height: 705px;
}

.Provide-One__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.provide-one__sopport {
    position: absolute;
    max-width: 375px;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 34px 48px 38px;
    border-top-left-radius: 16px;
    background-color: var(--secondary-color);
}

.provide-one__support-icon {
    position: relative;
    display: inline-block;
}

.provide-one__support-icon span {
    font-size: 66px;
    color: var(--dark-color);
}

.provide-one__support-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.04em;
    color: #fff;
    margin-left: 17px;
}

.Provide-One__right {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    padding-left: 100px;
    background-color: var(--primary-color);
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 1;
    min-height: 705px;
}

.provide-one__bg-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.07;
    z-index: -1;
}

.provide-one__bg-shape img {
    width: auto;
}

.Provide-One .section-title {
    margin-bottom: 29px;
}

.Provide-One .section-title__tagline {
    color: #9dbe91;
}

.Provide-One .section-title__title {
    color: var(--bg-white);
    font-size: 50px;
}

.Provide-One__content {
    position: relative;
    display: block;
    max-width: 465px;
    width: 100%;
}

.Provide-One__text {
    color: #9dbe91;
    padding-bottom: 30px;
}

.Provide-One__progress-wrap {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .Provide-One__progress-wrap {
        grid-template-columns: repeat(2, 255px);
    }
}

@media (max-width: 768px) {
    .Provide-One__left {
        display: none;
    }

    .Provide-One__right {
        position: relative;
        display: block;
        float: none;
        width: 100%;
        padding-left: 30px;
        background-color: var(--primary-color);
        padding-top: 80px;
        padding-bottom: 80px;
        z-index: 1;
        min-height: auto;
    }
}

.Provide-One__progress {
    position: relative;
    display: flex;
    align-items: center;
}

.Provide-One__progress-box {
    position: relative;
    top: 10px;
    border: 5px solid var(--bg-white);
    border-radius: 50%;
    width: 80px;
    height: 80px;
}


.Provide-One__progress-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translateY(-50%) translateX(-50%);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: var(--bg-white);
}

.Provide-One__progress-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--bg-white);
    margin-left: 20px;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial {
    display: flex;
    align-items: center;
}
.testimonial-three {
    width: 100%;
    position: relative;
    display: block;
    background-color: #f3fff3;
    padding: 100px 0 125px;
    z-index: 1;
    overflow: hidden;
}

.testimonial-three__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 434px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.testimonial-three__left {

    display: block;
    z-index: 15;
    width: 30%
}

.testimonial-three__right {
 
    display: block;
    margin-top: 39px;
    width: 69%;
}

.testimonial-three__carousel {
    position: relative;
    display: block;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-three__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
}

.testimonial-three__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-three__carousel .testimonial-one__client-img img {
    border: 10px solid #f0f0f0;
}

.testimonial-three__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 50px;
    left: -350px;
    margin: 0;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.5);
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.5);
    font-size: 15px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.5);
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.5);
    font-size: 15px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev:hover {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    ;
}

.testimonial-one__single {
    position: relative;
    display: block;
    background-color: var(--bg-white);
    border: 1px solid #ece9e0;
    border-radius: 10%;
    padding: 57px 50px 75px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.testimonial-one__single:hover {
    border: 1px solid rgba(var(--agrion-base-rgb), 0);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.testimonial-one__single::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid transparent;
    border-radius: 10%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__single:hover:before {
    border: 2px solid var(--secondary-color);
}

.testimonial-one__content {
    position: relative;
    display: block;
}

.testimonial-one__text {
    font-size: 18px;
    line-height: 34px;
}

.testimonial-one__client-info {
    position: absolute;
    top: -108px;
    left: -14px;
}

.testimonial-one__client-img {
    position: relative;
    display: inline-block;
    width: 96px;
}

.testimonial-one__client-img img {
    width: 100%;
    border-radius: 50%;
    border: 10px solid var(--bg-white);
}

.testimonial-one__client-details-box {
    position: absolute;
    bottom: -25px;
    left: -1px;
}

.testimonial-one__client-details-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 24px solid transparent;
    border-right: 24px solid #1a5305;
    border-left: 24px solid transparent;
}

.testimonial-one__client-details {
    background-color: var(--primary-color);
    padding-left: 50px;
    padding-right: 100px;
    padding-top: 15px;
    padding-bottom: 18px;
    border-bottom-left-radius: 10px;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
}

.testimonial-one__client-name {
    font-size: 18px;
    color: var(--bg-white);
    font-weight: 700;
    font-family: var(--agrion-font);
    line-height: 22px;
}

.testimonial-one__client-sub-title {
    font-size: 12px;
    color: #9dbe91;
    line-height: 12px;
}


.testimonial-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .testimonial {
        display: block;
    }
    .testimonial-three__left {
        width: 100%;
        display: block;
    }

    .testimonial-three__right {
        width: 100%;
        display: block;
    }
}

.projects-section .owl-carousel .item {
    background: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--secondary-color);
}

.projects-section h4 {
    text-align: center;
    color: var(--primary-color);

    line-height: 2;
   
}

.products-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.products {
    margin: 0 0 50px 0;
}

.projects-section .owl-prev, .projects-section .owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border:0px solid black;
    
}
.projects-section .owl-prev { left: -20px; }
.projects-section .owl-next { right: -0px; }
.projects-section .owl-prev i, .projects-section .owl-next i {

    padding: 10px;
    font-size: 24px;
    color: var(--text-white);
    border-radius: 10%;
    background: var(--primary-color);
}

.products .item {
   
}
.products .item h4 {
    height: 80px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-products {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 140px;
}

/* products */
.jybhaj-products {
    padding: 80px 0;
    background: #f3fff3;
}

.jybhaj-products .products-content {

    gap: 50px;
    align-items: center;
}

.jybhaj-products .products-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.jybhaj-products .products-text>p {
    margin-bottom: 40px;
}

.jybhaj-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.jybhaj-products .product-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.jybhaj-products .product-item:hover {
    transform: translateY(-5px);
}

.jybhaj-products .product-item img {
    width:100%
}

.jybhaj-products .product-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}