/*==========================================================
    EZEEMAILS
    Premium B2B Website
    Version : 1.0
==========================================================*/


/*==========================================================
    GOOGLE FONTS
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');


/*==========================================================
    CSS VARIABLES
==========================================================*/

:root{

    --primary:#16A34A;
    --primary-dark:#15803D;
    --primary-light:#DCFCE7;

    --secondary:#1F2937;

    --white:#FFFFFF;

    --bg:#F8FAFC;

    --text:#475569;

    --heading:#111827;

    --border:#E5E7EB;

    --shadow-sm:0 4px 15px rgba(0,0,0,.05);

    --shadow-md:0 10px 35px rgba(0,0,0,.08);

    --shadow-lg:0 20px 60px rgba(0,0,0,.12);

    --radius:18px;

    --radius-sm:10px;

    --transition:.35s ease;

    --container:1240px;

}


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

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--white);

    color:var(--text);

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea{

    font-family:inherit;

    outline:none;

}


/*==========================================================
    TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Poppins',sans-serif;

    color:var(--heading);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:clamp(2.8rem,5vw,4.6rem);

}

h2{

    font-size:clamp(2rem,4vw,3.3rem);

}

h3{

    font-size:1.6rem;

}

p{

    margin-bottom:20px;

}


/*==========================================================
    LAYOUT
==========================================================*/

.container{

    width:min(var(--container),92%);

    margin:auto;

}

section{

    padding:110px 0;

}


/*==========================================================
    BUTTONS
==========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    padding:14px 30px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    background:linear-gradient(135deg,#16A34A,#22C55E);

    color:#fff;

    box-shadow:0 10px 25px rgba(22,163,74,.18);

    transition:all .3s ease;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

    box-shadow:0 18px 35px rgba(22,163,74,.25);

}

.btn-outline{

    border:1px solid var(--border);

    color:var(--heading);

    background:#fff;

}

.btn-outline:hover{

    border-color:var(--primary);

    color:var(--primary);

}


/*==========================================================
    UTILITIES
==========================================================*/

.text-center{

    text-align:center;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-50{

    margin-bottom:50px;

}

.mt-50{

    margin-top:50px;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#EAFBF0;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:1.2px;

    text-transform:uppercase;

}

.section-title{

    font-size:52px;

    font-weight:700;

    line-height:1.15;

    letter-spacing:-1px;

    color:var(--heading);

    max-width:760px;

    margin:18px auto 22px;

}

.section-description{

    max-width:700px;

    margin:0 auto;

    font-size:19px;

    line-height:1.8;

    color:#64748B;

}


/*==========================================================
    CARD
==========================================================*/

.card{

    background:#fff;

    padding:35px;

    border:1px solid #EAECEF;

    border-radius:24px;

    transition:.35s;

    background:#fff;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.08);

}


/*==========================================================
    PLACEHOLDER
==========================================================*/

.hero{

    min-height:100vh;

}


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


.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    padding:18px 0;

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(15,23,42,.05);

    transition:all .35s ease;

}

.site-header.scrolled{

    padding:12px 0;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    box-shadow:
    0 12px 30px rgba(15,23,42,.08),
    0 2px 6px rgba(15,23,42,.04);

}

.site-header::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(22,163,74,.30),
        transparent
    );

}


/*==========================================================
    NAVBAR
==========================================================*/

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:78px;

    gap:50px;

    position:relative;

}


/*==========================================================
    LOGO
==========================================================*/

.logo{

    display:flex;

    align-items:center;

    flex-shrink:0;

    transition:all .35s ease;

}

.logo-dark{

    color:var(--heading);

}

.logo-green{

    color:var(--primary);

}

.logo img{
    
    height:56px;

    width:auto;

    display:block;

    transition:transform .35s ease;

    image-rendering:auto;
}

.logo:hover img{

    transform:scale(1.03);

}

.site-header.scrolled .logo img{

    height:52px;

}

