/* =====================================================
   IG PRINT PORTAL
   Version 0.1
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#f4f7fb;

    color:#1b1b1b;

    line-height:1.6;

}

a{

    text-decoration:none;

    color:inherit;

}

img{

    max-width:100%;

    display:block;

}

.container{

    width:min(1180px,92%);

    margin:auto;

}

/* ==========================
        HEADER
========================== */

.header{

    background:#ffffff;

    box-shadow:0 4px 18px rgba(0,0,0,.05);

    position:sticky;

    top:0;

    z-index:999;

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:82px;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}
.logo-image{
    width:58px;
    height:58px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
}

.logo-icon{

    font-size:34px;

}

.logo-text h2{

    font-size:24px;

    color:#0b5ed7;

    font-weight:800;

}

.logo-text span{

    color:#666;

    font-size:14px;

}

.navigation{

    display:flex;

    gap:30px;

}

.navigation a{

    font-weight:600;

    transition:.25s;

}

.navigation a:hover{

    color:#0b5ed7;

}

.btn-header{

    background:#0b5ed7;

    color:white;

    padding:12px 22px;

    border-radius:10px;

    font-weight:700;

    transition:.25s;

}

.btn-header:hover{

    background:#094cad;

}

/* ==========================
        HERO
========================== */

.hero{

    padding:90px 0;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    background:#eaf2ff;

    color:#0b5ed7;

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

.hero h1{

    font-size:54px;

    line-height:1.1;

    margin-bottom:24px;

}

.hero p{

    color:#666;

    font-size:20px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#0b5ed7;

    color:white;

    padding:16px 32px;

    border-radius:12px;

    font-weight:700;

}

.btn-secondary{

    background:white;

    border:2px solid #0b5ed7;

    color:#0b5ed7;

    padding:16px 32px;

    border-radius:12px;

    font-weight:700;

}

.hero-card{

    background:white;

    border-radius:24px;

    padding:40px;

    box-shadow:0 25px 50px rgba(0,0,0,.08);

}

.status{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:25px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#27c93f;

}

.hero-card h3{

    font-size:34px;

    color:#0b5ed7;

    margin-bottom:20px;

}

.hero-card p{

    font-size:20px;

    color:#555;

}
/* ======================================================
   COMPONENT 004.1
   SERVICES CARDS
====================================================== */

.services{
    padding:90px 0;
    background:#ffffff;
}

.services .section-title{
    text-align:center;
    margin-bottom:18px;
}

.services .section-subtitle{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
    color:#666;
    line-height:1.7;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #ececec;
    position:relative;
    display:flex;
    flex-direction:column;
    box-shadow:0 8px 25px rgba(0,0,0,.05);

    opacity:0;
    transform:translateY(60px);

    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    will-change:transform,opacity;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.service-image{
    width:100%;
    height:220px;
    overflow:hidden;
    background:#f5f5f5;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.service-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:linear-gradient(135deg,#0077ff,#00c6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,119,255,.25);
}

.service-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:14px;
    color:#222;
}

.service-text{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    flex:1;
}

.service-list{
    list-style:none;
    padding:0;
    margin:0 0 28px;
}

.service-list li{
    display:flex;
    align-items:center;
    margin-bottom:12px;
    color:#444;
    font-size:15px;
}

.service-list li::before{
    content:"✓";
    width:22px;
    height:22px;
    border-radius:50%;
    background:#eaf5ff;
    color:#0077ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    font-size:13px;
    font-weight:bold;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:50px;
    background:#0077ff;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#005fd0;
}

.service-card::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#0077ff,#00c6ff);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-card:hover::after{
    transform:scaleX(1);
}
/* ======================================================
   COMPONENT 005.1
   ADVANTAGES
====================================================== */

.advantages{
    padding:100px 0;
    background:#f7faff;
}

.advantages .section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.advantages .section-title span{
    display:inline-block;
    color:#0b5ed7;
    font-weight:600;
    margin-bottom:12px;
}

.advantages .section-title h2{
    font-size:42px;
    margin-bottom:18px;
    color:#222;
}

.advantages .section-title p{
    color:#666;
    line-height:1.8;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.advantage-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:40px 35px;
    overflow:hidden;
    transition:.35s;
    border:1px solid #ececec;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.advantage-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.advantage-number{
    position:absolute;
    top:18px;
    right:22px;

    font-size:64px;
    font-weight:800;

    color:#0b5ed7;
    opacity:.08;

    user-select:none;
}

.advantage-card h3{

    font-size:24px;
    margin-bottom:18px;

    color:#222;
}

.advantage-card p{

    color:#666;
    line-height:1.8;
}

.advantage-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:linear-gradient(
        to bottom,
        #0b5ed7,
        #1aa7ff
    );

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;
}

