/*====================================================
  EXO JOINT THERAPY
  Global Stylesheet
  Part 1
=====================================================*/

/*==============================
ROOT VARIABLES
==============================*/

:root{

    /* Colors */

    --primary:#0B4F8A;
    --primary-dark:#08345b;
    --secondary:#1DB954;

    --accent:#1FA2FF;

    --dark:#132238;
    --dark-2:#1D2D44;

    --white:#FFFFFF;

    --light:#F8FAFC;
    --light-2:#EEF3F8;

    --gray:#9CA8B4;
    --gray-dark:#556170;

    --success:#28a745;
    --warning:#ffc107;
    --danger:#dc3545;

    --text:#2C3440;

    /* Shadows */

    --shadow-sm:
        0 4px 10px rgba(0,0,0,.06);

    --shadow:

        0 10px 30px rgba(0,0,0,.10);

    --shadow-lg:

        0 25px 60px rgba(0,0,0,.15);

    /* Radius */

    --radius-sm:8px;
    --radius:16px;
    --radius-lg:26px;
    --radius-xl:40px;

    /* Container */

    --container:1280px;

    /* Animation */

    --transition:.35s ease;

}

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

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

html{

    scroll-behavior:smooth;

}

body{

    background:var(--light);

    color:var(--text);

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

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    font-family:inherit;

}

ul{

    list-style:none;

}

/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:100px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

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

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

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

    color:var(--dark);

    font-weight:700;

    line-height:1.15;

}

h1{

    font-size:4.2rem;

}

h2{

    font-size:3rem;

}

h3{

    font-size:2rem;

}

h4{

    font-size:1.4rem;

}

p{

    color:#5E6B79;

    margin-top:18px;

    margin-bottom:18px;

}

strong{

    color:var(--dark);

}

/*==============================
CONTAINER
==============================*/

.container{

    width:92%;

    max-width:var(--container);

    margin:auto;

}

.container-sm{

    width:90%;

    max-width:900px;

    margin:auto;

}

/*==============================
SECTIONS
==============================*/

section{

    padding:110px 0;

    position:relative;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-title p{

    max-width:760px;

    margin:auto;

}

/*==============================
UTILITY CLASSES
==============================*/

.text-center{

    text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.py{

    padding:100px 0;

}

.bg-white{

    background:white;

}

.bg-light{

    background:var(--light);

}

.bg-dark{

    background:var(--dark);

    color:white;

}

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

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:var(--transition);

}

header.scrolled{

    background:white;

    box-shadow:var(--shadow);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:88px;

}

.logo{

    font-size:1.8rem;

    font-weight:700;

    color:white;

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

    transition:var(--transition);

}

header.scrolled .logo{

    color:var(--dark);

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:white;

    font-weight:600;

    position:relative;

    transition:.3s;

}

header.scrolled .nav-links a{

    color:var(--dark);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--secondary);

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.mobile-toggle{

    display:none;

    font-size:2rem;

    cursor:pointer;

    color:white;

}

header.scrolled .mobile-toggle{

    color:var(--dark);

}

/*==============================
TOP BUTTON
==============================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:100px;

    background:var(--primary);

    color:white;

    font-weight:600;

    transition:.35s;

    box-shadow:var(--shadow);

}

.btn:hover{

    transform:translateY(-4px);

    background:var(--primary-dark);

}

.btn-outline{

    background:transparent;

    border:2px solid white;

}

.btn-outline:hover{

    background:white;

    color:var(--dark);

}

/*==============================
GRID
==============================*/

.grid-2{

    display:grid;

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

    gap:70px;

    align-items:center;

}

.grid-3{

    display:grid;

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

    gap:40px;

}

.grid-4{

    display:grid;

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

    gap:30px;

}

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

.card{

    background:white;

    border-radius:var(--radius);

    padding:35px;

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

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.card h3{

    margin-top:20px;

}

.card-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:2rem;

}

/*==============================
IMAGE STYLING
==============================*/

.rounded{

    border-radius:var(--radius-lg);

}

.shadow{

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

}

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

.badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:100px;

    background:rgba(29,185,84,.15);

    color:var(--secondary);

    font-weight:700;

    font-size:.9rem;

}