/*==========================================================
    MENU
==========================================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:42px;

}

.nav-menu li a{

    position:relative;

    font-weight:500;

    color:var(--heading);

    display:inline-block;

    font-size:15px;

    letter-spacing:.3px;

    transition:
        color .3s ease,
        opacity .3s ease;

    text-transform: none;


}

.nav-menu li a:hover{

    color:var(--primary);

    transition:
        color .3s ease,
        opacity .3s ease;

}

.nav-menu li a::after{

    content:"";

    position:absolute;

    left:50%;

    width:0;

    height:3px;

    border-radius:20px;

    bottom:-10px;

    background:var(--primary);

    transition:.35s;

    transform:translateX(-50%);

}

.nav-menu li a:hover::after,

.nav-menu li a.active::after{

    width:100%;

}

.nav-menu li a.active{

    color:var(--primary);

    font-weight:600;

}

.nav-menu:hover a{

    opacity:.55;

}

.nav-menu:hover a:hover{

    opacity:1;

}


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

.navbar .btn{

    padding:14px 30px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    letter-spacing:.2px;

    transition:all .35s ease;

    white-space:nowrap;

}

.navbar .btn:hover{

    transform:translateY(-2px);

}



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

.hero{

    padding-top:170px;
    padding-bottom:100px;

    background:
    radial-gradient(circle at 0% 0%, rgba(22,163,74,.10), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(15,23,42,.05), transparent 35%),
    #fff;

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.hero-content h1{

    margin:25px 0;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    font-size:20px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin:45px 0;

}

.hero-features{

    display:flex;

    gap:35px;

    flex-wrap:wrap;

    font-weight:600;

    color:var(--heading);

}

.hero-dashboard{

    display:flex;

    justify-content:center;

}

.dashboard{

    width:100%;

    max-width:480px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    box-shadow:0 30px 80px rgba(0,0,0,.08);

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.live-dot{

    width:12px;

    height:12px;

    background:#16A34A;

    border-radius:50%;

}

.dashboard-stat{

    text-align:center;

    margin-bottom:35px;

}

.dashboard-stat h2{

    color:var(--primary);

    font-size:52px;

}

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.metric-card{

    padding:25px;

    border:1px solid var(--border);

    border-radius:18px;

    background:#fff;

    transition:.35s;

}

.metric-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-sm);

}

.metric-card h4{

    font-size:16px;

    margin-bottom:8px;

}

.metric-card span{

    font-size:24px;

    font-weight:700;

    color:var(--primary);

}

.dashboard-footer{

    margin-top:30px;

    padding-top:25px;

    border-top:1px solid var(--border);

    text-align:center;

    font-weight:600;

}

/*==========================================================
    FLOATING CARDS
==========================================================*/

.dashboard{

    position:relative;

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:16px 22px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border:1px solid var(--border);

    animation:float 4s ease-in-out infinite;

}

.floating-card strong{

    display:block;

    font-size:22px;

    color:var(--primary);

}

.floating-card span{

    font-size:13px;

    color:var(--text);

}

.floating-card-1{

    left:-65px;

    top:40px;

}

.floating-card-2{

    right:-60px;

    top:170px;

    animation-delay:1.2s;

}

.floating-card-3{

    left:-55px;

    bottom:45px;

    animation-delay:2s;

}


/*==========================================================
    LIVE STATUS
==========================================================*/

.dashboard-live{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:13px;

    font-weight:700;

    color:var(--primary);

}

.live-dot{

    animation:pulse 1.5s infinite;

}


/*==========================================================
    TECHNOLOGY TAGS
==========================================================*/

.technology-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:30px;

}

.technology-tags span{

    background:var(--primary-light);

    color:var(--primary-dark);

    padding:8px 14px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    transition:.3s;

}

.technology-tags span:hover{

    background:var(--primary);

    color:#fff;

}