.advantage-card:hover::before{

    transform:scaleY(1);

}
/* ======================================================
   COMPONENT 006.1
   GALLERY
====================================================== */

.gallery{
    padding:100px 0;
    background:#ffffff;
}

.gallery .section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.gallery .section-title span{
    display:inline-block;
    color:#0b5ed7;
    font-weight:600;
    margin-bottom:12px;
}

.gallery .section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:18px;
}

.gallery .section-title p{
    color:#666;
    line-height:1.8;
}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#f3f7fc;

    height:260px;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::after{

    content:"🔍";

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%) scale(.8);

    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(11,94,215,.9);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    pointer-events:none;

    font-size:28px;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover::after{

    opacity:1;

    transform:translate(-50%,-50%) scale(1);

}
/* ======================================================
   COMPONENT 007.1
   CONTACTS
====================================================== */

.contacts{
    padding:100px 0;
    background:#f7faff;
}

.contacts .section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.contacts .section-title span{
    display:inline-block;
    color:#0b5ed7;
    font-weight:600;
    margin-bottom:12px;
}

.contacts .section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:18px;
}

.contacts .section-title p{
    color:#666;
    line-height:1.8;
}

.contacts-wrapper{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:40px;

    align-items:start;

}

.contact-info{

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.contact-info h3{

    color:#0b5ed7;

    font-size:34px;

    margin-bottom:30px;

}

.contact-info ul{

    list-style:none;

    padding:0;

    margin:0;

}

.contact-info li{

    margin-bottom:28px;

    color:#444;

    line-height:1.8;

}

.contact-info strong{

    display:block;

    color:#222;

    margin-bottom:8px;

}

.contact-info a{

    color:#0b5ed7;

    text-decoration:none;

    transition:.3s;

}

.contact-info a:hover{

    color:#0849a8;

}

.contact-buttons{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:18px;

    border-radius:18px;

    font-size:18px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.contact-btn:hover{

    transform:translateY(-5px);

}

.whatsapp{

    background:#25D366;

    color:#fff;

}

.telegram{

    background:#229ED9;

    color:#fff;

}

.phone{

    background:#0b5ed7;

    color:#fff;

}

.route{

    background:#fff;

    color:#0b5ed7;

    border:2px solid #0b5ed7;

}
/* ======================================================
   COMPONENT 007.2
   TRUST SECTION
====================================================== */

.trust-section{
    padding:100px 0;
    background:#ffffff;
}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.trust-card{

    background:#ffffff;

    border-radius:24px;

    padding:40px;

    border:1px solid #ececec;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.trust-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.trust-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:linear-gradient(
        to bottom,
        #0b5ed7,
        #1aa7ff
    );

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;

}

.trust-card:hover::before{

    transform:scaleY(1);

}

.trust-rating{

    font-size:48px;

    font-weight:700;

    color:#0b5ed7;

    margin-bottom:30px;

}

.trust-rating strong{

    color:#222;

    margin-left:8px;

}

.trust-info{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-bottom:35px;

}

.trust-info div{

    flex:1;

    text-align:center;

    padding:20px;

    border-radius:18px;

    background:#f7faff;

}

.trust-info h3{

    font-size:34px;

    color:#0b5ed7;

    margin-bottom:6px;

}

.trust-info span{

    color:#666;

    font-size:15px;

}

.trust-list{

    list-style:none;

    padding:0;

    margin:0;

}

.trust-list li{

    display:flex;

    align-items:center;

    margin-bottom:18px;

    color:#444;

    font-size:17px;

}

.trust-list li::before{

    content:"✓";

    width:26px;

    height:26px;

    border-radius:50%;

    background:#e9f5ff;

    color:#0b5ed7;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:14px;

    font-weight:bold;

}

.trust-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    padding:18px 25px;

    margin-top:15px;

    border-radius:50px;

    background:#0b5ed7;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.trust-btn:hover{

    background:#0849a8;

    transform:translateY(-3px);

}
/* ==========================================
   007.3 — Trust Animation
========================================== */

.trust-card{
    opacity:0;
    transform:translateY(45px);
    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.trust-card.show{

    opacity:1;

    transform:translateY(0);

}

.trust-card:nth-child(2){

    transition-delay:.18s;

}

.trust-card:hover{

    border-color:#dbe8ff;

}

.trust-btn{

    position:relative;

    overflow:hidden;

}

.trust-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.7s;

}

.trust-btn:hover::before{

    left:150%;

}
/* ==========================================================
   COMPONENT 008.2
   FAQ
========================================================== */

.faq-section{

    padding:90px 0;

    background:#f4f8ff;

}

.faq-title{

    text-align:center;

    margin-bottom:60px;

}