/*==============================
DIVIDER
==============================*/

.divider{

    width:120px;

    height:5px;

    background:linear-gradient(
        to right,
        var(--primary),
        var(--secondary)
    );

    margin:25px auto;

    border-radius:100px;

}

/*==============================
SELECTION
==============================*/

::selection{

    background:var(--primary);

    color:white;

}
/*====================================================
  EXO JOINT THERAPY
  Global Stylesheet
  Part 2
=====================================================*/


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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    color:white;

    background:
    
    url("../../images/hero.png");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

   

}

.hero-content{

    position:relative;
    z-index:5;
    max-width:760px;

}

.hero h1{

    color:white;
    font-size:4.6rem;
    margin-bottom:25px;

}

.hero p{

    color:#E5EDF6;
    font-size:1.2rem;
    max-width:650px;
    margin-bottom:45px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    animation:float 2s infinite;

    color:white;

    font-size:.9rem;

    letter-spacing:2px;

}


/*====================================================
BACKGROUND SHAPES
=====================================================*/

.bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(60px);

    opacity:.18;

    pointer-events:none;

}

.bg-circle.one{

    width:320px;
    height:320px;

    background:#1DB954;

    top:-100px;
    right:-60px;

}

.bg-circle.two{

    width:260px;
    height:260px;

    background:#1FA2FF;

    bottom:-120px;
    left:-100px;

}


/*====================================================
FEATURE BOXES
=====================================================*/

.features{

    display:grid;

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

    gap:35px;

}

.feature{

    text-align:center;

    padding:45px;

    background:white;

    border-radius:18px;

    transition:.35s;

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

}

.feature:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.feature-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2.3rem;

    color:white;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    margin-bottom:25px;

}


/*====================================================
STATISTICS
=====================================================*/

.stats{

    background:var(--dark);

    color:white;

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat{

    text-align:center;

}

.stat-number{

    font-size:3.5rem;

    font-family:"Montserrat",sans-serif;

    color:var(--secondary);

    font-weight:700;

}

.stat-title{

    color:#DDE8F2;

    letter-spacing:1px;

}


/*====================================================
INFORMATION BLOCK
=====================================================*/

.info-box{

    background:white;

    padding:50px;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.info-box ul{

    margin-top:30px;

}

.info-box li{

    margin-bottom:18px;

    padding-left:35px;

    position:relative;

}

.info-box li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--secondary);

    font-weight:700;

}


/*====================================================
TIMELINE
=====================================================*/

.timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    bottom:0;

    width:4px;

    background:linear-gradient(
        var(--primary),
        var(--secondary)
    );

    transform:translateX(-50%);

}

.timeline-item{

    width:50%;

    position:relative;

    padding:35px 50px;

}

.timeline-item:nth-child(odd){

    left:0;

    text-align:right;

}

.timeline-item:nth-child(even){

    left:50%;

}

.timeline-content{

    background:white;

    border-radius:20px;

    padding:30px;

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

}

.timeline-dot{

    position:absolute;

    width:22px;

    height:22px;

    border-radius:50%;

    background:var(--secondary);

    top:55px;

}

.timeline-item:nth-child(odd) .timeline-dot{

    right:-11px;

}

.timeline-item:nth-child(even) .timeline-dot{

    left:-11px;

}


/*====================================================
IMAGE OVERLAY
=====================================================*/

.image-card{

    overflow:hidden;

    border-radius:24px;

    position:relative;

}

.image-card img{

    transition:.6s;

}

.image-card:hover img{

    transform:scale(1.08);

}

.image-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:flex-end;

    flex-direction:column;

    padding:35px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );

    color:white;

}

.image-overlay h3{

    color:white;

}


/*====================================================
CALL TO ACTION
=====================================================*/