/*==========================================================
    ANIMATIONS
==========================================================*/

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(22,163,74,.5);

    }

    70%{

        box-shadow:0 0 0 12px rgba(22,163,74,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(22,163,74,0);

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==========================================================
    TRUSTED BY
==========================================================*/

.trusted-section{

    padding:80px 0;

    background:#fff;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

}

.trusted-header{

    text-align:center;

    margin-bottom:55px;

}

.trusted-header h2 span{

    color:var(--primary);

}

/*==========================================================
    LOGO SLIDER
==========================================================*/

.logo-slider{

    overflow:hidden;

    position:relative;

}

.logo-track{

    display:flex;

    width:max-content;

    animation:scrollLogos 35s linear infinite;

}

.logo-slider:hover .logo-track{

    animation-play-state:paused;

}

.logo-item{

    min-width:180px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    font-weight:700;

    color:#9CA3AF;

    transition:.35s;

    user-select:none;

}

.logo-item:hover{

    color:var(--primary);

    transform:translateY(-4px);

}

/*==========================================================
    LOGO ANIMATION
==========================================================*/

@keyframes scrollLogos{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*==========================================================
    STATS
==========================================================*/

.stats-section{

    background:#F8FAFC;

}

.stats-header{

    text-align:center;

    margin-bottom:70px;

}

.stats-header span{

    color:var(--primary);

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:40px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.stat-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:var(--primary);

}

.stat-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:var(--primary-light);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

}

.stat-icon i{

    font-size:30px;

    color:var(--primary);

}

.stat-card h3{

    display:inline-block;

    font-size:54px;

    color:var(--heading);

}

.stat-card span{

    font-size:28px;

    color:var(--primary);

    font-weight:700;

}

.stat-card h4{

    margin:15px 0;

}

.stat-card p{

    margin:0;

}

/*==========================================================
    WHY CHOOSE US
==========================================================*/

.why-us-section{

    background:#ffffff;

}

.why-header{

    text-align:center;

    margin-bottom:70px;

}

.why-header span{

    color:var(--primary);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:40px;

    transition:all .35s ease;

    position:relative;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

    border-color:var(--primary);

}

.why-icon{

    width:72px;

    height:72px;

    background:var(--primary-light);

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    transition:.35s;

}

.why-card:hover .why-icon{

    background:var(--primary);

}

.why-icon i{

    font-size:30px;

    color:var(--primary);

    transition:.35s;

}

.why-card:hover .why-icon i{

    color:#fff;

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    margin:0;

}

/*==========================================================
    SOLUTIONS
==========================================================*/

.solutions-section{

    background:#fff;

}

.solutions-header{

    text-align:center;

    margin-bottom:90px;

}

.solution-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

    margin-bottom:120px;

}

.solution-row:nth-child(even){

    direction:rtl;

}

.solution-row:nth-child(even) .solution-content{

    direction:ltr;

}

.solution-number{

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

}

.solution-content h3{

    font-size:38px;

    margin:20px 0;

}

.solution-content ul{

    margin:30px 0;

}

.solution-content li{

    margin-bottom:12px;

    font-weight:500;

}

.solution-visual{

    display:flex;

    justify-content:center;

    width:100%;

}

.solution-visual > *{

    width:100%;

}

.mini-dashboard{

    width:100%;

    max-width:450px;

    background:#fff;

    border-radius:24px;

    padding:40px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-md);

}

.mini-dashboard h4{

    margin-bottom:30px;

}

.mini-bar{

    height:12px;

    background:var(--primary);

    border-radius:20px;

    margin-bottom:18px;

}

.mini-bar.short{

    width:60%;

}

.mini-card{

    margin-top:35px;

    background:var(--primary-light);

    padding:18px;

    border-radius:16px;

    font-weight:700;

    color:var(--primary-dark);

}


/*=========================================
    TECHNOLOGY DASHBOARD
=========================================*/

.tech-dashboard{

    background:#F8FAFC;

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.status{

    font-size:12px;

    font-weight:600;

    color:#16A34A;

    display:flex;

    align-items:center;

    gap:6px;

}

.status i{

    font-size:8px;

}

.tech-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:12px;

    margin-bottom:30px;

}

.tech-grid span{

    background:#fff;

    border:1px solid var(--border);

    border-radius:12px;

    padding:12px;

    text-align:center;

    font-weight:600;

    transition:.3s;

}

.tech-grid span:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

.tech-stats{

    display:flex;

    justify-content:space-between;

    margin-top:25px;

    border-top:1px solid var(--border);

    padding-top:20px;

}

.tech-stats strong{

    display:block;

    font-size:28px;

    color:var(--primary);

}

.tech-stats small{

    color:#64748B;

}

/*=========================================
    INDUSTRY DASHBOARD
=========================================*/

.industry-dashboard{

    background:#F8FAFC;

}

.industry-bars{

    margin-top:25px;

}

.industry-item{

    margin-bottom:18px;

}

.industry-item span{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:var(--heading);

}

.bar{

    height:10px;

    background:#E5E7EB;

    border-radius:30px;

    overflow:hidden;

}