.faq-title span{

    display:inline-block;

    color:#0b5ed7;

    font-weight:600;

    font-size:15px;

    letter-spacing:.8px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.faq-title h2{

    font-size:42px;

    font-weight:800;

    color:#20242d;

    margin-bottom:14px;

}

.faq-title p{

    max-width:650px;

    margin:0 auto;

    color:#6b7280;

    line-height:1.7;

}

.faq-list{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid transparent;

}

.faq-item:hover{

    border-color:#0b5ed7;

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(11,94,215,.12);

}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    cursor:pointer;

    padding:24px 28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:700;

    color:#222;

    transition:.3s;

}

.faq-question:hover{

    color:#0b5ed7;

}

.faq-icon{

    width:36px;

    height:36px;

    border-radius:50%;

    background:#eef5ff;

    color:#0b5ed7;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

    transition:.35s;

    flex-shrink:0;

}

.faq-item.active .faq-icon{

    background:#0b5ed7;

    color:#fff;

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 28px 26px;

    color:#616b78;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:300px;

}
/* ==========================================================
   COMPONENT 009.2
   CTA
========================================================== */

.cta-section{

    padding:100px 0;

    background:#f5f9ff;

}

.cta-box{

    opacity:0;

    transform:translateY(50px);

    max-width:900px;

    margin:0 auto;

    background:#ffffff;

    border-radius:28px;

    padding:70px;

    text-align:center;

    border:1px solid #e6eefb;

    box-shadow:0 25px 70px rgba(13,94,215,.08);

    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .45s ease;

}

.cta-box.show{

    opacity:1;

    transform:translateY(0);

}  

.cta-box:hover{

    transform:translateY(-6px);

    box-shadow:0 35px 80px rgba(13,94,215,.12);

}

.cta-subtitle{

    display:inline-block;

    margin-bottom:18px;

    color:#0b5ed7;

    font-weight:700;

    letter-spacing:.4px;

    text-transform:uppercase;

    font-size:13px;

}

.cta-box h2{

    font-size:42px;

    margin-bottom:22px;

    line-height:1.2;

}

.cta-box p{

    max-width:680px;

    margin:0 auto;

    color:#666;

    line-height:1.8;

    font-size:18px;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:22px;

    flex-wrap:wrap;

}

.cta-btn{

    position:relative;

    overflow:hidden;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:230px;

    height:62px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.cta-whatsapp{

    background:#0b5ed7;

    color:#fff;

}

.cta-telegram{

    background:#ffffff;

    color:#0b5ed7;

    border:2px solid #0b5ed7;

}

.cta-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(13,94,215,.22);

}

.cta-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.7s;

}

.cta-btn:hover::before{

    left:150%;

}

/* ========= CTA Animation ========= */

.cta-box{

    opacity:0;

    transform:translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .35s ease;

}

.cta-box.show{

    opacity:1;

    transform:translateY(0);

}
/* =========================================
   COMPONENT 010.2
   FOOTER
========================================= */

.footer{

    background:#0f172a;

    color:#fff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:70px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:24px;

    cursor:pointer;

    transition:transform .35s ease;

}
 .footer-logo img{
    width:64px;
    height:64px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
    transition:transform .4s ease;
}
.footer-logo:hover{

    transform:translateY(-8px);

}

.footer-logo:hover img{

    transform:rotate(-12deg) scale(1.12);

}

.footer-logo h3{
    font-size:30px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:4px;
}

.footer-logo span{
    color:#b9c6d2;
    font-size:15px;
    font-weight:500;
}

.footer-text{

    color:#cbd5e1;

    line-height:1.8;

    max-width:520px;

}

.footer-column h4{

    margin-bottom:24px;

    font-size:22px;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#0b5ed7;

}

.footer-bottom{

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#94a3b8;

}
/* =========================================
   COMPONENT 010.3
   Footer Hover
========================================= */

.footer-column li{

    transition:.3s ease;

}

.footer-column li:hover{

    transform:translateX(8px);

}

.footer-logo{

    transition:.35s ease;

}

.footer-logo:hover{

    transform:scale(1.03);

}

.footer-bottom{

    transition:.3s;

}

.footer-bottom:hover{

    color:#ffffff;

}
/* ==========================================
   COMPONENT 011.1
   SERVICES REVEAL
========================================== */


.service-card.show{

    opacity:1;

    transform:translateY(0);

}

.service-card:hover{

    transform:translateY(-10px);

}
/* ==========================================
   COMPONENT 011.2
   SERVICES PREMIUM HOVER
========================================== */

.service-card{

    cursor:pointer;

}

.service-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,119,255,.03),
        rgba(0,204,255,.03)
    );

    opacity:0;

    transition:opacity .35s ease;

    pointer-events:none;

}

