/*================================================

BioVerse Analytics

Version 1.0

================================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

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

background:#ffffff;

color:#222;

overflow-x:hidden;

}

a{

text-decoration:none;

}

section{

padding:100px 0;

}

.container{

max-width:1600px;

}

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

.navbar{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 3px 15px rgba(0,0,0,0.08);
    padding:18px 0;
    z-index:9999;
    transition:0.3s ease;
}

.navbar-brand{
    font-size:30px;
    font-weight:700;
    color:#071A35 !important;
}

.navbar-brand i{
    color:#00B5E2;
    margin-right:8px;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
.brand-logo{
    width:62px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}
.brand-text{
    display:flex;
    align-items:center;
    gap:3px;
    line-height:1;
    white-space:nowrap;
}

.brand-text .bio,
.brand-text .verse,
.brand-text .analytics{
    font-size:34px !important;
    font-weight:800 !important;
    line-height:1;
}

.bio{
    color:#071A35;
}

.verse{
    color:#00B5E2;
    margin-left:-1px;  
}

.analytics{
    color:#071A35;
    margin-left:8px;
}

.navbar-nav{
    align-items:center;
}

.nav-link{
    color:#071A35 !important;
    font-size:17px;
    font-weight:600;
    margin-left:14px;
    transition:0.3s;
    position:relative;
}

.nav-link:hover{
    color:#00B5E2 !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#00B5E2;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.register-btn{
    background:#00B5E2;
    color:#fff !important;
    padding:12px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.register-btn:hover{
    background:#071A35;
    color:#fff !important;
    transform:translateY(-2px);
}

/*============================
Upcoming Workshop
=============================*/

.workshop-alert{ 
    padding:10px 0;
    background:#EAF8FD;
    border-bottom:1px solid #d8eef5;
}
.live-badge{
    background:#ff3b30;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
    animation:pulse 1.5s infinite;
}

.workshop-text strong{
    color:#071A35;
    animation:highlight 1.2s infinite alternate;
}

@keyframes pulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(255,59,48,.6);
    }
    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 15px rgba(255,59,48,0);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(255,59,48,0);
    }
}

@keyframes highlight{
    from{
        color:#071A35;
    }
    to{
        color:#00B5E2;
    }
}
.workshop-alert .container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.workshop-text{
    color:#1d3557;
    font-size:16px;
}

.workshop-link{
    color:#00B5E2;
    font-weight:700;
    text-decoration:none;
}

.workshop-link:hover{
    text-decoration:underline;
}

.brochure-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 18px;
    margin-left:20px;

    background:#fff;
    color:#00B5E2;
    border:2px solid #00B5E2;
    border-radius:50px;

    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

.brochure-btn:hover{
    background:#00B5E2;
    color:#fff;
    transform:translateY(-2px);
}

.brochure-btn i{
    font-size:18px;
    color:inherit;

}

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

