/*
Theme Name: EmployeeVibes Theme
Theme URI: https://www.employeevibes.com
Author: OpenAI
Description: Lightweight custom WordPress theme for EmployeeVibes
Version: 1.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: employeevibes
*/

/* ===================================
RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

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

a{
    transition:.3s ease;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===================================
HEADER
=================================== */

.ev-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(0,0,0,.06);
}

.ev-header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:84px;
}

.ev-logo img{
    max-height:52px;
    width:auto;
}

.ev-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.ev-menu{
    display:flex;
    align-items:center;
    gap:34px;
    list-style:none;
}

.ev-menu li a{
    text-decoration:none;
    color:#0f172a;
    font-size:15px;
    font-weight:600;
}

.ev-menu li a:hover{
    color:#2563eb;
}

.ev-mobile-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
}

.ev-mobile-toggle span{
    width:26px;
    height:2px;
    background:#0f172a;
}

/* ===================================
FIXED BOOK DEMO BUTTON
=================================== */

.btnBookNow{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:99999;
    writing-mode:vertical-rl;
    text-orientation:mixed;
    display:flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(180deg,#7c3aed,#6366f1);
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    letter-spacing:1px;
    padding:22px 14px;
    border-radius:14px 0 0 14px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.btnBookNow:hover{
    padding-right:20px;
    color:#fff;
}

.ev-demo-icon{
    font-size:16px;
    margin-top:12px;
}

/* ===================================
HERO SECTION
=================================== */

.ev-hero-v2{
    position:relative;
    overflow:hidden;
    padding:40px 0 60px;
    background:linear-gradient(90deg,#dff1ff 0%,#edf7ff 50%,#ffffff 100%);
}

.ev-dots{
    position:absolute;
    top:90px;
    left:40px;
    width:120px;
    height:120px;
    border-radius:50%;
    background-image:radial-gradient(#6366f1 2px,transparent 2px);
    background-size:16px 16px;
    opacity:.7;
    z-index:1;
}

.ev-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.ev-hero-left h1{
    font-size:82px;
    line-height:.98;
    letter-spacing:-2px;
    color:#08224d;
    margin-bottom:34px;
    font-weight:800;
}

.ev-hero-left p{
    font-size:20px;
    line-height:1.9;
    color:#0f172a;
    max-width:560px;
    margin-bottom:40px;
    font-weight:500;
}

.ev-btn-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#30b6f6,#1f8cf0);
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    box-shadow:0 12px 30px rgba(37,99,235,.22);
}

.ev-btn-primary:hover{
    transform:translateY(-3px);
}

.ev-hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.ev-hero-slider{
    position:relative;
    width:100%;
    max-width:650px;
    height:620px;
    animation:evFloat 5s ease-in-out infinite;
}

.ev-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    opacity:0;
    visibility:hidden;
    transition:opacity .8s ease,transform .8s ease;
    transform:translateY(20px);
}

.ev-slide.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

@keyframes evFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

/* ===================================
ABOUT SECTION
=================================== */

.ev-about-section{
    padding:90px 0;
    background:#fff;
}

.ev-about-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:60px;
    align-items:center;
}

.ev-about-image-wrap{
    position:relative;
}

.ev-about-image{
    width:100%;
    border-radius:24px;
    display:block;
}

.ev-about-badge{
    position:absolute;
    left:-20px;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    border:2px solid #38bdf8;
    color:#2563eb;
    padding:18px 24px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.ev-about-content{
    width:100%;
    overflow:hidden;
}

.ev-section-tag{
    display:inline-block;
    color:#38bdf8;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
    position:relative;
    padding-left:50px;
}

.ev-section-tag::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:36px;
    height:3px;
    background:#38bdf8;
    transform:translateY(-50%);
}

.ev-about-content h2{
    font-size:58px;
    line-height:1.1;
    color:#08224d;
    margin-bottom:28px;
    font-weight:800;
}

.ev-about-content p{
    font-size:18px;
    line-height:1.9;
    color:#334155;
    margin-bottom:26px;
}

.ev-discover-link{
    display:inline-block;
    color:#2563eb;
    font-weight:700;
    text-decoration:none;
    margin-bottom:36px;
}

/* ===================================
FEATURE SLIDER
=================================== */

.ev-feature-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    padding-bottom:10px;
}