.cta{

    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--dark)
    );

    color:white;

    text-align:center;

    border-radius:35px;

    padding:90px 60px;

}

.cta h2{

    color:white;

    margin-bottom:20px;

}

.cta p{

    color:#D6E5F3;

    max-width:760px;

    margin:25px auto 40px;

}


/*====================================================
TABLE
=====================================================*/

.table-wrapper{

    overflow:auto;

    background:white;

    border-radius:20px;

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

}

table{

    width:100%;

    border-collapse:collapse;

}

th{

    background:var(--primary);

    color:white;

    padding:20px;

    text-align:left;

}

td{

    padding:18px;

    border-bottom:1px solid #EEF2F7;

}

tr:hover{

    background:#F8FAFC;

}


/*====================================================
QUOTE
=====================================================*/

.quote{

    background:white;

    border-left:6px solid var(--secondary);

    padding:35px;

    border-radius:18px;

    font-style:italic;

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

}


/*====================================================
ICON LIST
=====================================================*/

.icon-list{

    display:grid;

    gap:20px;

}

.icon-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

}

.icon-circle{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    flex-shrink:0;

}


/*====================================================
SECTION BACKGROUND
=====================================================*/

.wave{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    pointer-events:none;

}


/*====================================================
GLASS PANEL
=====================================================*/

.glass{

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

    backdrop-filter:blur(15px);

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

    border:1px solid rgba(255,255,255,.2);

    border-radius:24px;

    padding:40px;

}


/*====================================================
SPACING HELPERS
=====================================================*/

.gap-20{gap:20px;}
.gap-30{gap:30px;}
.gap-40{gap:40px;}
.gap-50{gap:50px;}

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.flex-between{

    display:flex;

    justify-content:space-between;

    align-items:center;

}


/*====================================================
FLOAT ANIMATION
=====================================================*/

@keyframes float{

0%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,-12px);

}

100%{

transform:translate(-50%,0);

}

}
/*====================================================
  EXO JOINT THERAPY
  Global Stylesheet
  Part 3
=====================================================*/


/*====================================================
FORMS
=====================================================*/

.form-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}

.form-group{

    display:flex;
    flex-direction:column;
    gap:10px;

}

.form-group.full{

    grid-column:1/-1;

}

label{

    font-weight:600;
    color:var(--dark);

}

input,
textarea,
select{

    width:100%;
    padding:16px 20px;

    border:1px solid #D9E2EC;

    border-radius:14px;

    background:#fff;

    font-size:1rem;

    color:var(--text);

    transition:var(--transition);

}

textarea{

    resize:vertical;
    min-height:180px;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 5px rgba(11,79,138,.12);

}

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

.contact-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

}

.contact-card{

    background:white;

    border-radius:22px;

    padding:35px;

    box-shadow:var(--shadow);

}

.contact-item{

    display:flex;

    gap:20px;

    margin:30px 0;

}

.contact-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.4rem;

    flex-shrink:0;

}

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

.faq{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:white;

    border-radius:16px;

    margin-bottom:20px;

    overflow:hidden;

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

}

.faq-question{

    padding:25px 30px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-weight:600;

}

.faq-question:hover{

    background:#F6F9FC;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s;

    padding:0 30px;

}

.faq-item.active .faq-answer{

    max-height:500px;

    padding:0 30px 30px;

}

.faq-arrow{

    font-size:1.4rem;

    transition:.35s;

}

.faq-item.active .faq-arrow{

    transform:rotate(180deg);

}

/*====================================================
ALERTS
=====================================================*/

.alert{

    padding:22px 30px;

    border-radius:16px;

    margin:30px 0;

}

.alert-success{

    background:#EAF8EF;

    color:#176B36;

}

.alert-warning{

    background:#FFF8E4;

    color:#8C6500;

}

.alert-danger{

    background:#FCEBEC;

    color:#A02631;

}

.alert-info{

    background:#EAF4FD;

    color:#084C88;

}

/*====================================================
PRICING / VALUE CARDS
=====================================================*/

