/* Base Styles */
:root {
    --primary-color: #0f172a;
    --secondary-color: #ff5722;
    --accent-color: #0088cc;
    --text-color: #333;
    --light-bg: #f5f7ff;
    --white: #ffffff;
    --gray: #6b7280;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial,'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3.1rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

section {
    padding: 80px 0;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
    padding-right: 6px;
    font-size: 20px;
    position: relative;
    top: -4px;
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 20px;
    /* background-color: var(--secondary-color); */
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    margin-left: calc((1200px - 123px) / 2 );
    transition: var(--transition);
}

.btn-learn-more:hover {
    background-color: #e64a19;
    color: var(--white);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background-color: var(--light-bg);
    background-image: url('https://image.evget.com/Content/images/202003/05/610c39efe332c3c2ca1c30dd5a6e315c.png') ;
    background-size: 100% 100%;
    padding: 100px 0;
    height: 540px;
}

.hero-content {
    max-width: 1100px;
    text-align: left;
}

.hero-content h1 {
    margin-top: 4rem;
    margin-bottom: 3.5rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--white);
}

/* Culture Section */
.culture-section {
    background-color: var(--white);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.culture-card {
    /* background-color: var(--light-bg); */
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Brand Section */
.brand-section {
    background-color: var(--light-bg);
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.brand-text {
    flex: 1;
}

.brand-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.brand-text ul {
    margin-bottom: 2rem;
}

.brand-text li {
    margin-bottom: 1rem;
    display: flex;
}

.brand-text li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}

.brand-image {
    width: 54%;
    display: grid;
    align-items: center;
    justify-items: center;
}

.brand-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* Business Section */
.business-section {
    background-color: var(--white);
}

.business-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

/* .business-card.reverse {
    flex-direction: row-reverse;
} */

.business-image {
    flex: 1;
}

.business-content {
    flex: 1;
}

.business-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.business-content p {
    margin-bottom: 1.5rem;
}

.business-content ul {
    margin-bottom: 1.5rem;
}

.business-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.business-content li::before {
    content: "√";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Case Studies Section */
.case-studies-section {
    background-color: var(--light-bg);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-image {
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-image>img{
    max-height: 100%;
}

.case-card h3 {
    padding: 20px 20px 10px;
}

.case-card p {
    padding: 0 20px 20px;
    color: var(--gray);
}

/* Why Evget Section */
.why-evget-section {
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-card:nth-child(1) .stat-number {
    color: var(--secondary-color);
}

.stat-card:nth-child(2) .stat-number {
    color: var(--accent-color);
}

.stat-card:nth-child(3) .stat-number {
    color: #e91e63;
}

.stat-card:nth-child(4) .stat-number {
    color: #ff9800;
}

.stat-card h3 {
    margin-bottom: 1rem;
}

.stat-card p {
    color: var(--gray);
}

/* Life Section */
.life-section {
    background-color: var(--light-bg);
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.life-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.life-card:hover {
    transform: translateY(-5px);
}

.life-image {
    height: 200px;
    overflow: hidden;
}

.life-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.life-card:hover .life-image img {
    transform: scale(1.05);
}

.life-card h3 {
    padding: 20px;
    text-align: center;
}

/* Join Section */
.join-section {
    background-color: var(--white);
    text-align: center;
}
.join-section .container a{
    color: #0088cc;
}
.join-section .container a:hover{
    color: #e64a19;
}

.join-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: left;
}

.email-link {
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #a0aec0;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #a0aec0;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
}

.anli{    display: inline-block;
    padding: 10px 20px;
    color: var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
    position: relative;
    left: 60.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .globe,.anli{display: none;}
    .brand-content {
        flex-direction: column;
    }
    
    .business-card, .business-card.reverse {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    .btn-learn-more{
        margin-left: 0;
    }
    .stats-grid{
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .globe{display: none;}
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .footer-links {
        gap: 30px;
    }
    .hero-section{
        background-size: cover;
        padding: 60px 0;
    }
    .hero-content h1{
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .globe{display: none;}
    .footer-links {
        flex-direction: column;
    }
}

.globe{font-size: 24px;cursor: pointer;}
    .navMenu .hover .globe{color: #fff}
    
    #faglobe:hover span, .globe:hover ul li {
    background: #fff;
    color: rgba(33, 33, 33, 0.7);
    display: block;
    }
    
    .globe:hover ul li {
    transform: skew(0);
    width: 100px;
    height: 70px;
    }
    .globe:hover ul li:nth-child(1) {
    left: 0;
    z-index: -1;
    height: 25px;
    background: transparent;
    }
    .globe:hover ul li:nth-child(2) {
    left: 0;
    }
    .globe:hover ul li:nth-child(3) {
    left: 0;
    }

    .globe * {
    transition: all 300ms ease-in-out;
    }
    .globe ul {
    list-style: none;
    position: relative;
    top: -20px;
    }
    .globe ul li {
    transform: skew(45deg) scaleY(-3);
    position: absolute;
    display: block;
    width: 100px;
    height: 70px;
    background: transparent;
    cursor: pointer;
    display: none;
    text-align: center;
    }
    .globe ul li>p{
        font-size: 16px;
        padding: 10px 0 0;
        margin: 0;
        font-weight: 600;
    }
    .globe ul li>a{
        font-size: 13px;
        position: relative;
        top: -8px;
        left: 0px;
    }
    .globe ul li:nth-child(1) {
    top: 5px;
    left: -100%;
    height: 25px;
    background: transparent;
    }
    .globe ul li:nth-child(2) {
    top: 21px;
    left: 100%;
    }
    .globe ul li:nth-child(3) {
    top: 90px;
    left: -100%;
    padding-top: 10px;
    }
    .globe ul li:hover {
    z-index: 99;
    }
    .globe>div>span{font-size: 16px;position: relative;top: -3px; text-transform: none;}
    .globe>div>span>.fa{padding-left: 6px;}

    .tabs div {
        cursor: pointer;
        text-decoration: none;
        width: 150px;
        height: 46px;
        color: #FFFFFF;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 27px auto;
        background: #fb4006;
        border-radius: 4px;
        color: #fff;
    }
    .layui-layer {border-radius: 11px;}
    .PopShow {width: 100%;height: 100%;}
    .Z-title1 {
        width: 100%;
        height: 126px;
        display: flex;
        align-items: center;
        font-weight: 500;
        justify-content: center;
        background-repeat: no-repeat;
        font-size: 21px;
        background-color: #fb4006;
        border-radius: 11px 11px 0px 0px;
        color: #fff;
        background-image: url(https://image.evget.com/2022/09/06/4skxwykbi98lp65wf.jpg);
    }
    .from-item {
        display: flex;
        border: 1px solid #E5E5E5;
        font-size: 16px;
        border-radius: 8px;
        align-items: center;
        padding: 0 10px;
        position: relative;
        height: 54px;
        width: 80%;
        margin: 15px auto 5px;
    }
    input[type="text"], input[type="password"], div, ul, li, input, a {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-appearance: none;
    }
    div, table, form, input, button, select, textarea, fieldset, legend {outline: none;}
    input {margin: 0 ;border: none ;}
    .form-list .form-label {
        font-weight: 400;
        font-size: 16px;
        color: #1F2C3D;
        width: 92px;
    }
    .form-list .form-input, .dcc-form1 .form-list .form-textarea {
        margin-top: 8px;
        display: block;
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-weight: 400;
        font-size: 16px;
        color: #1F2C3D;
    }
    .from-item-input {
        margin: 0 !important;
        border: none !important;
    }
    .Z-content1 form .submit{
        display: block;
        width: 80%;
        height: 46px;
        line-height: 46px;
        border: none;
        margin: 40px auto 0px;
        font-size: 16px;
        cursor: pointer;
        background: #fb4006;
        border-radius: 8px;
        color: #fff;
    }
    .layui-layer-btn {text-align: center;}
    .layui-layer-btn .layui-layer-btn0 {
        border-color: #fb4006;
        background-color: #fb4006;
        color: #fff !important;
    }
    .layui-layer-dialog .layui-layer-padding {
        text-align: center;
    }
    .form-text>input{height: 45px;}
