@import url('https://fonts.googleapis.com/css2?family=Coiny&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Color Variables */
:root {
    --green: #1a8930;
    --red: #e53935;
    --yellow: #FFDF00;
    --dark: #2c2c2c;
    --light: #f5f5f5;
    --white: #ffffff;
}

/* Header Styles */
.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    position: fixed;
    background: var(--dark);
    color: var(--white);
}

.header-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    background-color: #9e9e99;
}

.header-top .logo {
    max-width: 180px;
}

.header-top .logo,
.header-top .logo img {
    width: 100%;
}

.header.scrolled .header-top {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    display: none;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bottom .main-nav ul {
    margin-bottom: 0;
    padding-left: 0;
}

.header__name-company h2 {
    font-size: 26px;
    text-transform: uppercase;
    color: #FFDF00;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 40px;
}

.header__slogan p {
    font-size: 18px;
    color: #fff;
    font-style: italic;
    font-family: 'Coiny', cursive;
}

.logo h2 {
    color: var(--green);
    font-size: 1.8rem;
    font-weight: bold;
}

.header.scrolled .logo h2 {
    color: var(--yellow);
}

.hotline,
.hotline a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-decoration: unset;
    display: flex;
    flex-direction: column;
}

.hotline a i {
    color: var(--yellow);
}

.hotline a {
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.header.scrolled .hotline,
.header.scrolled .hotline a {
    color: #fff;
}

.header.scrolled .hotline {
    color: var(--white);
}

.header-bottom {
    padding: 10px 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-size: 18px;
    font-weight: 600;
}

.header.scrolled .main-nav a {
    color: var(--white);
}

.main-nav a:hover {
    color: var(--green);
}

.header.scrolled .main-nav a:hover {
    color: var(--yellow);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

section {
    padding: 40px 0;
}

@media screen and (max-width: 991px) {
    section {
        padding: 30px 0;
    }
}

@media screen and (max-width: 767px) {
    section {
        padding: 20px 0;
    }
}

/* Hero Section */
section.hero {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 41 / 16;
    padding: 0;
}

@media screen and (max-width: 767px) {
    section.hero {
        margin-top: 79px;
    }
}

@media screen and (max-width: 576px) {
    section.hero {
        margin-top: 60px;
    }
}

.hero .heroSwiper {
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video img {
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 137, 48, 0.8) 0%, rgba(26, 137, 48, 0.4) 50%, rgba(26, 137, 48, 0.1) 100%);
    z-index: 1;
} */

.hero-content {
    color: var(--white);
    max-width: 735px;
    z-index: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(251, 192, 45, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: var(--yellow);
    margin: 0 auto;
}

/* Featured Projects */
.featured-projects {
    /* padding: 40px 0; */
    background: var(--light);
}

.featured-projects .swiper-wrapper {
    padding: 0;
}

.projects-swiper {
    padding-bottom: 50px;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.project-image {
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-content p {
    color: #666;
    line-height: 1.6;
}

/* Services */
/* .services {
    padding: 40px 0;
} */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 15px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 15px 10px 10px;
}

.service-content h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--red);
}

/* Videos */
.videos {
    /* padding: 40px 0; */
    background: var(--light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}

.video-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 25px;
}

.video-content h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.video-content p {
    color: #666;
    line-height: 1.6;
}

/* Partners */
/* .partners {
    padding: 40px 0;
} */

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-height: 90px;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #9e9e99;
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.top-footer {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--yellow);
}