.fill{

    height:100%;

    background:linear-gradient(90deg,var(--primary),#22C55E);

    border-radius:30px;

}

.w95{width:95%;}
.w90{width:90%;}
.w85{width:85%;}
.w80{width:80%;}
.w75{width:75%;}

.industry-footer{

    display:flex;

    justify-content:space-between;

    border-top:1px solid var(--border);

    margin-top:30px;

    padding-top:20px;

}

.industry-footer strong{

    display:block;

    font-size:28px;

    color:var(--primary);

}

.industry-footer small{

    color:#64748B;

}

/*=========================================
    EVENT DASHBOARD
=========================================*/

.event-dashboard{

    background:#FFFDF5;

}

.event-list{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-top:25px;

}

.event-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 18px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:14px;

    transition:.3s;

}

.event-item:hover{

    transform:translateX(8px);

    border-color:var(--primary);

}

.event-item strong{

    display:block;

    font-size:15px;

    color:var(--heading);

}

.event-item small{

    color:#64748B;

}

.event-item span{

    background:var(--primary-light);

    color:var(--primary);

    padding:8px 14px;

    border-radius:30px;

    font-weight:700;

}

.event-summary{

    display:flex;

    justify-content:space-between;

    border-top:1px solid var(--border);

    margin-top:30px;

    padding-top:20px;

}

.event-summary strong{

    display:block;

    font-size:28px;

    color:var(--primary);

}

.event-summary small{

    color:#64748B;

}

/*==========================================================
    INDUSTRIES
==========================================================*/

.industries-section{

    background:#ffffff;

}

.industries-header{

    text-align:center;

    margin-bottom:70px;

}

.industries-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.industry-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:35px;

    transition:.35s;

    display:flex;
    flex-direction:column;

    min-height:279px;   /* Adjust if needed */
}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

    border-color:var(--primary);

}

.industry-card i{

    font-size:38px;

    color:var(--primary);

    margin-bottom:25px;

}

.industry-card h3{

    margin-bottom:12px;

}

.industry-card p{

    min-height:55px;

    color:#64748B;

    margin-bottom:25px;

    flex:1;

}



.industries-footer{

    text-align:center;

    margin-top:60px;

}

.industry-link{

    display:inline-block;

    margin-top:auto;

    color:var(--primary);

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.industry-link:hover{

    color:#0F8A3A;

    letter-spacing:.5px;

}

/*==========================================================
    GLOBAL COVERAGE
==========================================================*/

.coverage-section{

    background:#F8FAFC;

}

.coverage-header{

    text-align:center;

    margin-bottom:70px;

}

.coverage-map{

    margin-top:60px;

    padding:50px;

    background:#0F172A;

    border-radius:30px;

    text-align:center;

}

.coverage-map img{

    display:block;

    width:100%;

    max-width:1100px;

    height:auto;

    margin:0 auto;

}

.country-tags{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:40px;

}

.country-tags span{

    padding:12px 22px;

    border-radius:40px;

    background:#fff;

    border:1px solid var(--border);

    font-weight:600;

    transition:.3s;

}

.country-tags span:hover{

    background:var(--primary);

    color:#fff;

}

/*==========================================================
    COMPLIANCE
==========================================================*/

.compliance-section{

    background:#F8FAFC;

}

.compliance-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.compliance-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:40px;

}

.compliance-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    transition:.35s;

}

.compliance-item:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-md);

}

.compliance-item i{

    font-size:22px;

    color:var(--primary);

}

.compliance-dashboard{

    background:#fff;

    border-radius:26px;

    border:1px solid var(--border);

    padding:40px;

    box-shadow:var(--shadow-md);

}

.dashboard-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.quality-row{

    display:flex;

    justify-content:space-between;

    padding:16px 0;

    border-bottom:1px solid #EDF2F7;

}

.quality-row strong{

    color:var(--primary);

}

.quality-progress{

    margin-top:35px;

}

.progress{

    height:12px;

    border-radius:30px;

    background:#E5E7EB;

    overflow:hidden;

    margin-top:12px;

}

