/*=========================================================
AVBHA WEBSITE
Enterprise SaaS UI
Version 2.0
=========================================================*/

/*=========================================================
GOOGLE FONT
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#F5F8FD;

    color:#0F172A;

    overflow-x:hidden;

    line-height:1.7;

}

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

:root{

    --primary:#2563EB;

    --primary-dark:#1D4ED8;

    --secondary:#0F172A;

    --text:#475569;

    --white:#FFFFFF;

    --border:#E5EAF2;

    --card:rgba(255,255,255,.75);

    --shadow:

    0 15px 45px rgba(15,23,42,.08);

    --radius:22px;

}

/*=========================================================
COMMON
=========================================================*/

.container{

    width:min(1240px,92%);

    margin:auto;

}

section{

    padding:120px 0;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

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

.background{

    position:fixed;

    inset:0;

    z-index:-10;

    overflow:hidden;

}

.gradient{

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.25;

}

.gradient1{

    background:#4F8CFF;

    left:-180px;

    top:-200px;

}

.gradient2{

    background:#8B5CF6;

    right:-200px;

    top:250px;

}

.gridPattern{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(0,0,0,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(0,0,0,.03) 1px,transparent 1px);

    background-size:50px 50px;

}

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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

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

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

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

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

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    color:#111827;

    font-size:28px;

    font-weight:800;

}

.logoIcon{

    width:44px;

    height:44px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    background:linear-gradient(135deg,#2563EB,#60A5FA);

    box-shadow:0 10px 25px rgba(37,99,235,.25);

}

.logoText{

    letter-spacing:.5px;

}

/*=========================================================
NAVIGATION
=========================================================*/

nav ul{

    display:flex;

    gap:42px;

}

nav a{

    color:#475569;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#2563EB;

}

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

.headerButtons{

    display:flex;

    gap:16px;

    align-items:center;

}

.loginButton{

    color:#334155;

    font-weight:600;

}

.primaryButton{

    padding:15px 28px;

    border-radius:14px;

    background:linear-gradient(135deg,#2563EB,#4F8CFF);

    color:#fff;

    font-weight:700;

    transition:.35s;

    box-shadow:

    0 10px 30px rgba(37,99,235,.25);

}

.primaryButton:hover{

    transform:translateY(-4px);

}

.secondaryButton{

    padding:15px 28px;

    border-radius:14px;

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

    background:#fff;

    color:#111827;

    font-weight:700;

    transition:.3s;

}

.secondaryButton:hover{

    border-color:#2563EB;

    color:#2563EB;

}

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

.hero{

    padding-top:180px;

    padding-bottom:120px;

}

.heroContainer{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

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

.heroBadge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(37,99,235,.08);

    color:#2563EB;

    padding:12px 22px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:30px;

}

.heroLeft h1{

    font-size:72px;

    line-height:1.08;

    font-weight:900;

    color:#0F172A;

    margin-bottom:25px;

}

.heroLeft h1 span{

    background:linear-gradient(90deg,#2563EB,#38BDF8);

    background-clip:text;
    -webkit-background-clip:text;

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

}

.heroLeft p{

    color:#64748B;

    font-size:20px;

    max-width:620px;

    margin-bottom:45px;

}

.heroButtons{

    display:flex;

    gap:18px;

    margin-bottom:45px;

}

/*=========================================================
STATS
=========================================================*/

.heroStats{

    display:flex;

    gap:20px;

}

.statCard{

    flex:1;

    padding:22px;

    border-radius:20px;

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

    backdrop-filter:blur(18px);

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

    box-shadow:var(--shadow);

}

.statCard h3{

    font-size:20px;

    margin-bottom:6px;

}

.statCard p{

    margin:0;

    font-size:14px;

    color:#64748B;

}
/*=========================================================
HERO RIGHT
=========================================================*/

.heroRight{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.dashboardWindow{

    width:100%;

    max-width:620px;

    border-radius:28px;

    overflow:hidden;

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

    backdrop-filter:blur(24px);

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

    box-shadow:
    0 30px 70px rgba(15,23,42,.12);

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

}

.windowHeader{

    height:58px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 22px;

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

    border-bottom:1px solid #EEF2F7;

}

.dots{

    display:flex;

    gap:8px;

}

.dots span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.dots span:nth-child(1){

    background:#EF4444;

}

.dots span:nth-child(2){

    background:#F59E0B;

}

.dots span:nth-child(3){

    background:#10B981;

}

.windowTitle{

    font-weight:700;

    color:#334155;

}

.dashboardBody{

    padding:18px;

}

.dashboardBody img{

    border-radius:18px;

    box-shadow:0 12px 30px rgba(15,23,42,.08);

}

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

.floatingCard{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 22px;

    border-radius:18px;

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

    backdrop-filter:blur(20px);

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

    font-weight:700;

    color:#0F172A;

}

.floatingCard i{

    color:#2563EB;

    font-size:20px;

}

.floatingAI{

    top:40px;

    left:-40px;

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

}

.floatingCloud{

    bottom:90px;

    left:-20px;

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

}

.floatingSecurity{

    top:130px;

    right:-30px;

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

}

/*=========================================================
TRUST BAR
=========================================================*/

.trustBar{

    padding:45px 0;

}

.trustGrid{

    display:grid;

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

    gap:22px;

}

.trustGrid div{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:22px;

    border-radius:20px;

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

    backdrop-filter:blur(18px);

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

    box-shadow:var(--shadow);

    font-weight:600;

    color:#334155;

    transition:.35s;

}

.trustGrid div:hover{

    transform:translateY(-6px);

}

.trustGrid i{

    color:#2563EB;

    font-size:22px;

}

/*=========================================================
SECTION HEADINGS
=========================================================*/

.sectionHeading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.sectionHeading span{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(37,99,235,.10);

    color:#2563EB;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.sectionHeading h2{

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    color:#0F172A;

    margin-bottom:20px;

}

.sectionHeading p{

    color:#64748B;

    font-size:19px;

}

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

.industries{

    padding-top:120px;

}

.industryGrid{

    display:grid;

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

    gap:30px;

}

.industryCard{

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

    backdrop-filter:blur(18px);

    border-radius:26px;

    padding:28px;

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

    box-shadow:var(--shadow);

    transition:.35s;

}

.industryCard:hover{

    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(37,99,235,.12);

}

.industryCard img{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:18px;

    margin-bottom:22px;

}

.industryCard h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:14px;

    color:#0F172A;

}

.industryCard p{

    color:#64748B;

    font-size:16px;

    line-height:1.8;

}

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

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0px);

    }

}
/*=========================================================
PLATFORM SECTION
=========================================================*/

