/*==================================================
    BITFORCE VENTURES (PVT) LTD
    Main Stylesheet
====================================================*/

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

:root{

    --primary:#16B7C8;
    --primary-dark:#1096A5;

    --secondary:#0B1F35;

    --dark:#09121F;

    --light:#F8FAFC;

    --white:#FFFFFF;

    --gray:#6B7280;

    --gray-light:#EEF2F7;

    --border:#E5E7EB;

    --success:#22C55E;

    --danger:#EF4444;

    --radius:18px;

    --shadow-sm:0 8px 24px rgba(0,0,0,.06);

    --shadow:0 20px 50px rgba(0,0,0,.10);

    --shadow-lg:0 40px 80px rgba(0,0,0,.18);

    --transition:.35s ease;

    --container:1320px;

}

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

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    font-size:16px;

    line-height:1.7;

    color:var(--dark);

    background:#fff;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    cursor:pointer;

    border:none;

    background:none;

}

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

.container{

    width:100%;

    max-width:var(--container);

    margin:auto;

    padding:0 24px;

}

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

section{

    padding:110px 0;

    position:relative;

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-subtitle{

    display:inline-block;

    padding:8px 18px;

    border-radius:100px;

    background:rgba(22,183,200,.10);

    color:var(--primary);

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:18px;

}

.section-header h2{

    font-size:48px;

    line-height:1.15;

    color:var(--secondary);

    margin-bottom:20px;

}

.section-header p{

    color:var(--gray);

    font-size:18px;

}

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

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:100px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:var(--primary-dark);

    box-shadow:var(--shadow);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

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

.hero-grid,
.why-us-grid{

    display:grid;

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

    gap:70px;

    align-items:center;

}

.categories-grid,
.products-grid,
.services-grid,
.industries-grid,
.statistics-grid,
.testimonials-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

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

.category-card,
.product-card,
.service-card,
.stat-card,
.industry-card,
.testimonial-card,
.info-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

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

    transition:var(--transition);

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

}

.category-card:hover,
.product-card:hover,
.service-card:hover,
.stat-card:hover,
.industry-card:hover,
.testimonial-card:hover,
.info-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

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

.category-icon,
.product-icon,
.service-icon,
.industry-icon{

    width:82px;

    height:82px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(22,183,200,.10);

    font-size:34px;

    margin-bottom:25px;

}

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

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

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

    backdrop-filter:blur(16px);

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

    transition:var(--transition);

}

.site-header.scrolled{

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

}

.site-header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:82px;

}

.site-logo{

    font-size:30px;

    font-weight:800;

    color:var(--secondary);

}

.site-logo span{

    color:var(--primary);

}

.main-navigation ul{

    display:flex;

    align-items:center;

    gap:36px;

}

.main-navigation a{

    color:var(--secondary);

    font-weight:600;

    position:relative;

}

.main-navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.main-navigation a:hover::after{

    width:100%;

}

.main-navigation a:hover{

    color:var(--primary);

}

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

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    linear-gradient(135deg,#09121F 0%,#0B1F35 100%);

    color:#fff;

    padding-top:120px;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,
    rgba(22,183,200,.20),
    transparent 45%);

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:100px;

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

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

    margin-bottom:24px;

    color:#fff;

    font-weight:600;

}

.hero-content h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    font-size:20px;

    color:rgba(255,255,255,.82);

    max-width:620px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.highlight{

    font-weight:600;

    color:#fff;

}

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

.hero-visual{

    position:relative;

    min-height:620px;

}

.floating-card{

    position:absolute;

    width:220px;

    padding:30px;

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

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

    backdrop-filter:blur(20px);

    border-radius:22px;

    text-align:center;

    color:#fff;

    box-shadow:0 25px 60px rgba(0,0,0,.30);

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

}

.floating-card .icon{

    font-size:50px;

    margin-bottom:18px;

}

.floating-card h3{

    margin-bottom:8px;

}

