@font-face {
    font-family: 'DM Sans';
    src: url('../font/dmsans.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/opensans.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/montserrat.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../font/lato.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/roboto.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Astra';
    src: url('../font/astra.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    /*box-sizing: border-box;*/
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Utility Classes */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section__title {
    font-family: "DM Sans", Sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1F4396;
    line-height: 1.3em;
    margin: 0;
}

.section__title2 {
    font-family: "DM Sans", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: rgba(25,25,25,0.81);
    line-height: 1.3em;
    margin: 0;
    padding: 10px;
}

.section__title3 {
    font-family: 'Roboto',sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1F4396;
    line-height: 1.3em;
    margin: 0;
}

.nav__link.active {
    color: #2c5aa0;
}

.section__subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: 1px;
    border-radius: 0px;
    font-family: "DM Sans", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-bottom: 1rem;
}

.btn-circle {
    display: inline-block;
    padding: 16px 32px;
    border: 2px;
    border-radius: 30px;
    font-family: "Open Sans", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-bottom: 1rem;
}

.btn--about {
    padding: 12px 35px;
    background-color: #E95624;
    color: white;
}

.btn--about:hover {
    background-color: #2c5aa0;
}

.btn--primary {
    background-color: #2c5aa0;
    color: white;
}

.btn--primary:hover {
    background-color: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
    color: white;
}

.btn--outline {
    background-color: transparent;
    color: #2c5aa0;
    border: 1px solid #2c5aa0;
}

.btn--outline2 {
    background-color: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-circle--outline {
    background-color: transparent;
    color: #888;
    border: 2px solid #ccc;
}

.btn--outline:hover {
    background-color: #2c5aa0;
    color: white;
}

.btn--outline2:hover {
    background-color: #2c5aa0;
    color: white;
}

/* Header */
.header {
    /* position: fixed;
    top: 0; */
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(1rem - 3px);
}

.nav__logo {
    margin-left: 20px;
    margin-top: 6px;
    max-width: 201px;
    width: 201px;
}

.nav__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-left: 40px;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav__link {
    text-decoration: none;
    color: #888;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #2c5aa0;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__language {
    position: relative;
}

.language-selector {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 100px;
}

.language-selector:hover {
    border-color: #2c5aa0;
}

.language-selector:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.1);
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Dropdown Menu - 修复定位 */
.nav__item--dropdown {
    position: relative;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav__link--dropdown::after {
    content: "\e900";
    font-family: "Astra";
    font-size: 10px;
    margin-top: 2px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav__item--dropdown:hover .nav__link--dropdown::after {
    /*transform: rotate(180deg);*/
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    opacity: 0;
    visibility: hidden;
    /*transform: translateY(10px);*/
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
    border: 1px solid #111;
}

.nav__item--dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu__item {
    display: block;
    padding: 12px 20px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu__item:last-child {
    border-bottom: none;
}

.dropdown-menu__item:hover {
    background-color: #f8f9fa;
    color: #2c5aa0;
}

.dropdown-menu__item--active {
    color: #2c5aa0;
    font-weight: 500;
    background-color: #f0f5ff;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.6)),
                url('../images/placeholder.webp') center/cover;
    z-index: -1;
}

.hero__content {
    max-width: 800px;
    z-index: 1;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 300;
    opacity: 0.9;
}

.hero__description {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Solutions Section */
.solutions {
    background-color: #fff;
}

.solutions__content {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 1px;
    align-items: center;
    margin-top: 40px;
}

.solutions__image {
    text-align: center;
}

.solutions__image img {
    max-width: 100%;
    height: auto;
    width: 500px;
}

.solutions__features h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    font-family: "Lato", Sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: #000;
    padding: 0.5rem;
}

.feature-check {
    font-size: 30px;
    color: rgb(31, 67, 150);
}

.check-icon {
    color: #2c5aa0;
    font-weight: bold;
    font-size: 16px;
}

/* Products Section */
.products {
    background-color: white;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
    margin-top: 40px;
    max-width: 100%;
}

.product-category {
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 18px;
}

.product-category:hover {
    transform: translateY(-5px);
}

.product-category__image {
    max-width: 360px;
    padding: 2px;
    aspect-ratio: auto 375 / 375;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 6px;
    margin: auto;
}

.product-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-category:hover .product-category__image img {
    transform: scale(1.05);
}

.product-category__title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 10px;
    margin-top: 1.6rem;
}

/* Best Sellers Section */
.best-sellers {
    background-color: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 100%;
}

.product-card {
    background: white;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 5px 35px rgba(222, 222, 222, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card__image {
    width: 100%;
    max-height: 250px;
    min-height: 250px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    overflow: hidden;
}

.product-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-card__subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.4;
    min-height: 45px;
}

.product-card__btn {
    font-size: 14px;
    padding: 9px 18px;
}

.product-card__btn:hover {
    color: #fff;
    background-color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 350px;
    object-fit: cover;
}

/* News Section */
.news {
    background-color: #fff;
}

.news-grid-container {
    padding: 0 16px;
}

.news-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.news-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    /* transform: translateY(-5px); */
}

.news-card__image {
    width: 100%;
    height: 460px;
    overflow: hidden;
    transition: filter 0.4s ease;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__image:hover {
    filter: brightness(20%);
    cursor: pointer;
}

.news-card__content {
    padding: 20px;
}

.news-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.news-card__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.news-card__email {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #359;
    line-height: 1.6;
}

.news-card__date {
    font-size: 15px;
    color: #999;
}

/* Empty news card placeholder */
.news-card--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
}

.news-card__placeholder {
    text-align: center;
    color: #999;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .nav__search {
        display: none;
    }

    .section__title, .section__title2, .section__title3 {
        font-family: "DM Sans", Sans-serif;
        font-size: 1.7em;
        font-weight: 700;    
    }

    .product-card {
        margin: 16px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card--empty {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .section__title, .section__title2, .section__title3 {
        font-family: "DM Sans", Sans-serif;
        font-size: 1.7em;
        font-weight: 700;    
    }
}

/* Project Cases Section */
.project-cases {
    background-color: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 0 10px;
}

.case-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
}

.case-card__image {
    width: 100%;
    height: 365px;
    overflow: hidden;
}

.case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card__content {
    padding: 20px 0;
}

.case-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.case-card__description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background-color: #e4effd;
    background: linear-gradient(rgba(228, 239, 253, 0.8), rgba(228, 239, 253, 0.8)), url('../images/home_page_1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 20px;
    background-position-x: center;
    color: #333;
    position: relative;
    overflow: hidden;
}

.cta__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.cta__text {
    text-align: left;
}

.cta__subtitle {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta__title {
    font-size: 44px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta__description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.btn--cta {
    background-color: #e8f0ff;
    color: #2c5aa0;
    border: 1px solid #2c5aa0;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    margin-top: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--cta:hover {
    background-color: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.cta__image {
    text-align: center;
}

.cta__image img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .cta__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta__content > *:first-child {
        order: 2;
    }

    .cta__content > *:last-child {
        order: 1;
    }

    .cta__text {
        text-align: center;
    }
    
    .cta__title {
        font-size: 32px;
    }

    .cases-grid {
        padding: 0;
    }
}

/* Footer */
.footer {
    background-color: #373737;
    color: white;
    padding: 60px 0px 0px 0px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__link {
    padding: 6px 0;
}

.fs-5 {
    font-size: 1.5rem;
    margin-right: 16px;
}

.footer__btn {
    background-color: #FF6400;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.footer__btn:hover {
    background-color: #e55a2b;
}

.footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    /*filter: brightness(0) invert(1);*/
}

.footer__tagline {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.footer__section h4 {
    font-size: 1.364rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer__section ul {
    list-style: none;
    margin: 0;
    padding-top: 20px;
}

.footer__section ul li {
    margin-bottom: 6px;
}

.footer__section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer__section ul li a:hover {
    color: white;
}

.footer__contact {
    padding-top: 20px;
}

.footer__contact p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.footer__contact strong {
    color: white;
    font-weight: 600;
}

.footer__bottom {
    display: flex;
    text-align: left;
    padding: 6px 0;
}

.footer__bottom p {
    color: #fff;
    margin: 0;
    font-size: 15px;
}

.footer__bottom, .footer__bottom .container {
    background-color: #373737;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown-toggle {
    display: none;
}

.toggle-icon {
    display: none;
    font-size: 14px;
    margin-left: 6px;
}

@media (max-width: 768px) {
    .nav__menu li {
        width: 100%;
        position: relative;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    .nav__menu li:first-child {
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
    .nav__link {
        padding-left: 16px;
    }
    
    .nav__link--dropdown::after {
        display: none;
    }
    
    .dropdown-toggle {
        position: absolute;
        right: 3%;
        top: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle.rotate {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu__item {
        font-size: 16px;
        font-weight: 400;
        color: #888;
        padding-left: 32px;
    }

    .dropdown-menu__item:first-child {
        border-top: 1px solid #eee;
    }

    .footer__section.collapsible {
        cursor: pointer;
    }

    .footer__section.collapsible ul,
    .footer__section.collapsible .footer__contact {
        display: none;
    }

    .footer__section.collapsible.active ul,
    .footer__section.collapsible.active .footer__contact {
        display: block;
    }
            
    .footer__section.collapsible.active h4 .toggle-icon {
        transform: translateY(-50%) rotate(180deg);
    }

    .footer__bottom {
        display: block;
    }

    .collapsible h4 {
        margin: 0;
    }

    .toggle-icon {
        display: inline;
    }    
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 10px;
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__actions {
        gap: 15px;
    }

    .language-selector {
        font-size: 11px;
        padding: 4px 8px;
        min-width: 80px;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 36px;
    }

    .solutions__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-categories {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .news-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .hero__title {
        font-size: 28px;
    }

    .product-categories,
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav__right {
        align-items: start;
        padding-left: 0px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer__brand {
        align-items: flex-start;
    }
}


h2, h4 {
    font-size: 1.5em;
    font-weight: 700;
}

h2 {
    font-weight: 700;
    font-family: "Montserrat", Sans-serif;
}

h4 {
    font-family: "Open Sans", Sans-serif;
}

.elementor-section {
    position: relative;
    padding: 607px 0 0 0;
    overflow: hidden;
}

.elementor-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    height: 100%;
}

.elementor-background-slideshow__slide__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.elementor-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    background-color: transparent;
    background-image: linear-gradient(240deg, #FFFFFF00 0%, #031E3AB0 100%);
    opacity: 0.8;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-container {
    position: absolute;
    top: -3.6rem;
    left: 19.5%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    min-height: 164px;
}

.text-container {
    text-align: center;
    max-width: 900px;
}

.elementor-heading-title {
    color: white;
    text-shadow: -1px 0px 6px rgba(7.808662570888461, 7.757608695652168, 19.499999999999982, 0.27);
    margin: 15px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    text-align: left;
}

.elementor-heading-title:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
    margin: 28px 0;
    font-size: 2.5em;
}

.elementor-heading-title:first-child {
    animation: slideDown 3s ease forwards;
}

.elementor-heading-title:nth-child(3) {
    animation: slideUp 3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown2 {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elementor-big {
    opacity: 1;
}

.elementor-small {
    opacity: 0;
}

@media (max-width: 767px) {
    .elementor-big {
        opacity: 0;
    }
    .elementor-small {
        opacity: 1;
    }
    .elementor-section {
        padding: 542px 0 0 0;
    }    
    .elementor-heading-title {
        font-size: 1em !important;
        line-height: 1.3;
        margin-bottom: 0;
    }
    .elementor-heading-title:nth-child(1) {
        position: relative;
        top: 66px;
        animation: slideDown2 3s ease forwards;
        transform: translateY(130px);
    }
    .elementor-heading-title:nth-child(2) {
        font-size: 2em !important;
        margin-top: 0;
        transform: translateY(-40px);
    }
    .elementor-heading-title:nth-child(3) {
        font-size: 1.2em !important;
        width: 50%;
    }
    .elementor-container {
        top: 10%;
        left: -3%;
    }
    .elementor-divider {
        position: relative;
        top: -135px;
        height: 3px;
        width: 60px;
        background-color: #fff;
        margin: 20px 0;
    }
}

.line-container {
    width: 100px;
    margin: 0.72rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line-container img {
    max-width: 100%;
    height: auto;
}

/* Search */
.search-container {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #000;
}

.search-btn {
    position: absolute;
    right: 0;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.search-btn i {
    color: #333;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.search-input {
    position: absolute;
    right: 0;
    height: 46px;
    border: 1px solid #ccc;
    padding: 0 45px 0 20px;
    font-size: 16px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 40px;
    opacity: 0;
    pointer-events: none;
}

.search-container.active .search-input {
    width: 170px;
    opacity: 1;
    pointer-events: auto;
}

.search-input:focus {
    border-color: #333;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #2c5aa0;
}

.breadcrumb-separator {
    color: #999;
    font-weight: 300;
}

.breadcrumb-current {
    color: #2c5aa0;
    font-weight: 500;
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    font-family: 'Segoe UI', sans-serif;
}

.page-item {
    margin: 0 4px;
}

.page-link {
    display: block;
    padding: 6px 14px;
    color: #2c3e50;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.page-link:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateY(-2px);
}

.active .page-link {
    background-color: #2980b9;
    color: white;
    border-color: #2980b9;
    font-weight: bold;
}

.disabled .page-link {
    color: #bdc3c7;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .page-link {
        padding: 6px 12px;
        font-size: 0.9em;
    }
}