
/*==================================================
01. GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


/*==================================================
02. CSS VARIABLES
==================================================*/

:root{

    --primary:#0057FF;
    --primary-dark:#0046CF;

    --secondary:#FF7A00;
    --secondary-dark:#E96B00;

    --success:#16A34A;
    --danger:#DC2626;

    --dark:#0F172A;
    --dark-light:#334155;

    --text:#475569;

    --white:#FFFFFF;

    --body:#F8FAFC;

    --border:#E2E8F0;

    --shadow-sm:0 5px 15px rgba(0,0,0,.05);

    --shadow-md:0 15px 40px rgba(0,0,0,.08);

    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --radius:12px;

    --radius-lg:20px;

    --transition:.35s ease;

}


/*==================================================
03. RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--body);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

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,
select{

    font-family:inherit;

    outline:none;

}


/*==================================================
04. TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5,h6{

    color:var(--dark);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:60px;

}

h2{

    font-size:46px;

}

h3{

    font-size:30px;

}

p{

    font-size:16px;

}


/*==================================================
05. CONTAINER
==================================================*/

.container{

    width:100%;

    max-width:1280px;

    margin:auto;

    padding:0 20px;

}


/*==================================================
06. COMMON SECTION
==================================================*/

section{

    padding:100px 0;

    position:relative;

}

.section-title{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.section-title h2{

    margin:15px 0;

}

.section-title p{

    color:var(--text);

}


/*==================================================
07. BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;
   

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}


/*==================================================
08. FLEX UTILITIES
==================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.flex-between{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.flex-column{

    display:flex;

    flex-direction:column;

}


/*==================================================
09. SPACING UTILITIES
==================================================*/

.mt-20{margin-top:20px;}
.mt-40{margin-top:40px;}
.mt-60{margin-top:60px;}

.mb-20{margin-bottom:20px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}

.pt-60{padding-top:60px;}
.pb-60{padding-bottom:60px;}


/*==================================================
10. SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#EEF2F7;

}

/*==================================================
11. HEADER
==================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

}


/*==================================================
12. TOP BAR
==================================================*/

.topbar{

    background:var(--primary);

    color:var(--white);

    height:42px;

    display:flex;

    align-items:center;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:100%;

}

.top-left,
.top-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-left span,
.top-right span{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:14px;

    font-weight:500;

}

.topbar i{

    color:#FFD54A;

    font-size:14px;

}


/*==================================================
13. NAVBAR
==================================================*/

.navbar{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:all .35s ease;

}

.navbar.sticky{

    background:#ffffff;

    box-shadow:var(--shadow-md);

}

.nav-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:82px;

}


/*==================================================
14. LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:58px;

    width:auto;

}


/*==================================================
15. NAVIGATION MENU
==================================================*/

.menu{

    display:flex;

    align-items:center;

    gap:40px;

}

.menu li{

    position:relative;

}

.menu li a{

    color:var(--dark);

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

    position:relative;

}

.menu li a:hover{

    color:var(--primary);

}


/*==================================================
16. MENU HOVER EFFECT
==================================================*/

.menu li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.menu li a:hover::after,

.menu li a.active::after{

    width:100%;

}

.menu li a.active{

    color:var(--primary);

}


/*==================================================
17. MOBILE MENU BUTTON
==================================================*/

.menu-toggle{

    width:42px;

    height:42px;

    display:none;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    cursor:pointer;

}

.menu-toggle span{

    width:26px;

    height:3px;

    margin:3px 0;

    border-radius:10px;

    background:var(--dark);

    transition:var(--transition);

}


/*==================================================
18. HAMBURGER ANIMATION
==================================================*/

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}


/*==================================================
19. HEADER SPACER
==================================================*/

.header-space{

    height:60px;

}


.about-hero{

    min-height:600px;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    text-align:center;

    color:#fff;

    background-image:url("../images/about/about-hero.webp");

    background-size:cover;

    background-position:center;

    position:relative;

}

.about-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(56,43,152,.70);

}

.about-hero-content{

    position:relative;

    z-index:2;

}

.about-hero h1{

    font-size:58px;

    margin-bottom:20px;

}

.about-hero p{

    max-width:720px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

}

/* ===========================
   Company Story
=========================== */

.company-story{

    padding:100px 0;

    background:#fff;

}

.story-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    flex-wrap:wrap;

}

.story-content{

    flex:1;

    min-width:320px;

}

.story-image{

    flex:1;

    min-width:320px;

}

.story-image img{

    width:100%;

    border-radius:20px;

    display:block;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.section-subtitle{

    color:#382B98;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.story-content h2{

    font-size:42px;

    margin:15px 0 25px;

}

.story-content p{

    line-height:1.9;

    color:#666;

    margin-bottom:20px;

}

.story-highlights{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:35px;

}

.highlight-item{

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

}

.highlight-item i{

    color:#382B98;

    font-size:22px;

}

/*====================================
 Mission & Vision
====================================*/

.mission-vision{

    padding:100px 0;

    background:#F8F9FD;

}

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.section-heading h2{

    font-size:42px;

    margin:15px 0;

}

.section-heading p{

    color:#666;

    line-height:1.8;

}

.mission-wrapper{

    display:flex;

    gap:35px;

    justify-content:center;

    flex-wrap:wrap;

}

.mission-card{

    flex:1;

    min-width:320px;

    background:#fff;

    padding:45px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(56,43,152,.18);

}

.mission-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#382B98;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

}

.mission-card h3{

    margin-bottom:20px;

}

.mission-card p{

    color:#666;

    line-height:1.9;

}

/*====================================
 WHY CHOOSE CCFEX
====================================*/

.why-choose{

    padding:100px 0;

    background:#fff;

}

.why-grid{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    justify-content:center;

}

.why-card{

    flex:1 1 calc(33.333% - 30px);

    min-width:300px;

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:18px;

    border:1px solid #ECECEC;

    transition:.35s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#382B98;

    box-shadow:0 18px 40px rgba(56,43,152,.18);

}

.why-card i{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    background:#382B98;

    color:#fff;

    font-size:30px;

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

/*====================================
 COMPANY STATISTICS
====================================*/

.company-stats{

    padding:100px 0;

    background:#F8F9FD;

}

.stats-wrapper{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    justify-content:center;

}

.stat-card{

    flex:1 1 calc(25% - 30px);

    min-width:240px;

    background:#fff;

    padding:40px 25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(56,43,152,.18);

}

.stat-card i{

    font-size:36px;

    color:#382B98;

    margin-bottom:20px;

}

.stat-card h3{

    font-size:42px;

    color:#382B98;

    margin-bottom:10px;

}

.stat-card span{

    color:#666;

    font-weight:600;

}

/*====================================
 OUR PROCESS
====================================*/

.our-process{

    padding:100px 0;

    background:#ffffff;

}

.process-wrapper{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;

}

.process-card{

    flex:1 1 calc(25% - 30px);

    min-width:240px;

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    position:relative;

    border:1px solid #ECECEC;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:#382B98;

    box-shadow:0 20px 45px rgba(56,43,152,.18);

}

.process-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:18px;

    font-weight:700;

    color:#382B98;

    opacity:.2;

}

.process-card i{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#382B98;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.process-card h3{

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

/*====================================
        ABOUT CTA
====================================*/

.about-cta{

    padding:100px 0;

    background:
    linear-gradient(
        rgba(56,43,152,.82),
        rgba(56,43,152,.82)
    ),
    url("../images/cta/cta-banner.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.about-cta-wrapper{

    max-width:850px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.about-cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.about-cta p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}