.platform{

    padding:140px 0;

}

.platformGrid{

    display:grid;

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

    gap:35px;

}

.featureCard{

    position:relative;

    overflow:hidden;

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

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:40px;

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

    box-shadow:var(--shadow);

    transition:.35s;

}

.featureCard::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    opacity:.08;

    right:-80px;

    top:-80px;

}

.featureCard:hover{

    transform:translateY(-12px);

    box-shadow:

    0 35px 70px rgba(37,99,235,.15);

}

.featureIcon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563EB,#60A5FA);

    color:#fff;

    font-size:28px;

    margin-bottom:25px;

}

.featureCard h3{

    font-size:26px;

    font-weight:700;

    margin-bottom:16px;

    color:#0F172A;

}

.featureCard p{

    color:#64748B;

    line-height:1.9;

}

/*=========================================================
PRODUCT SHOWCASE
=========================================================*/

.productShowcase{

    padding:140px 0;

}

.showcaseContainer{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.sectionMini{

    display:inline-block;

    padding:10px 20px;

    background:rgba(37,99,235,.08);

    color:#2563EB;

    border-radius:30px;

    font-weight:700;

    margin-bottom:22px;

}

.showcaseLeft h2{

    font-size:54px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.showcaseLeft p{

    font-size:18px;

    color:#64748B;

    margin-bottom:35px;

}

.showcaseList{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:40px;

}

.showcaseList div{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:600;

}

.showcaseList i{

    color:#2563EB;

}

.showcaseRight{

    position:relative;

}

.showcaseRight img{

    border-radius:30px;

    box-shadow:

    0 40px 80px rgba(15,23,42,.12);

}

/*=========================================================
AI SECTION
=========================================================*/

.aiSection{

    padding:150px 0;

}

.aiContainer{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.aiIllustration img{

    border-radius:30px;

    box-shadow:

    0 35px 80px rgba(15,23,42,.10);

}

.aiContent span{

    display:inline-block;

    padding:10px 20px;

    background:rgba(37,99,235,.10);

    color:#2563EB;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.aiContent h2{

    font-size:54px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.aiContent p{

    color:#64748B;

    font-size:19px;

    margin-bottom:35px;

}

.aiFeatures{

    display:grid;

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

    gap:20px;

}

.aiItem{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px;

    border-radius:18px;

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

    backdrop-filter:blur(16px);

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

    box-shadow:var(--shadow);

    font-weight:600;

}

.aiItem i{

    color:#2563EB;

    font-size:22px;

}

/*=========================================================
SECURITY
=========================================================*/

.security{

    padding:150px 0;

}

.securityGrid{

    display:grid;

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

    gap:30px;

}

.securityCard{

    text-align:center;

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

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:35px;

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

    box-shadow:var(--shadow);

    transition:.35s;

}

.securityCard:hover{

    transform:translateY(-12px);

}

.securityCard img{

    width:120px;

    margin:auto;

    margin-bottom:25px;

}

.securityCard h3{

    font-size:22px;

    font-weight:700;

    color:#0F172A;

}

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

.platform,
.productShowcase,
.aiSection,
.security{

    position:relative;

}

.platform::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#60A5FA;

    opacity:.05;

    filter:blur(100px);

    right:-200px;

    top:100px;

    border-radius:50%;

}

.aiSection::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#2563EB;

    opacity:.05;

    filter:blur(120px);

    left:-200px;

    bottom:0;

    border-radius:50%;

}

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

.ctaSection{

    padding:140px 0;

}

.ctaCard{

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

    border-radius:36px;

    padding:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    color:#fff;

    overflow:hidden;

    position:relative;

    box-shadow:
    0 35px 80px rgba(37,99,235,.28);

}

.ctaCard::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

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

    right:-150px;

    top:-150px;

}

.ctaContent{

    position:relative;

    z-index:2;

    max-width:700px;

}

.ctaContent span{

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    opacity:.9;

}

.ctaContent h2{

    font-size:56px;

    margin:18px 0 25px;

    line-height:1.15;

}

.ctaContent p{

    font-size:19px;

    opacity:.9;

}

.ctaButtons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;

}