.price-grid{

    display:grid;

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

    gap:35px;

}

.price-card{

    background:white;

    padding:45px;

    border-radius:22px;

    text-align:center;

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

    transition:.35s;

}

.price-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.price{

    font-size:3.3rem;

    font-weight:700;

    color:var(--primary);

    margin:20px 0;

}

.price-card ul{

    margin:35px 0;

}

.price-card li{

    margin-bottom:16px;

}

/*====================================================
NUMBER BOXES
=====================================================*/

.number-grid{

    display:grid;

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

    gap:30px;

}

.number-box{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

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

}

.number-box h2{

    color:var(--secondary);

}

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

.process{

    display:grid;

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

    gap:25px;

}

.process-step{

    text-align:center;

    position:relative;

}

.process-number{

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:1.7rem;

    font-weight:700;

    margin-bottom:25px;

}

/*====================================================
DOWNLOAD CARDS
=====================================================*/

.download-grid{

    display:grid;

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

    gap:30px;

}

.download-card{

    background:white;

    padding:35px;

    border-radius:18px;

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

    transition:.35s;

}

.download-card:hover{

    transform:translateY(-8px);

}

/*====================================================
SEARCH BAR
=====================================================*/

.search-box{

    position:relative;

    max-width:650px;

    margin:40px auto;

}

.search-box input{

    padding-left:60px;

}

.search-icon{

    position:absolute;

    left:22px;

    top:50%;

    transform:translateY(-50%);

    color:var(--gray);

}

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

footer{

    background:var(--dark);

    color:white;

    padding-top:90px;

}

.footer-grid{

    display:grid;

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

    gap:60px;

}

.footer-title{

    color:white;

    margin-bottom:20px;

}

.footer-links a{

    display:block;

    color:#C8D4E0;

    margin:12px 0;

    transition:.3s;

}

.footer-links a:hover{

    color:white;

    padding-left:8px;

}

.footer-bottom{

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

    margin-top:60px;

    padding:30px 0;

    text-align:center;

    color:#B8C7D5;

}

/*====================================================
SOCIAL ICONS
=====================================================*/

.social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

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

    transition:.35s;

}

.social a:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}

/*====================================================
LOADING
=====================================================*/

.loading{

    width:55px;

    height:55px;

    border-radius:50%;

    border:5px solid #E5EDF4;

    border-top:5px solid var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}

/*====================================================
HELPERS
=====================================================*/

.hide{

display:none;

}

.show{

display:block;

}

.w-100{

width:100%;

}

.round{

border-radius:50%;

}

.shadow-lg{

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

}

.text-white{

color:white;

}

.text-primary{

color:var(--primary);

}

.text-success{

color:var(--secondary);

}

.border{

border:1px solid #E5EDF4;

}

.border-top{

border-top:1px solid #E5EDF4;

}

.border-bottom{

border-bottom:1px solid #E5EDF4;
}

.position-relative{

position:relative;

}

.overflow-hidden{

overflow:hidden;
}
/*====================================================
  EXO JOINT THERAPY
  Global Stylesheet
  Part 4
=====================================================*/


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

.fade-up{

    opacity:0;

    transform:translateY(40px);

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

}

.fade-left{

    opacity:0;

    transform:translateX(-40px);

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

}

.fade-right{

    opacity:0;

    transform:translateX(40px);

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

}

.zoom-in{

    opacity:0;

    transform:scale(.92);

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

}

.visible{

    opacity:1;

    transform:none;

}


/*====================================================
HOVER EFFECTS
=====================================================*/

.hover-lift{

    transition:.35s;

}

.hover-lift:hover{

    transform:translateY(-8px);

}

.hover-scale{

    transition:.35s;

}

.hover-scale:hover{

    transform:scale(1.04);

}

.hover-shadow{

    transition:.35s;

}

.hover-shadow:hover{

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

}


/*====================================================
IMAGE EFFECTS
=====================================================*/

.image-hover{

    overflow:hidden;

}