.laptop{

    top:40px;

    left:30px;

}

.desktop{

    top:280px;

    left:0;

    animation-delay:1s;

}

.printer{

    right:30px;

    top:80px;

    animation-delay:2s;

}

.networking{

    right:0;

    bottom:60px;

    animation-delay:3s;

}

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

}

.glow-1{

    width:280px;

    height:280px;

    background:rgba(22,183,200,.30);

    top:100px;

    right:120px;

}

.glow-2{

    width:180px;

    height:180px;

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

    bottom:60px;

    left:120px;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=====================================
=            BRANDS                    =
=====================================*/

.brands-section{

    background:var(--light);

    overflow:hidden;

}

.brands-slider{

    overflow:hidden;

    position:relative;

}

.brands-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:brandScroll 35s linear infinite;

}

.brands-track:hover{

    animation-play-state:paused;

}

.brand-card{

    width:180px;

    min-width:180px;

    background:#fff;

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

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:var(--transition);

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

}

.brand-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.brand-logo{

    width:72px;

    height:72px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(22,183,200,.12);

    color:var(--primary);

    font-size:30px;

    font-weight:800;

}

.brand-card h3{

    font-size:18px;

    color:var(--secondary);

}

@keyframes brandScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

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

.statistics-section{

    background:#fff;

}

.stat-card{

    text-align:center;

}

.stat-number{

    font-size:58px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:15px;

}

.stat-card h3{

    font-size:24px;

    margin-bottom:12px;

    color:var(--secondary);

}

.stat-card p{

    color:var(--gray);

}

/*=====================================
=        PRODUCT CATEGORIES            =
=====================================*/

.category-card{

    text-align:left;

}

.category-card h3{

    margin-bottom:15px;

    font-size:26px;

    color:var(--secondary);

}

.category-card p{

    color:var(--gray);

    margin-bottom:25px;

}

.category-link{

    color:var(--primary);

    font-weight:700;

}

.category-link:hover{

    color:var(--secondary);

}

/*=====================================
=        FEATURED PRODUCTS             =
=====================================*/

.featured-products-section{

    background:var(--light);

}

.product-card{

    position:relative;

    overflow:hidden;

}

.product-badge{

    position:absolute;

    top:20px;

    right:20px;

    background:var(--primary);

    color:#fff;

    padding:8px 16px;

    border-radius:100px;

    font-size:13px;

    font-weight:700;

}

.product-card h3{

    margin-bottom:10px;

    font-size:28px;

    color:var(--secondary);

}

.product-card h4{

    color:var(--primary);

    margin-bottom:18px;

    font-size:16px;

}

.product-card p{

    color:var(--gray);

    margin-bottom:28px;

}

.btn-product{

    display:inline-block;

    background:var(--secondary);

    color:#fff;

    padding:14px 28px;

    border-radius:100px;

    font-weight:700;

    transition:var(--transition);

}

.btn-product:hover{

    background:var(--primary);

}

/*=====================================
=            SERVICES                  =
=====================================*/

.services-section{

    background:#fff;

}

.service-card{

    text-align:left;

}

.service-card h3{

    font-size:25px;

    margin-bottom:15px;

    color:var(--secondary);

}

.service-card p{

    color:var(--gray);

    margin-bottom:22px;

}

.service-link{

    color:var(--primary);

    font-weight:700;

}

.service-link:hover{

    color:var(--secondary);

}

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