.ctaButtons .primaryButton{

    background:#fff;

    color:#2563EB;

}

.ctaButtons .secondaryButton{

    background:transparent;

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

    color:#fff;

}

.ctaButtons .secondaryButton:hover{

    background:#fff;

    color:#2563EB;

}

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

.aboutSection{

    padding:150px 0;

}

.aboutContainer{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.aboutLeft span{

    display:inline-block;

    padding:10px 20px;

    border-radius:30px;

    background:rgba(37,99,235,.08);

    color:#2563EB;

    font-weight:700;

    margin-bottom:20px;

}

.aboutLeft h2{

    font-size:54px;

    line-height:1.2;

    margin-bottom:25px;

}

.aboutLeft p{

    font-size:18px;

    color:#64748B;

    margin-bottom:22px;

}

.aboutRight img{

    border-radius:28px;

    box-shadow:
    0 30px 70px rgba(15,23,42,.12);

}

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

.contactSection{

    padding:150px 0;

}

.contactWrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

}

.contactInfo{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.contactItem{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    padding:28px;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.contactIcon{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#60A5FA);

    color:#fff;

    font-size:24px;

}

.contactItem h3{

    margin-bottom:8px;

}

.contactItem p{

    color:#64748B;

}

.contactForm{

    background:#fff;

    padding:45px;

    border-radius:28px;

    box-shadow:var(--shadow);

}

.inputGroup{

    margin-bottom:24px;

}

.inputGroup input,

.inputGroup textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #D9E2EC;

    border-radius:14px;

    outline:none;

    font-size:16px;

    font-family:inherit;

    transition:.3s;

}

.inputGroup input:focus,

.inputGroup textarea:focus{

    border-color:#2563EB;

    box-shadow:
    0 0 0 4px rgba(37,99,235,.12);

}

textarea{

    resize:vertical;

    min-height:170px;

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

footer{

    background:#0F172A;

    color:#E2E8F0;

    padding:90px 0 25px;

}

.footerContainer{

    display:grid;

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

    gap:60px;

}

.footerLogo{

    font-size:34px;

    font-weight:800;

    color:#FFFFFF;

    margin-bottom:18px;

}

.footerBrand p{

    color:#94A3B8;

    max-width:360px;

    line-height:1.9;

}

.footerColumn h3{

    color:#FFFFFF;

    margin-bottom:22px;

    font-size:20px;

}

.footerColumn ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footerColumn a{

    color:#94A3B8;

    transition:.3s;

}

.footerColumn a:hover{

    color:#FFFFFF;

}

.socialIcons{

    display:flex;

    gap:14px;

}

.socialIcons a{

    width:46px;

    height:46px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

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

    color:#FFFFFF;

    transition:.3s;

}

.socialIcons a:hover{

    background:#2563EB;

    transform:translateY(-4px);

}

.copyright{

    margin-top:60px;

    padding-top:25px;

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

    text-align:center;

    color:#94A3B8;

    font-size:15px;

}

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

.fadeUp{

    opacity:0;

    transform:translateY(40px);

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

}

.fadeUp.show{

    opacity:1;

    transform:translateY(0);

}

.fadeLeft{

    opacity:0;

    transform:translateX(-40px);

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

}

.fadeLeft.show{

    opacity:1;

    transform:none;

}

.fadeRight{

    opacity:0;

    transform:translateX(40px);

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

}

.fadeRight.show{

    opacity:1;

    transform:none;

}

/*=========================================================
HOVER IMPROVEMENTS
=========================================================*/

.featureCard,
.industryCard,
.securityCard,
.contactItem,
.statCard{

    transition:
    transform .35s,
    box-shadow .35s;

}

.featureCard:hover,
.industryCard:hover,
.securityCard:hover,
.contactItem:hover,
.statCard:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(15,23,42,.12);

}

.primaryButton,
.secondaryButton{

    transition:
    transform .25s,
    box-shadow .25s,
    background .25s,
    color .25s;

}

.primaryButton:hover{

    box-shadow:
    0 18px 40px rgba(37,99,235,.30);

}

img{

    user-select:none;

}

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

input,
textarea,
button,
a{

    outline:none;

}

button{

    cursor:pointer;

    border:none;

}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible{

    outline:3px solid rgba(37,99,235,.30);

    outline-offset:3px;

}

/*=========================================================
RESPONSIVE - LARGE TABLETS
=========================================================*/

@media (max-width:1200px){

.heroContainer,
.showcaseContainer,
.aiContainer,
.aboutContainer{

    grid-template-columns:1fr;

    gap:60px;

}

.platformGrid{

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

}

.industryGrid{

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

}

.securityGrid{

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

}

.contactWrapper{

    grid-template-columns:1fr;

}

.footerContainer{

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

}

}

/*=========================================================
RESPONSIVE - TABLETS
=========================================================*/

@media (max-width:992px){

nav{

    display:none;

}

.heroLeft h1{

    font-size:54px;

}

.sectionHeading h2,
.showcaseLeft h2,
.aiContent h2,
.aboutLeft h2,
.ctaContent h2{

    font-size:42px;

}

.heroStats{

    flex-direction:column;

}

.platformGrid{

    grid-template-columns:1fr;

}

.trustGrid{

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

}

.ctaCard{

    flex-direction:column;

    align-items:flex-start;

    padding:60px;

}

}

/*=========================================================
RESPONSIVE - MOBILE
=========================================================*/

@media (max-width:768px){

section{

    padding:90px 0;

}

.header .container{

    height:72px;

}

.headerButtons{

    display:none;

}

.hero{

    padding-top:130px;

}

.heroLeft h1{

    font-size:42px;

}

.heroLeft p{

    font-size:17px;

}

.heroButtons{

    flex-direction:column;

}

.heroButtons a{

    width:100%;

    text-align:center;

}

.heroStats{

    gap:16px;

}

.sectionHeading h2{

    font-size:34px;

}

.sectionHeading p{

    font-size:16px;

}

.industryGrid,
.securityGrid,
.aiFeatures{

    grid-template-columns:1fr;

}

.footerContainer{

    grid-template-columns:1fr;

    gap:40px;

}

.contactForm{

    padding:28px;

}

.ctaCard{

    padding:40px 30px;

}

.ctaContent h2{

    font-size:34px;

}

.showcaseLeft h2,
.aiContent h2,
.aboutLeft h2{

    font-size:34px;

}

}

/*=========================================================
RESPONSIVE - SMALL MOBILE
=========================================================*/

@media (max-width:480px){

.container{

    width:92%;

}

.heroLeft h1{

    font-size:34px;

}

.primaryButton,
.secondaryButton{

    width:100%;

    text-align:center;

    padding:15px 18px;

}

.heroBadge{

    font-size:13px;

    padding:10px 18px;

}

.sectionHeading h2{

    font-size:30px;

}

.footerLogo{

    font-size:28px;

}

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EEF2F7;

}

::-webkit-scrollbar-thumb{

    background:#94A3B8;

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#2563EB;

}
.header.scrolled{

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

    backdrop-filter:blur(24px);

}

nav a.active{

    color:#2563EB;

}

.primaryButton,
.secondaryButton{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    width:20px;

    height:20px;

    border-radius:50%;

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

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

    animation:ripple .6s linear;

}

@keyframes ripple{

    from{

        width:0;

        height:0;

        opacity:1;

    }

    to{

        width:400px;

        height:400px;

        opacity:0;

    }

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

.backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.3s;

    box-shadow:0 15px 35px rgba(37,99,235,.35);

    z-index:999;

}

.backToTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.backToTop:hover{

    transform:translateY(-5px);

}

/*=========================================================
TOAST
=========================================================*/

.toast{

    position:fixed;

    top:30px;

    right:30px;

    display:flex;

    align-items:center;

    gap:18px;

    min-width:340px;

    background:#FFFFFF;

    padding:20px;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(15,23,42,.18);

    transform:translateX(450px);

    transition:.45s;

    z-index:99999;

}

.toast.show{

    transform:translateX(0);

}

.toastIcon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.toastContent h4{

    margin-bottom:5px;

}

.toastContent p{

    color:#64748B;

}

.inputError{

    border-color:#EF4444 !important;

}

.primaryButton{

    overflow:hidden;

}

.primaryButton::before{

    content:"";

    position:absolute;

    width:0;

    height:0;

    border-radius:50%;

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

    left:var(--x);

    top:var(--y);

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

    transition:.6s;

}

.primaryButton:hover::before{

    width:420px;

    height:420px;

}

.industryCard img,
.securityCard img{

    transition:transform .4s ease;

}
/*=========================================================
SCROLL PROGRESS
=========================================================*/

.scrollProgress{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:linear-gradient(
        90deg,
        #2563EB,
        #38BDF8
    );

    z-index:999999;

}

/*=========================================================
PAGE LOAD
=========================================================*/

body{

    opacity:0;

    transition:opacity .5s ease;

}

body.pageLoaded{

    opacity:1;

}

/*=========================================================
MOBILE MENU
=========================================================*/

.mobileToggle{

    display:none;

    font-size:26px;

    cursor:pointer;

}

@media(max-width:992px){

.mobileToggle{

    display:block;

}

nav{

    position:fixed;

    top:82px;

    left:-100%;

    width:300px;

    height:calc(100vh - 82px);

    background:#fff;

    padding:40px;

    transition:.4s;

    box-shadow:0 25px 60px rgba(15,23,42,.15);

}

nav.mobileOpen{

    left:0;

}

nav ul{

    flex-direction:column;

    gap:30px;

}

}