.service-card:hover::after{

    opacity:1;

}

.service-card:hover .service-icon{

    transform:rotate(-6deg) scale(1.08);

}

.service-icon{

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.service-card:hover .service-title{

    color:#0077ff;

}

.service-title{

    transition:color .35s ease;

}

.service-card:hover .service-text{

    color:#555;

}

.service-text{

    transition:color .35s ease;

}
/* ==========================================
   COMPONENT 011.3
   SERVICES LIGHT EFFECT
========================================== */

.service-card{

    isolation:isolate;

}

.service-card::before{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    left:-180px;

    top:-180px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0,119,255,.12),
        transparent 70%
    );

    transition:
        left .55s ease,
        top .55s ease,
        opacity .45s ease;

    opacity:0;

    z-index:0;

    pointer-events:none;

}

.service-card:hover::before{

    left:-60px;

    top:-60px;

    opacity:1;

}

.service-content,
.service-image{

    position:relative;

    z-index:2;

}
/* ==========================================
   COMPONENT 011.4
   STAGGER ANIMATION
========================================== */

.service-card{

    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        filter .45s ease;

}

.service-card.show{

    filter:blur(0);

}

.service-card:not(.show){

    filter:blur(8px);

}
/* ======================================================
   COMPONENT 011.2
   ABOUT TECHNOMARKET
====================================================== */

.about{

    padding:100px 0;

    background:#f7faff;

    overflow:hidden;

}

.about-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.about-content{

    display:flex;

    flex-direction:column;

}

.about-badge{

    display:inline-flex;

    align-items:center;

    width:max-content;

    padding:10px 18px;

    margin-bottom:22px;

    border-radius:999px;

    background:#eaf2ff;

    color:#0b5ed7;

    font-size:14px;

    font-weight:700;

}

.about-title{

    font-size:46px;

    line-height:1.15;

    color:#222;

    margin-bottom:28px;

}

.about-description{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:35px;

}

.about-list{

    list-style:none;

    margin:0 0 40px;

    padding:0;

}

.about-list li{

    display:flex;

    align-items:center;

    margin-bottom:18px;

    color:#444;

    font-size:17px;

    transition:.35s;

}

.about-list li:hover{

    transform:translateX(8px);

    color:#0b5ed7;

}

.about-image{

    position:relative;

}

.about-image-wrapper{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    background:#ffffff;

    box-shadow:0 25px 55px rgba(0,0,0,.10);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}

.about-image-wrapper:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 70px rgba(0,0,0,.16);

}

.about-image img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.about-image-wrapper:hover img{

    transform:scale(1.05);

}

.about-card{

    position:absolute;

    left:35px;

    bottom:35px;

    min-width:210px;

    padding:22px 26px;

    border-radius:22px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.about-number{

    display:block;

    font-size:42px;

    font-weight:800;

    color:#0b5ed7;

    margin-bottom:6px;

}

.about-text{

    display:block;

    color:#555;

    font-size:15px;

    line-height:1.6;

}

/* ===============================
        REVEAL
================================ */

.about .reveal{

    opacity:0;

    transform:translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.about .reveal.show{

    opacity:1;

    transform:translateY(0);

}

/* ===============================
        HOVER BUTTON
================================ */

.about .btn-primary{

    width:max-content;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.about .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(11,94,215,.25);

}

/* ===============================
        DECORATION
================================ */

.about-image::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    right:-90px;

    top:-90px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(11,94,215,.14),
        transparent 72%
    );

    pointer-events:none;

}

.about-image::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    left:-60px;

    bottom:-60px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0,183,255,.12),
        transparent 72%
    );

    pointer-events:none;

}
/* ==========================================
   COMPONENT 006.2
   GALLERY LIGHTBOX
========================================== */

.gallery-lightbox{

    position:fixed;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,0,0,.88);

    opacity:0;

    visibility:hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index:5000;

    padding:30px;

}

.gallery-lightbox.active{

    opacity:1;

    visibility:visible;

}

.gallery-lightbox-overlay{

    position:absolute;

    inset:0;

}

.gallery-lightbox-content{

    position:relative;

    max-width:1100px;

    width:100%;

    max-height:90vh;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:2;

}

.gallery-lightbox-image{

    max-width:100%;

    max-height:90vh;

    border-radius:18px;

    background:#ffffff;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

    transform:scale(.92);

    transition:transform .35s ease;

}

.gallery-lightbox.active .gallery-lightbox-image{

    transform:scale(1);

}

.gallery-lightbox-close{

    position:absolute;

    top:-18px;

    right:-18px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#222;

    font-size:34px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:
        transform .25s ease,
        background .25s ease;

}

.gallery-lightbox-close:hover{

    transform:rotate(90deg);

    background:#f3f7fc;

}