.ev-feature-track{
    display:flex;
    gap:20px;
    width:fit-content;
    min-width:max-content;
    animation:evFeatureSlider 30s linear infinite;
}

.ev-feature-slider:hover .ev-feature-track{
    animation-play-state:paused;
}

.ev-feature-card{
    width:240px;
    flex-shrink:0;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:28px 22px;
    text-align:center;
    min-height:180px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.ev-feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.ev-feature-icon{
    font-size:38px;
    margin-bottom:18px;
}

.ev-feature-card h4{
    font-size:19px;
    line-height:1.4;
    color:#08224d;
    font-weight:700;
}

@keyframes evFeatureSlider{
    0%{transform:translateX(0);}
    100%{transform:translateX(-1560px);}
}

/* ===================================
CTA SECTION
=================================== */

.ev-cta-section{
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(135deg,#0f172a 0%,#111c44 50%,#1e293b 100%);
    z-index: 1;
}

.ev-cta-shape{
    position: absolute;
    border-radius: 50%;
    opacity: .12;
    filter: blur(10px);
}

.ev-cta-shape-1{
    width: 260px;
    height: 260px;
    background: #38bdf8;
    top: -80px;
    left: -80px;
}

.ev-cta-shape-2{
    width: 220px;
    height: 220px;
    background: #8b5cf6;
    bottom: -60px;
    right: 10%;
}

.ev-cta-shape-3{
    width: 140px;
    height: 140px;
    background: #ffffff;
    top: 20%;
    right: -40px;
}

.ev-cta-grid{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ev-cta-content{
    color: #fff;
}

.ev-light-tag{
    color: #7dd3fc;
}

.ev-light-tag::before{
    background: #7dd3fc;
}

.ev-cta-content h2{
    font-size: 68px;
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 800;
    color: #fff;
}

.ev-cta-content p{
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
    margin-bottom: 36px;
    max-width: 520px;
}

.ev-cta-image{
    position: relative;
    text-align: center;
}

.ev-cta-image img{
    width: 100%;
    max-width: 700px;
    animation: evRobotFloat 5s ease-in-out infinite;
}

@keyframes evRobotFloat{
    0%{transform: translateY(0px);}
    50%{transform: translateY(-14px);}
    100%{transform: translateY(0px);}
}

/* ===================================
FEATURES SECTION
=================================== */

.ev-features-section{
    padding: 100px 0;
    background: #f8fbff;
}

.ev-section-heading{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.ev-section-heading h2{
    font-size: 58px;
    line-height: 1.15;
    color: #08224d;
    font-weight: 800;
    margin-top: 20px;
}

.ev-features-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.ev-feature-box{
    background: #fff;
    border-radius: 26px;
    padding: 42px 34px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.ev-feature-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(37,99,235,.12);
}

.ev-feature-box::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#38bdf8,#2563eb);
}

.ev-feature-img{
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#eff6ff,#dbeafe);
    margin-bottom: 28px;
}

.ev-feature-img img{
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.ev-feature-box h3{
    font-size: 28px;
    line-height: 1.3;
    color: #08224d;
    margin-bottom: 18px;
    font-weight: 800;
}

.ev-feature-box p{
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 28px;
}

.ev-feature-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2563eb;
    font-weight: 700;
    font-size: 15px;
}

.ev-feature-link:hover{
    gap: 14px;
}

/* ===================================
LIVE CHART SECTION
=================================== */

.ev-livechart-section{
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    margin: 0;
    background: #ffffff;
}

.ev-livechart-content{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.ev-live-left{
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 50px;
}

.ev-live-left h2{
    font-size: 30px;
    line-height: 1.35;
    color: #08224d;
    margin-bottom: 28px;
    font-weight: 800;
}

.ev-live-text-box{
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.ev-live-text-box p{
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin: 0 0 22px;
}

.ev-live-text-box p:last-child{
    margin-bottom: 0;
}

.ev-live-right{
    background: linear-gradient(135deg,#071120,#0f172a);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ev-live-video-wrap{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: 0 35px 80px rgba(0,0,0,.25);
    animation: evVideoFloat 5s ease-in-out infinite;
}

.ev-live-video{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@keyframes evVideoFloat{
    0%{transform: translateY(0px);}
    50%{transform: translateY(-10px);}
    100%{transform: translateY(0px);}
}

/* ===================================
BADGES SECTION
=================================== */

.ev-badges-section{
    padding: 90px 0;
    background: linear-gradient(135deg,#f8fbff 0%,#eef6ff 50%,#ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ev-badges-heading{
    text-align: center;
    margin-bottom: 60px;
}

.ev-section-tag-center{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 18px;
}

.ev-badges-heading h2{
    font-size: 54px;
    line-height: 1.1;
    color: #08224d;
    font-weight: 800;
    margin: 0;
}

.ev-badges-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.ev-badge-card{
    background: #ffffff url("./assets/images/achievement/badges-a.png") no-repeat center;
    background-size: contain;
    border: 1px solid #e2e8f0;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.ev-badge-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.ev-badge-card img{
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.ev-badges-cta{
    text-align: center;
    margin-top: 70px;
}

.ev-badges-cta p{
    font-size: 34px;
    font-weight: 700;
    color: #08224d;
    margin-bottom: 28px;
}

.ev-badges-cta p span{
    color: #2563eb;
}

.ev-badge-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: linear-gradient(135deg,#38bdf8,#2563eb);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all .3s ease;
    box-shadow: 0 14px 30px rgba(37,99,235,.20);
}

.ev-badge-btn:hover{
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(37,99,235,.28);
}

/* ===================================
EMPLOYEE CTA / MOBILE SECTION
=================================== */

.employee-cta-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #0b5673 0%, #087b86 100%);
}

.employee-cta-section,
.employee-cta-section *{
    font-family: 'Poppins', sans-serif;
}

.employee-cta-section .container-1450{
    max-width: 1450px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.employee-cta-section .cta-wrapper{
    position: relative;
    min-height: 770px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.employee-cta-section .row{
    position: relative;
    z-index: 10;
    width: 100%;
}

.employee-cta-section .text-wrapper{
    max-width: 520px;
    padding-left: clamp(15px, 5vw, 80px);
}

.employee-cta-section .section-title{
    margin-bottom: 0;
}

.employee-cta-section .section-title .sub-title{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 310px;
    min-height: 58px;
    padding: 10px 34px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.employee-cta-section .section-title h2{
    color: #ffffff;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0 0 24px;
}

.employee-cta-section .section-title p{
    color: #ffffff;
    max-width: 440px;
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.45;
    font-weight: 500;
    margin: 0;
}

.employee-cta-section .cta-img{
    position: absolute !important;
    inset: 0 0 0 auto;
    width: 58%;
    z-index: 2;
    pointer-events: none;
}

.employee-cta-section .mobSection{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 770px;
    overflow: visible;
    padding-bottom: 45px;
}

.employee-cta-section .mobSection > svg{
    position: absolute;
    top: 0;
    right: 10px;
    width: min(760px, 60vw) !important;
    max-width: none !important;
    height: auto !important;
    z-index: 4;
    pointer-events: none;
}

.employee-cta-section .iphone-x{
    position: absolute;
    top: 95px;
    right: clamp(95px, 11vw, 190px);
    z-index: 3;
    width: 292px;
    height: 590px;
    padding: 42px 13px 18px;
    border-radius: 44px;
    background: #101010;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    pointer-events: auto;
}

.employee-cta-section .iphone-x::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 150px;
    height: 38px;
    background: #101010;
    border-radius: 0 0 22px 22px;
    transform: translateX(-50%);
    z-index: 8;
}

.employee-cta-section .iphone-x i{
    position: absolute;
    top: 17px;
    left: 50%;
    width: 52px;
    height: 6px;
    background: #242424;
    border-radius: 10px;
    transform: translateX(-50%);
    font-size: 0;
    z-index: 9;
}

.employee-cta-section .iphone-x b{
    position: absolute;
    top: 12px;
    right: 48px;
    width: 11px;
    height: 11px;
    background: #1f1f1f;
    border: 2px solid #3a3a3a;
    border-radius: 50%;
    font-size: 0;
    z-index: 9;
}

.employee-cta-section .mob-fade{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px 24px 31px 31px;
    overflow: hidden;
    background: transparent;
}

.employee-cta-section .mob-fade::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 128px;
    height: 4px;
    background: #111111;
    border-radius: 10px;
    transform: translateX(-50%);
    z-index: 6;
}

.employee-cta-section .phone-screen-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.employee-cta-section::after{
    content: "";
    position: absolute;
    top: 18px;
    right: 18%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.16) 1.2px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}

/* Phone slider */
.employee-cta-section .phone-slider{
    display: flex;
    width: 300%;
    height: 100%;
    animation: employeePhoneSlider 9s ease-in-out infinite;
    will-change: transform;
}

.employee-cta-section .phone-slider .phone-screen-img{
    flex: 0 0 33.333333%;
    width: 33.333333%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

@keyframes employeePhoneSlider{
    0%, 26%{transform: translateX(0);}
    33%, 59%{transform: translateX(-33.333333%);}
    66%, 92%{transform: translateX(-66.666666%);}
    100%{transform: translateX(0);}
}

/* ===================================
FOOTER
=================================== */

.site-footer{
    background:#0f172a;
    color:#fff;
    padding:40px 0;
    text-align:center;
}

.site-footer a{
    color: rgba(255,255,255,.7);
}

.site-footer a:hover{
    color: #fff;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:1199px){
    .employee-cta-section .cta-wrapper{
        min-height: 730px;
    }
    .employee-cta-section .cta-img{
        width: 56%;
    }
    .employee-cta-section .mobSection{
        min-height: 730px;
    }
    .employee-cta-section .mobSection > svg{
        right: -40px;
        width: 700px !important;
    }
    .employee-cta-section .iphone-x{
        top: 95px;
        right: 70px;
        transform: scale(0.88);
        transform-origin: top right;
    }
}

@media(max-width:991px){
    .ev-nav{
        display:none;
    }
    .ev-mobile-toggle{
        display:flex;
    }
    .ev-header-wrapper{
        min-height:72px;
    }
    .ev-logo img{
        max-height:44px;
    }

    .ev-hero-v2{
        padding:70px 0 60px;
    }
    .ev-hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    .ev-hero-left h1{
        font-size:52px;
    }
    .ev-hero-left p{
        font-size:17px;
    }
    .ev-hero-slider{
        height:420px;
    }

    .ev-about-section{
        padding:70px 0;
    }
    .ev-about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }
    .ev-about-content h2{
        font-size:42px;
    }
    .ev-about-badge{
        left:10px;
        top:20px;
        transform:none;
    }

    .ev-cta-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ev-cta-content p{
        margin-left: auto;
        margin-right: auto;
    }
    .ev-cta-content h2{
        font-size: 48px;
    }
    .ev-cta-image img{
        max-width: 520px;
    }

    .ev-features-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .ev-section-heading h2{
        font-size: 44px;
    }

    .ev-livechart-section{
        padding: 60px 0;
    }
    .ev-livechart-content{
        grid-template-columns: 1fr;
    }
    .ev-live-left{
        padding: 40px;
    }
    .ev-live-right{
        min-height: 350px;
    }

    .ev-badges-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .ev-badges-heading h2{
        font-size: 42px;
    }

    .employee-cta-section .cta-wrapper{
        min-height: auto;
        padding: 70px 0 0;
        display: block;
    }
    .employee-cta-section .text-wrapper{
        padding-left: 0;
        max-width: 100%;
        text-align: center;
        margin: 0 auto 30px;
    }
    .employee-cta-section .section-title p{
        margin-left: auto;
        margin-right: auto;
    }
    .employee-cta-section .cta-img{
        position: relative !important;
        width: 100%;
        min-height: 710px;
    }
    .employee-cta-section .mobSection{
        min-height: 710px;
    }
    .employee-cta-section .mobSection > svg{
        top: 0;
        left: 50%;
        right: auto;
        width: 650px !important;
        transform: translateX(-50%);
    }
    .employee-cta-section .iphone-x{
        top: 90px;
        right: 50%;
        transform: translateX(50%) scale(0.82);
        transform-origin: top center;
    }
    .employee-cta-section::after{
        right: 50%;
        transform: translateX(50%);
    }
}

@media(max-width:767px){
    .ev-dots{
        width:70px;
        height:70px;
        top:100px;
        left:20px;
    }

    .ev-feature-card{
        width:200px;
        min-height:160px;
        padding:22px 16px;
    }
    .ev-feature-icon{
        font-size:32px;
    }
    .ev-feature-card h4{
        font-size:16px;
    }

    .btnBookNow{
        font-size:12px;
        padding:18px 10px;
    }

    .ev-cta-section{
        padding: 70px 0;
    }
    .ev-cta-content h2{
        font-size: 38px;
    }
    .ev-cta-content p{
        font-size: 16px;
    }
    .ev-cta-image img{
        max-width: 100%;
    }

    .ev-features-section{
        padding: 70px 0;
    }
    .ev-features-grid{
        grid-template-columns: 1fr;
    }
    .ev-feature-box{
        padding: 34px 26px;
    }
    .ev-section-heading{
        margin-bottom: 50px;
    }
    .ev-section-heading h2{
        font-size: 34px;
    }
    .ev-feature-box h3{
        font-size: 24px;
    }

    .ev-live-left{
        padding: 30px 24px;
    }
    .ev-live-left h2{
        font-size: 26px;
        line-height: 1.4;
    }
    .ev-live-text-box p{
        font-size: 16px;
    }
    .ev-live-right{
        min-height: 240px;
    }

    .ev-badges-section{
        padding: 70px 0;
    }
    .ev-badges-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ev-badge-card{
        min-height: 200px;
        padding: 25px;
    }
    .ev-badges-heading h2{
        font-size: 34px;
    }
    .ev-badges-cta p{
        font-size: 26px;
    }

    .employee-cta-section .cta-wrapper{
        padding-top: 50px;
    }
    .employee-cta-section .section-title .sub-title{
        min-width: 250px;
        min-height: 48px;
        font-size: 14px;
        padding: 8px 24px;
        margin-bottom: 24px;
    }
    .employee-cta-section .section-title h2{
        font-size: 42px;
    }
    .employee-cta-section .section-title p{
        font-size: 16px;
    }
    .employee-cta-section .cta-img,
    .employee-cta-section .mobSection{
        min-height: 610px;
    }
    .employee-cta-section .mobSection > svg{
        top: 10px;
        width: 500px !important;
    }
    .employee-cta-section .iphone-x{
        top: 95px;
        transform: translateX(50%) scale(0.64);
    }
    .employee-cta-section .mobSection{
        padding-bottom: 60px;
    }
}

/* ===================================
GET DEMO SECTION
=================================== */

.ev-demo-section{
    padding: 100px 0;
    background: linear-gradient(135deg,#0f172a 0%,#1a2744 50%,#1e293b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ev-demo-section::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(56,189,248,.1),transparent 70%);
    top: -200px;
    right: -100px;
}

.ev-demo-section::after{
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(139,92,246,.1),transparent 70%);
    bottom: -150px;
    left: -100px;
}

.ev-demo-content{
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.ev-demo-content h2{
    font-size: 58px;
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.ev-demo-content p{
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,.78);
    margin-bottom: 40px;
}

@media(max-width:991px){
    .ev-demo-section{
        padding: 80px 0;
    }
    .ev-demo-content h2{
        font-size: 44px;
    }
    .ev-demo-content p{
        font-size: 18px;
    }
}

@media(max-width:767px){
    .ev-demo-section{
        padding: 60px 0;
    }
    .ev-demo-content h2{
        font-size: 34px;
    }
    .ev-demo-content p{
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* ===================================
FOOTER
=================================== */

.ev-footer{
    background: #0b1120;
    color: rgba(255,255,255,.78);
    padding: 80px 0 0;
    font-size: 15px;
    line-height: 1.8;
}

.ev-footer a{
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .3s ease;
}

.ev-footer a:hover{
    color: #fff;
}

.ev-footer-grid{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ev-footer-logo img{
    max-height: 48px;
    margin-bottom: 22px;
}

.ev-footer-desc{
    color: rgba(255,255,255,.58);
    margin-bottom: 24px;
    max-width: 340px;
}

.ev-footer-social{
    display: flex;
    gap: 14px;
}

.ev-footer-social a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    transition: all .3s ease;
}

.ev-footer-social a:hover{
    background: #2563eb;
    color: #fff;
}

.ev-footer-title{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    margin-top: 8px;
}

.ev-footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.ev-footer-links li{
    margin-bottom: 12px;
}

.ev-footer-links li:last-child{
    margin-bottom: 0;
}

.ev-footer-links a{
    position: relative;
    padding-left: 0;
    transition: padding-left .3s ease;
}

.ev-footer-links a:hover{
    padding-left: 6px;
    color: #fff;
}

.ev-newsletter-form{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ev-newsletter-input{
    flex: 1;
    min-width: 180px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color .3s ease;
}

.ev-newsletter-input::placeholder{
    color: rgba(255,255,255,.4);
}

.ev-newsletter-input:focus{
    border-color: #2563eb;
}

.ev-newsletter-btn{
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg,#38bdf8,#2563eb);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}

.ev-newsletter-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,.25);
}

.ev-footer-iso{
    margin-top: 10px;
}

.ev-iso-badge{
    max-height: 50px;
}

/* Awards */
.ev-footer-awards{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-wrap: wrap;
}

.ev-footer-award-item{
    opacity: .5;
    transition: opacity .3s ease;
}

.ev-footer-award-item:hover{
    opacity: .9;
}

.ev-footer-award-item img{
    max-height: 40px;
    width: auto;
}

/* Bottom Bar */
.ev-footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
}

.ev-footer-bottom p{
    color: rgba(255,255,255,.5);
    font-size: 14px;
    margin: 0;
}

.ev-footer-privacy a{
    color: rgba(255,255,255,.5);
    text-decoration: underline;
    font-size: 14px;
}

.ev-footer-privacy a:hover{
    color: #fff;
}

@media(max-width:991px){
    .ev-footer{
        padding: 60px 0 0;
    }
    .ev-footer-grid{
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media(max-width:767px){
    .ev-footer-grid{
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .ev-footer-awards{
        gap: 24px;
        padding: 30px 0;
    }
    .ev-footer-award-item img{
        max-height: 32px;
    }
    .ev-footer-bottom{
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
PRIVACY MODAL
=================================== */

.ev-modal{
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.ev-modal-content{
    position: relative;
    background: #fff;
    margin: 60px auto;
    max-width: 680px;
    width: 90%;
    border-radius: 20px;
    padding: 50px 44px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    animation: evModalFadeIn .35s ease;
}

@keyframes evModalFadeIn{
    from{
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close{
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 32px;
    font-weight: 300;
    color: #94a3b8;
    cursor: pointer;
    transition: color .3s ease;
    line-height: 1;
}

.modal-close:hover{
    color: #0f172a;
}

.ev-modal-content h2{
    font-size: 32px;
    font-weight: 800;
    color: #08224d;
    margin-bottom: 24px;
}

.ev-modal-body h3{
    font-size: 20px;
    font-weight: 700;
    color: #08224d;
    margin: 28px 0 14px;
}

.ev-modal-body p{
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 12px;
}

.ev-modal-body a{
    color: #2563eb;
    text-decoration: underline;
}