.progress-fill{

    width:99%;

    height:100%;

    background:linear-gradient(90deg,#16A34A,#22C55E);

}

/*==========================================================
    TESTIMONIALS
==========================================================*/

.testimonials-section{

    background:#fff;

}

.testimonials-header{

    text-align:center;

    margin-bottom:70px;

}

.testimonials-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.quote-icon{

    font-size:34px;

    color:var(--primary);

    margin-bottom:20px;

}

.testimonial-card p{

    margin-bottom:35px;

    line-height:1.8;

}

.testimonial-author{

    display:flex;

    align-items:center;

    gap:15px;

}

.author-avatar{

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:20px;

}

.testimonial-author h4{

    margin:0;

}

.testimonial-author span{

    color:#64748B;

}

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

.cta-section{

    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#0F172A,#1E293B);

    border-radius:30px;

    padding:90px 70px;

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(22,163,74,.12);

    border-radius:50%;

    right:-150px;

    top:-180px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(34,197,94,.08);

    border-radius:50%;

    left:-120px;

    bottom:-120px;

}

.cta-box>*{

    position:relative;

    z-index:2;

}

.cta-box h2{

    font-size:52px;

    color:#fff;

    margin:20px auto;

    max-width:760px;

}

.cta-box h2 span{

    color:#22C55E;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 40px;

    color:#CBD5E1;

    font-size:19px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


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

.site-footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;

    margin-bottom:60px;

}

.footer-logo{

    font-size:34px;

    font-weight:700;

    color:#fff;

    text-decoration:none;

}

.footer-logo span{

    color:var(--primary);

}

.footer-about p{

    margin-top:25px;

    line-height:1.8;

}

.footer-col h4{

    color:#fff;

    margin-bottom:25px;

}

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-col li{

    margin-bottom:14px;

}

.footer-col a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer-col a:hover{

    color:var(--primary);

    padding-left:5px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-links{

    display:flex;

    gap:25px;

}

.footer-links a{

    color:#CBD5E1;

    text-decoration:none;

}

.footer-links a:hover{

    color:#fff;

}

/*=========================================
    MOBILE MENU
=========================================*/

.menu-toggle{

    display:none;

    width:44px;

    height:44px;

    background:none;

    border:none;

    cursor:pointer;

    padding:0;

    
}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:#0F172A;

    margin:4px auto;

    border-radius:20px;

    transition:.3s;

}

/*==========================================================
    PAGE HERO
==========================================================*/

.page-hero{

    padding:180px 0 120px;

    text-align:center;

    background:
    radial-gradient(circle at top,#EAFBF1 0%,#fff 70%);

}

.page-hero h1{

    max-width:900px;

    margin:25px auto;

    font-size:64px;

    line-height:1.1;

}

.page-hero p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    color:#64748B;

    line-height:1.8;

}

/*==========================================================
    ABOUT STORY
==========================================================*/

.about-story{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:80px;

    align-items:center;

}

.about-content p:last-child{

    margin-top:25px;

    color:#64748B;

    line-height:1.9;

}

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.highlight-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.highlight-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.highlight-card h3{

    font-size:46px;

    color:var(--primary);

    margin-bottom:12px;

}

.highlight-card p{

    margin:0;

    color:#64748B;

    line-height:1.6;

}

/*==========================================================
    MISSION & VISION
==========================================================*/

.mission-section{

    background:#F8FAFC;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.mission-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:45px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.mission-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.mission-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:rgba(22,163,74,.1);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.mission-icon i{

    font-size:30px;

    color:var(--primary);

}

.mission-card h3{

    margin-bottom:20px;

}

.mission-card p{

    color:#64748B;

    line-height:1.9;

}

/*==========================================================
    ADVANTAGES
==========================================================*/

.advantages-section{

    background:#fff;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.advantage-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:40px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.advantage-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.advantage-card i{

    font-size:36px;

    color:var(--primary);

    margin-bottom:22px;

}

.advantage-card h3{

    margin-bottom:18px;

}

.advantage-card p{

    color:#64748B;

    line-height:1.8;

}

/*==========================================================
    PROCESS
==========================================================*/

.process-section{

    background:#F8FAFC;

}

.process-timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.process-step{

    position:relative;

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

}

.process-step:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.step-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:24px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.process-step h3{

    margin-bottom:18px;

}

.process-step p{

    color:#64748B;

    line-height:1.8;

}

/*==========================================
    CUSTOM DASHBOARD
==========================================*/

.custom-dashboard{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow-md);

}

.filter-list{

    margin:25px 0;

}

.filter-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px solid #EEF2F7;

}

.filter-item:last-child{

    border-bottom:none;

}

.filter-item span{

    color:#64748B;

    font-size:14px;

}

.filter-item strong{

    color:#0F172A;

    font-size:18px;

    font-weight:600;

}

.dashboard-result{

    margin-top:30px;

    background:#F8FAFC;

    border-radius:18px;

    padding:28px;

    text-align:center;

}

.dashboard-result h3{

    font-size:58px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:8px;

}

.dashboard-result p{

    margin:0;

    color:#64748B;

}

.solution-row{

    padding-bottom:120px;
    border-bottom:1px solid #EEF2F7;

}