.hero{
    padding:30px 0 40px;
    display:flex;
    align-items:center;

    background:
        radial-gradient(circle at top right,#dff8ff 0%,transparent 40%),
        linear-gradient(180deg,#ffffff,#f7fbff);
}

.hero-btn{
    background:#00B5E2;
    color:white;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
}

.hero-btn:hover{
    background:#071A35;
    color:white;
}

.hero-btn-outline{
    border:2px solid #00B5E2;
    color:#00B5E2;
    padding:15px 34px;
    border-radius:50px;
    margin-left:15px;
}

.hero-btn-outline:hover{
    background:#00B5E2;
    color:white;
}

.hero-subtitle{
    color:#00B5E2;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.hero h1{
    color:#071A35;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-image{
    animation: float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

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

.hero-video{
    width:100%;
    max-width:600px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    transition:0.3s ease;
}

.hero-video:hover{
    transform:scale(1.02);
}

.hero-video{
    width:100%;
    max-width:650px;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/*=====================================================*/
/* TECHNOLOGIES */
/*=====================================================*/

.tech-section{
    padding:60px 0;
    background:#fff;
}

.tech-ribbon{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.tech-ribbon span{
    background:#f5f9fc;
    border:1px solid #dcecf7;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    color:#071A35;
    transition:.3s;
}

.tech-ribbon span:hover{
    background:#00B5E2;
    color:#fff;
    transform:translateY(-3px);
}

.section-title{
    font-size:44px;
    font-weight:700;
    color:#071A35;
}

.section-subtitle{
    max-width:700px;
    margin:15px auto 35px;
    color:#666;
    font-size:18px;
}

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

.about-section{
    padding:80px 0;
    background:#f9fcff;
}

.section-tag{
    color:#00B5E2;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-title{
    font-size:46px;
    font-weight:700;
    color:#071A35;
    margin:15px 0 25px;
}

.about-text{
    color:#555;
    line-height:1.9;
    font-size:17px;
    margin-bottom:20px;
}

.about-features{
    margin-top:30px;
}

.feature-item{
    margin-bottom:15px;
    font-size:17px;
    color:#071A35;
    font-weight:500;
}

.feature-item i{
    color:#00B5E2;
    margin-right:10px;
}

.about-image{
    max-width:90%;
    animation:float 4s ease-in-out infinite;
}

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

.stats-section{
    padding:80px 0;
    background:#f8fcff;
}

.stats-header{
    text-align:center;
    margin-bottom:60px;
}

.stats-header h2{
    font-weight:700;
    color:#071A35;
}

.stats-header p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.stat-card{
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,181,226,.18);
}

.stat-icon{
    width:70px;
    height:70px;
    background:#EAF8FD;
    color:#00B5E2;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:30px;
    margin-bottom:20px;
}

.stat-number{
    font-size:42px;
    font-weight:700;
    color:#071A35;
}

.stat-text{
    color:#666;
    margin-top:10px;
}

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

.contact-section{
    padding:90px 0;
    background:#f8fcff;
}

.contact-info h3{
    font-size:34px;
    font-weight:700;
    color:#071A35;
    margin-bottom:20px;
}

.contact-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
    font-size:18px;
    color:#071A35;
}

.contact-item i{
    width:55px;
    height:55px;
    background:#00B5E2;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:20px;
}

.contact-card{

    background:white;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.form-control{

    border-radius:14px;
    padding:14px 18px;
    border:1px solid #dfe9f2;
    box-shadow:none;

}

.form-control:focus{

    border-color:#00B5E2;
    box-shadow:0 0 0 .2rem rgba(0,181,226,.15);

}

.social-icons{

    margin-top:35px;

}

.social-icons a{

    width:50px;
    height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:white;
    color:#00B5E2;
    margin-right:12px;
    font-size:22px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.social-icons a:hover{

    background:#00B5E2;
    color:white;
    transform:translateY(-5px);

}

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

.contact-cta{

    padding:90px 0;

    background:linear-gradient(135deg,#071A35,#0E3B66);

    color:#fff;

}

.cta-tag{

    display:inline-block;

    padding:8px 18px;

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

    border-radius:50px;

    letter-spacing:1px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.contact-cta h2{

    font-size:46px;

    font-weight:700;

    margin-bottom:20px;

}

.contact-cta p{

    font-size:18px;

    line-height:1.8;

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

    max-width:720px;

}

.contact-cta .row{
    align-items:flex-start;
}

.cta-buttons{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:15px;
    margin-top:35px;
}
.cta-btn-primary,
.cta-btn-outline{

    width:220px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50px;
    font-size:15px;
    font-weight:600;

    transition:.3s;
}
.cta-btn-primary{

    background:#00B5E2;

    color:#fff;

}

.cta-btn-primary:hover{

    background:#fff;

    color:#071A35;

    transform:translateY(-4px);

}

.cta-btn-outline{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.cta-btn-outline:hover{

    background:#fff;

    color:#071A35;

    transform:translateY(-4px);

}

.cta-btn-primary i,
.cta-btn-outline i{
    margin-right:8px;
    font-size:15px;
}


@media (max-width:992px){

    .contact-cta{
        text-align:center;
    }

    .cta-buttons{
        align-items:center;
        margin-top:40px;
    }

    .cta-btn-primary,
    .cta-btn-outline{
        width:220px;
        
    }
}

.registration-hero{

padding:140px 0 70px;

background:linear-gradient(135deg,#f8fcff,#eef9ff);

text-align:center;

}

.registration-hero h1{

font-size:52px;

font-weight:700;

color:#071A35;

margin-bottom:20px;

}

.hero-desc{

font-size:20px;

color:#555;

max-width:850px;

margin:auto;

}

.info-grid{

display:grid;

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

gap:25px;

margin-top:60px;

}

.info-card{

background:#fff;

padding:35px;

border-radius:18px;

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

transition:.3s;

}

.info-card:hover{

transform:translateY(-8px);

}

.info-card i{

font-size:40px;

color:#00B5E2;

margin-bottom:20px;

}

.info-card h5{

font-weight:700;

margin-bottom:10px;

}

.registration-buttons{

margin-top:50px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.registration-buttons .btn{

padding:15px 35px;

border-radius:50px;

font-weight:600;

}

.registration-form{

padding:80px 0;

background:white;

}

.registration-form iframe{

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.12);

border:none;

}
.registration-section{
    padding:150px 0 100px;
    background:
        radial-gradient(circle at top right,#dff8ff 0%,transparent 45%),
        linear-gradient(180deg,#ffffff,#f6fbff);
}

.registration-header{
    margin-bottom:60px;
}

.registration-header h1{
    font-size:48px;
    font-weight:700;
    color:#071A35;
}

.registration-header p{
    font-size:19px;
    color:#555;
    max-width:800px;
    margin:auto;
}

.workshop-card{

    background:#fff;

    border-radius:22px;

    padding:40px;

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

    border:1px solid rgba(0,181,226,.12);

    position:sticky;
    top:120px;

}

.workshop-card h3{

    color:#071A35;
    font-size:32px;
    font-weight:700;
    margin-bottom:35px;

}

.workshop-card h3 i{

    color:#00B5E2;
    margin-right:12px;

}

.info-item{

    display:flex;
    align-items:flex-start;

    gap:18px;

    padding-bottom:22px;

    margin-bottom:22px;

    border-bottom:1px solid #edf3f7;

}

.info-item:last-child{

    border-bottom:none;

}

.info-item i{

    width:60px;
    height:60px;

    border-radius:18px;

    background:#EAF8FD;

    color:#00B5E2;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.info-item h6{

    color:#071A35;

    font-size:18px;

    font-weight:700;

    margin-bottom:6px;

}

.info-item p{

    margin:0;

    color:#666;

    line-height:1.6;

    font-size:16px;

}  

.form-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.form-card iframe{

    display:block;

}

.registration-section{
    padding:150px 0 80px;
    background:linear-gradient(180deg,#f7fbff,#ffffff);
}

.registration-header{
    margin-bottom:70px;
}

.registration-header h1{
    font-size:52px;
    font-weight:700;
    color:#071A35;
    line-height:1.2;
}

.registration-header p{
    max-width:850px;
    margin:25px auto 0;
    font-size:19px;
    color:#555;
}

.workshop-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:sticky;
    top:120px;
}

.form-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.form-card iframe{
    display:block;
    border:none;
}

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

.navbar-brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.brand-logo{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.brand-text{
    line-height:1;
}

.brand-text .bio{
    color:#071A35;
    font-size:30px;
    font-weight:700;
}

.brand-text .verse{
    color:#00B5E2;
    font-size:30px;
    font-weight:700;
}

.brand-text .analytics{
    color:#071A35;
    font-size:16px;
    font-weight:600;
    letter-spacing:1px;

}

.whatsapp-btn{
    background-color:#25D366 !important;
    border-color:#25D366 !important;
    color:#fff !important;
    font-weight:600;
    border-radius:50px;
    padding:12px 24px;
    transition:0.3s ease;
}

.whatsapp-btn:hover{
    background-color:#128C7E !important;
    border-color:#128C7E !important;
    color:#fff !important;
}

.whatsapp-btn i{
    margin-right:8px;
}

.btn.whatsapp-btn{
    background:#25D366 !important;
    border:2px solid #25D366 !important;
    color:#fff !important;
}

.btn.whatsapp-btn:hover{
    background:#128C7E !important;
    border-color:#128C7E !important;
    color:#fff !important;
}