.why-us-section{

    background:linear-gradient(180deg,#F8FAFC 0%,#FFFFFF 100%);

}

.why-list{

    margin-top:45px;

}

.why-item{

    display:flex;

    gap:20px;

    margin-bottom:35px;

    align-items:flex-start;

}

.why-icon{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    flex-shrink:0;

}

.why-item h3{

    margin-bottom:8px;

    color:var(--secondary);

}

.why-item p{

    color:var(--gray);

}

.info-card{

    margin-bottom:30px;

}

.info-card h3{

    margin-bottom:15px;

    color:var(--secondary);

}

.info-card p{

    color:var(--gray);

}

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

.industries-section{

    background:var(--light);

}

.industry-card{

    text-align:center;

}

.industry-card h3{

    margin:20px 0 12px;

    color:var(--secondary);

    font-size:24px;

}

.industry-card p{

    color:var(--gray);

}

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

.process-section{

    background:#fff;

}

.process-timeline{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.process-card{

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

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

    transition:var(--transition);

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

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.process-number{

    width:60px;

    height:60px;

    margin:auto auto 20px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

}

.process-icon{

    font-size:42px;

    margin-bottom:18px;

}

.process-card h3{

    margin-bottom:15px;

    color:var(--secondary);

}

.process-card p{

    color:var(--gray);

}

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

.testimonials-section{

    background:linear-gradient(180deg,#F8FAFC,#fff);

}

.stars{

    color:#FFD43B;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-text{

    font-style:italic;

    color:var(--gray);

    margin-bottom:30px;

}

.testimonial-author h3{

    color:var(--secondary);

}

.testimonial-author span{

    color:var(--primary);

    font-size:14px;

}

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

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

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

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    background:#fff;

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    font-size:18px;

    font-weight:700;

    color:var(--secondary);

}

.faq-answer{

    display:none;

    padding:0 30px 24px;

}

.faq-answer p{

    color:var(--gray);

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}

.faq-icon{

    font-size:28px;

    color:var(--primary);

    transition:.3s;

}

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

.cta-section{

    background:linear-gradient(135deg,var(--secondary),#09121F);

}

.cta-wrapper{

    padding:80px;

    border-radius:30px;

    background:linear-gradient(135deg,var(--primary),#1096A5);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    color:#fff;

}

.cta-content{

    max-width:700px;

}

.cta-content .section-subtitle{

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

    color:#fff;

}

.cta-content h2{

    font-size:46px;

    margin:20px 0;

}

.cta-content p{

    color:rgba(255,255,255,.88);

    font-size:18px;

}

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.cta-buttons .btn-primary{

    background:#fff;

    color:var(--secondary);

}

.cta-buttons .btn-primary:hover{

    background:var(--secondary);

    color:#fff;

}

.cta-buttons .btn-outline{

    border-color:#fff;

    color:#fff;

    background:transparent;

}

.cta-buttons .btn-outline:hover{

    background:#fff;

    color:var(--secondary);

}

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

.site-footer{

    background:#09121F;

    color:#fff;

    padding:70px 0 30px;

}

.site-footer a{

    color:#D1D5DB;

}

.site-footer a:hover{

    color:var(--primary);

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:100px;

}

::-webkit-scrollbar-track{

    background:#E5E7EB;

}

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

@media(max-width:992px){

.hero-grid,
.why-us-grid{

grid-template-columns:1fr;

}

.hero-content{

text-align:center;

}

.hero-content p{

margin:auto auto 40px;

}

.hero-buttons,
.hero-highlights{

justify-content:center;

}

.hero-visual{

min-height:520px;

margin-top:60px;

}

.cta-wrapper{

flex-direction:column;

text-align:center;

padding:60px 40px;

}

.section-header h2{

font-size:38px;

}

}

@media(max-width:768px){

section{

padding:80px 0;

}

.hero-content h1{

font-size:42px;

}

.section-header h2{

font-size:32px;

}

.floating-card{

position:relative;

width:100%;

margin-bottom:20px;

left:auto;

right:auto;

top:auto;

bottom:auto;

animation:none;

}

.hero-visual{

display:grid;

grid-template-columns:1fr;

min-height:auto;

}

.main-navigation{

display:none;

}

.process-timeline{

grid-template-columns:1fr;

}

.statistics-grid,
.categories-grid,
.products-grid,
.services-grid,
.industries-grid,
.testimonials-grid{

grid-template-columns:1fr;

}

}