.facebook-fanpage {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.fanpage-placeholder p {
    margin-bottom: 10px;
}

.follow-btn {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.follow-btn:hover {
    background: var(--yellow);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--yellow);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.project-home__cat {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.project-home__cat h3 {
    font: 600 22px / 20px 'Roboto', sans-serif;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px;
    background-color: var(--green);
    width: 80%;
    position: relative;
    margin-bottom: 0;
}

.project-home__cat h3:after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% + 0%);
    border-left: 40px solid var(--green);
    border-top: 40px solid transparent;
    height: 100%;
}

.project-home__cat a {
    width: 20%;
    color: #000;
    background-color: #9e9e99;
    padding: 10px;
    text-align: center;
    font: 600 18px / 20px 'Roboto', sans-serif;
    display: block;
}

@media screen and (max-width: 991px) {
    .project-home__cat a {
        width: 30%;
    }

    .project-home__cat h3 {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .box-content h3 {
        font-size: 20px;
        line-height: 22px;
    }
}

@media screen and (max-width: 736px) {
    .project-home__cat a {
        width: 35%;
        padding-left: 35px;
        font-size: 16px;
    }

    .project-home__cat h3 {
        width: 65%;
        font-size: 16px;
    }
}

.logo-footer img {
    width: 100%;
    height: 100%;
}

.logo-footer {
    max-width: 175px;
    width: 100%;
}

/* ------------------------- Project ----------------------- */

.da-thumbs li {
    position: relative;
}

.da-thumbs,
.da-thumbs li {
    list-style-type: none;
}

.da-thumbs .swiper-pagination {
    bottom: -5px !important;
}

.da-thumbs li a {
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.da-thumbs li a,
.da-thumbs li a img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.da-thumbs li a,
.da-thumbs li a img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.da-thumbs li a img {
    aspect-ratio: 10/9;
}

.da-thumbs li a>div {
    position: absolute;
    background: rgb(26 137 48 / 70%);
    width: 100%;
    height: 100%;
    padding: 20px;
}

.da-thumbs li a div .project-group__info {
    text-transform: uppercase;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.da-thumbs li a div .project-group__info h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.da-thumbs li a div .project-group__info p {
    font-size: 14px;
    text-transform: none;
}

.project-group__cat {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
}

.project-group__cat__icon {
    font-size: 25px;
    margin-right: 10px;
    position: absolute;
    bottom: 10px;
    left: 10px !important;
    z-index: 999;
    top: auto !important;
}

.project-group__cat__show {
    text-align: right;
    font-weight: 500;
    position: absolute;
    top: auto !important;
    bottom: 10px;
    right: 10px;
    left: auto !important;
    z-index: 999;
    max-width: 80%;
}

.project-group__caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.project-group__caption {
    padding: 15px;
    box-shadow: 0px 6px 12px 2px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.project-group__caption li {
    box-shadow: none;
    margin-bottom: 0;
    width: 50%;
}

.project-group__caption h4 {
    margin-bottom: 0;
    height: 45px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.project-group__caption h4 a {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #3f3f3f;
}

.project-group__caption li:last-child {
    border-left: 1px solid #ccc;
    text-align: right;
}

.project-group__caption p {
    padding-left: 10px;
    line-height: normal;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 23px;
    height: 45px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
}

.header-sm #hamburger {
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.header-sm {
    background-color: #fff !important;
    padding: 2px 0;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

@media screen and (max-width: 991px) {
    .header-sm .logo img {
        margin: 5px 0;
        max-height: 65px;
        max-width: 280px;
    }
}

@media screen and (max-width: 576px) {
    .header-sm .logo img {
        max-width: 95px;
    }
}

.page-title {
    position: relative;
    padding: 10px 0;
    background: #f7f7f7 url(../images/bg-breadcrumb.png);
}

@media screen and (max-width: 767px) {
    .page-title {
        margin-top: 80px;
    }
}

@media screen and (max-width: 576px) {
    .page-title {
        margin-top: 60px;
    }
}

.breadcrumbs ul li {
    display: inline-block;
    position: relative;
    margin-right: 25px;
    color: #2e363a;
}

.breadcrumbs ul li:before {
    position: absolute;
    right: -14px;
    top: 0;
    font-family: "FontAwesome";
    content: "\f105";
    color: #2e363a;
}

.breadcrumbs ul li:last-child::before {
    width: 0;
    height: 0;
    background-color: transparent;
    content: "";
}

.breadcrumbs ul li a {
    color: #2e363a;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

/* Single Page Detail  */
h2.title-post {
    font-weight: 700;
}

.main-content {
    padding: 50px 0;
}

@media screen and (max-width: 767px) {
    .main-content  {
        padding: 20px 0;
    }
}
@media screen and (max-width: 991px) {
    .main-content  {
        padding: 30px 0;
    }
}

.page-single .page-content {
    width: 65.81196581196581%;
    float: left;
}

.page-single h2.title-post {
    font-size: 25px;
    text-align: center;
    color: #000;
}

.page-single .page-sidebar {
    width: 34.18803418803419%;
    float: left;
}

/* .sidebar {
    padding-left: 50px;
} */

.sidebar-nav {
    margin-bottom: 40px;
}

.sidebar-nav ul {
    padding: 0;
    list-style: none;
}

.sidebar .widget {
    margin-bottom: 30px;
    position: relative;
}

.widget .widget-title {
    position: relative;
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #121212;
}

.widget ul {
    padding: 0;
    margin: 0;
}

.widget.widget-recent-news ul li {
    padding: 20px 0 8px;
    overflow: hidden;
}

.sidebar-nav {
    margin-bottom: 20px;
}

.sidebar-nav ul {
    padding: 0;
    list-style: none;
}

.sidebar-nav ul li a {
    display: block;
    padding: 10px 20px 10px 30px;
    margin-bottom: 5px;
    color: #333333;
    font-weight: 500;
    background-color: #D7D7D7;
    position: relative;
}

.sidebar-nav ul li a:after {
    content: "";
    position: absolute;
    top: 19px;
    left: 15px;
    height: 0;
    width: 0;
    border-bottom: 4.5px solid transparent;
    border-top: 4.5px solid transparent;
    border-left: 4.5px solid #222222;
}

.sidebar .widget {
    margin-bottom: 30px;
    position: relative;
}

.widget .widget-title {
    position: relative;
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #121212;
}

.widget.widget-recent-news ul li {
    padding: 20px 0 8px;
    overflow: hidden;
}

.widget.widget-recent-news ul li .thumb {
    float: left;
    margin-right: 20px;
}

.widget.widget-recent-news ul li .text {
    overflow: hidden;
    position: relative;
}

.sidebar-nav ul li a:hover {
    background-color: #ffc000;
    color: #ffffff;
}

.sidebar-nav ul li a:hover::after,
.sidebar-nav ul li a.active:after {
    border-left: 4.5px solid #ffffff;
}

.widget.widget-recent-news ul li .text h6,
.widget.widget-recent-news ul li .text h6 a {
    line-height: 20px;
    font-size: 15px;
    color: #222222;
    font-weight: 500;
    margin-bottom: 0;
}

.widget.widget-recent-news ul li .text p {
    font-size: 12px;
    color: #ffc000;
    margin-top: 10px;
}

.widget.widget-recent-news ul li .thumb {
    float: left;
    margin-right: 20px;
}

.breadcrumbs ul {
    margin-bottom: 0;
    padding-left: 0;
}

/* GoTop Button
-------------------------------------------------------------- */
.go-top {
    position: fixed !important;
    right: -35px;
    bottom: 130px;
    width: 45px;
    cursor: pointer;
    background-color: #9e9e99;
    height: 45px;
    line-height: 45px;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

.go-top.show {
    right: 15px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    z-index: 99;
}

.go-top i {
    font-size: 18px;
    color: #000;
    padding-bottom: 3px;
}

.go-top:hover {
    background-color: #000;
}

.go-top:hover i {
    color: #ffffff;
}

@media screen and (max-width: 991px) {
    .go-top {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.page-archive h2.section-title {
    font-size: 30px;
}

.section-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 36px;
    margin: 20px 0;
    color: #ffc000;
}

.bg-light {
    background-color: #9e9e99 !important;
    padding: .5rem !important;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.bg-light h5 {
    height: 46px;
    overflow: hidden;
    line-height: 24px;
    margin-bottom: 5px !important;
}

.bg-light h5 a {
    color: #000;
}

.time-post,
.time-post a {
    color: #000;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom:hover img {
    transform: scale(1.1, 1.1);
    transition: 0.5s;
}

.time-post:hover,
.time-post a:hover {
    color: #ff0000;
}

.page-archive .item:hover {
    transition: 0.3s;
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, .12);
    transform: translateY(-5px);
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    padding: 12px 24px;
    background-color: #ffc000;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

ul.popular-news .thumb img {
    max-width: 100px;
    max-height: 100px;
}

.share-single li {
    list-style-type: none;
}

.footer-bottom a {
    text-decoration: underline;
}

/* Testimonial */
.swiper.testimonial-swiper {
    width: 100%;
    padding: 20px 0 0;
}

.testimonial-swiper .swiper-slide {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 450px;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-swiper .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.customer-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
}

.customer-avatar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.3;
    transform: scale(1.2);
    z-index: -1;
}

.customer-name {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.company-name {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.star-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 30px;
}

.star {
    width: 24px;
    height: 24px;
    position: relative;
}

.star::before {
    content: "★";
    font-size: 24px;
    color: #e9ecef;
    position: absolute;
    transition: color 0.3s ease;
}

.star.filled::before {
    color: #ffd700;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 500px;
    font-style: italic;
    position: relative;
    margin-bottom: 20px;
}

.testimonial-text::before {
    content: "";
    font-size: 80px;
    color: #f1f3f4;
    position: absolute;
    top: -30px;
    left: -40px;
    font-family: serif;
    z-index: -1;
}

.testimonial-text::after {
    content: "";
    font-size: 80px;
    color: #f1f3f4;
    position: absolute;
    bottom: -50px;
    right: -40px;
    font-family: serif;
    z-index: -1;
}

/* Swiper Navigation Styling */
.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    margin-top: -27.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
    background: #667eea;
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.testimonial-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    transition: color 0.3s ease;
}

.testimonial-swiper .swiper-button-next:hover::after,
.testimonial-swiper .swiper-button-prev:hover::after {
    color: white;
}

.testimonial-swiper .swiper-button-next {
    right: 20px;
}

.testimonial-swiper .swiper-button-prev {
    left: 20px;
}

/* Swiper Pagination Styling */
.testimonial-swiper .swiper-pagination {
    bottom: 20px;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: #667eea;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1280px) {
    .testimonial-section {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .testimonial-swiper .swiper-slide {
        padding: 40px 30px;
        min-height: 400px;
        border-radius: 16px;
    }

    .customer-avatar {
        width: 75px;
        height: 75px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .customer-name {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .company-name {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .star-rating {
        margin-bottom: 25px;
        gap: 4px;
    }

    .star {
        width: 20px;
        height: 20px;
    }

    .star::before {
        font-size: 20px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 60px;
    }

    .testimonial-text::before {
        top: -20px;
        left: -25px;
    }

    .testimonial-text::after {
        bottom: -35px;
        right: -25px;
    }

    .testimonial-swiper .swiper-button-next,
    .testimonial-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
        margin-top: -22.5px;
    }

    .testimonial-swiper .swiper-button-next::after,
    .testimonial-swiper .swiper-button-prev::after {
        font-size: 16px;
    }

    .testimonial-swiper .swiper-button-next {
        right: 10px;
    }

    .testimonial-swiper .swiper-button-prev {
        left: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-swiper .swiper-slide {
        padding: 30px 25px;
        min-height: 450px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .customer-name {
        font-size: 20px;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        display: none;
    }

    .testimonial-swiper .swiper-button-next,
    .testimonial-swiper .swiper-button-prev {
        display: none;
    }
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a67d8;
}

/* Partner Logos Slider Styles */

.partner-logos-section {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background for contrast */
    text-align: center;
}

.partner-logos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.partner-logos-section .section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.partner-logos-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4CAF50; /* Green accent */
}

/* Swiper container specific styles */
.partner-logos-slider {
    width: 100%;
    height: auto; /* Adjust height as needed */
    padding-bottom: 40px; /* Space for pagination dots */
}

.partner-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Padding around each logo */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

.partner-logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */
    padding: 10px; /* Inner padding for the logo itself */
    box-sizing: border-box;
}

.partner-logo-item:hover .partner-logo-image {
    filter: grayscale(0%); /* Full color on hover */
    transform: scale(1.05); /* Slightly scale on hover */
}

.partner-logos-slider .swiper-wrapper {
    align-items: center;
}

/* Swiper Navigation (Arrows) */
.partner-logos-slider .swiper-button-next,
.partner-logos-slider .swiper-button-prev {
    color: #4CAF50; /* Green arrows */
    width: 40px;
    height: 40px;
    margin-top: -20px; /* Center vertically */
}

.partner-logos-slider .swiper-button-next::after,
.partner-logos-slider .swiper-button-prev::after {
    font-size: 24px; /* Adjust arrow size */
}

/* Swiper Pagination (Dots) */
.partner-logos-slider .swiper-pagination-bullet {
    background-color: #ccc; /* Inactive dot color */
    opacity: 1;
}

.partner-logos-slider .swiper-pagination-bullet-active {
    background-color: #4CAF50; /* Active dot color */
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}