.image-hover img{

    transition:.5s;

}

.image-hover:hover img{

    transform:scale(1.08);

}


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

.page-header{

    padding:170px 0 120px;

    text-align:center;

    color:white;

    background:

    linear-gradient(
        rgba(10,25,45,.75),
        rgba(10,25,45,.75)
    ),
    url("../images/header.jpg");

    background-size:cover;

    background-position:center;

}

.page-header h1{

    color:white;

    margin-bottom:20px;

}

.breadcrumb{

    display:flex;

    justify-content:center;

    gap:12px;

    color:#D6E5F3;

}


/*====================================================
SECTION DIVIDERS
=====================================================*/

.section-light{

    background:#fff;

}

.section-gray{

    background:#F6F8FB;

}

.section-dark{

    background:var(--dark);

    color:#fff;

}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4{

    color:white;

}

.section-dark p{

    color:#D8E4EF;

}


/*====================================================
BACK TO TOP
=====================================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:white;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

    box-shadow:var(--shadow);

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    background:var(--secondary);

}


/*====================================================
PROGRESS BAR
=====================================================*/

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(
        to right,
        var(--primary),
        var(--secondary)
    );

    z-index:9999;

}


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

@media(max-width:1200px){

.grid-4,
.stats-grid,
.number-grid{

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

}

.features{

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

}

.process{

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

}

.footer-grid{

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

}

.hero h1{

font-size:3.8rem;

}

}


@media(max-width:992px){

.grid-2,
.grid-3,
.grid-4,
.features,
.stats-grid,
.number-grid,
.price-grid,
.download-grid,
.contact-grid,
.form-grid{

grid-template-columns:1fr;

}

.timeline::before{

left:25px;

}

.timeline-item{

width:100%;

left:0 !important;

padding-left:70px;

padding-right:20px;

text-align:left !important;

}

.timeline-dot{

left:14px !important;

right:auto !important;

}

.process{

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

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero h1{

font-size:3.2rem;

}

.nav-links{

position:fixed;

top:88px;

right:-100%;

width:300px;

height:calc(100vh - 88px);

background:white;

display:flex;

flex-direction:column;

padding:40px;

gap:25px;

transition:.4s;

box-shadow:var(--shadow);

}

.nav-links.active{

right:0;

}

.nav-links a{

color:var(--dark) !important;

}

.mobile-toggle{

display:block;

}

}


@media(max-width:768px){

section{

padding:80px 0;

}

.container{

width:94%;

}

.hero{

padding:120px 0 70px;

min-height:auto;

}

.hero h1{

font-size:2.6rem;

}

.hero p{

font-size:1rem;

}

.section-title h2{

font-size:2.2rem;

}

.process{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.social{

justify-content:center;

}

.stats-grid{

gap:50px;

}

.stat-number{

font-size:2.8rem;

}

.btn{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

}


@media(max-width:500px){

h1{

font-size:2.2rem;

}

h2{

font-size:1.8rem;

}

.card,
.info-box,
.price-card,
.contact-card{

padding:25px;

}

.timeline-item{

padding-left:60px;

}

}


/*====================================================
PRINT
=====================================================*/

@media print{

header,
footer,
.back-top,
.progress-bar,
.btn{

display:none !important;

}

body{

background:white;

color:black;

}

section{

padding:20px 0;

}

.card{

box-shadow:none;

border:1px solid #ccc;

}

}


/*====================================================
ACCESSIBILITY
=====================================================*/

:focus-visible{

outline:3px solid var(--secondary);

outline-offset:3px;

}

@media(prefers-reduced-motion:reduce){

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}


/*====================================================
TEXT GRADIENT
=====================================================*/

.gradient-text{

background:linear-gradient(
90deg,
var(--primary),
var(--secondary)
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;

}


/*====================================================
GLASS NAVIGATION SUPPORT
=====================================================*/

header.glass{

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

backdrop-filter:blur(16px);

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

}


/*====================================================
END OF FILE
=====================================================*/