.solution-row:last-child{

    border-bottom:none;

}


.healthcare-dashboard,
.tech-dashboard,
.industry-dashboard,
.event-dashboard,
.custom-dashboard{

    min-height:520px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

/*==========================================================
    INDUSTRIES PAGE
==========================================================*/

.industries-page{

    background:#fff;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.industry-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px 35px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

    display:flex;

    flex-direction:column;

}

.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.industry-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:25px;

}

.industry-card h3{

    margin-bottom:18px;

}

.industry-card p{

    color:#64748B;

    line-height:1.8;

    flex:1;

}

.industry-card a{

    margin-top:25px;

    font-weight:600;

    color:var(--primary);

    text-decoration:none;

    transition:.3s;

}

.industry-card a:hover{

    color:#0F172A;

}

/*==========================================================
    CONTACT
==========================================================*/

.contact-main{

    background:#fff;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:start;

}

.info-list{

    margin-top:45px;

}

.info-card{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.info-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:rgba(22,163,74,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.info-icon i{

    font-size:24px;

    color:var(--primary);

}

.info-card h4{

    margin-bottom:8px;

}

.info-card p{

    margin:0;

    color:#64748B;

    line-height:1.8;

}

.contact-form-wrap{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px;

    box-shadow:var(--shadow-md);

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

    color:#0F172A;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #D9E2EC;

    border-radius:12px;

    font-size:15px;

    outline:none;

    transition:.3s;

    font-family:inherit;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(22,163,74,.10);

}

.contact-form .btn{

    width:100%;

    margin-top:10px;

}

/*==========================================================
    CONTACT BENEFITS
==========================================================*/

.contact-benefits{

    background:#F8FAFC;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.benefit-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.benefit-card i{

    font-size:38px;

    color:var(--primary);

    margin-bottom:20px;

}

.benefit-card h3{

    margin-bottom:15px;

}

.benefit-card p{

    color:#64748B;

    line-height:1.8;

}

/*==========================================================
    CONTACT FAQ
==========================================================*/

.contact-faq{

    background:#fff;

}

.faq-wrapper{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    border:1px solid var(--border);

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.faq-question{

    width:100%;

    padding:24px 30px;

    background:#fff;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    text-align:left;

}

.faq-question i{

    color:var(--primary);

    transition:.3s;

}

.faq-answer{

    display:none;

    padding:0 30px 30px;

}

.faq-answer p{

    margin:0;

    color:#64748B;

    line-height:1.9;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}


/*==========================================================
    TRADE SHOW INTRO
==========================================================*/

.trade-intro{

    background:#fff;

}

.trade-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.trade-content ul{

    margin-top:30px;

}

.trade-content li{

    margin-bottom:16px;

    color:#475569;

}

/*==========================================================
    TRADE BENEFITS
==========================================================*/

.trade-benefits{

    background:#F8FAFC;

}

.trade-benefits .benefits-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.trade-benefits .benefit-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.trade-benefits .benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.benefit-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:rgba(22,163,74,.10);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.benefit-icon i{

    font-size:30px;

    color:var(--primary);

}

.trade-benefits .benefit-card h3{

    margin-bottom:15px;

}

.trade-benefits .benefit-card p{

    color:#64748B;

    line-height:1.8;

}

/*==========================================================
    DATA INCLUDED
==========================================================*/

.trade-data{

    background:#fff;

}

.data-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.data-item{

    background:#F8FAFC;

    border:1px solid var(--border);

    border-radius:16px;

    padding:18px 22px;

    font-weight:500;

    display:flex;

    align-items:center;

    gap:12px;

}

.data-item i{

    color:var(--primary);

}

/*==========================================================
    TRADE EVENTS
==========================================================*/

.trade-events{

    background:#F8FAFC;

}

.events-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.event-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.event-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.event-card i{

    font-size:38px;

    color:var(--primary);

    margin-bottom:20px;

}

.event-card h3{

    margin-bottom:10px;

}

.event-card p{

    color:#64748B;

    line-height:1.7;

    margin:0;

}

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

.footer-logo{

    display:inline-flex;

    align-items:center;

    margin-bottom:24px;

}

.footer-logo img{

    height:52px;

    width:auto;

    display:block;

    transition:opacity .35s ease,
               transform .35s ease;

}

.footer-logo:hover img{

    opacity:.9;

    transform:translateY(-2px);

}