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

:root{

    --primary:#2563eb;
    --secondary:#1d4ed8;
    --light:#f8fbff;
    --dark:#0f172a;
    --text:#475569;
    --border:#e2e8f0;
    --white:#ffffff;
    --shadow:0 15px 40px rgba(15,23,42,.08);
    --radius:20px;
    --navy:#0b1f3a;
    --navy-deep:#081527;
    --amber:#ffa100;
}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#ffffff;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

section{

    padding:90px 0;

}

.container{

    max-width:1280px;
margin:auto;
}

/*==========================================
Buttons
==========================================*/

.btn{

    border-radius:14px;
    font-weight:600;
    padding:14px 34px;
    transition:.35s;
    font-size: 18px;
}

.btn-primary{

    background:linear-gradient(135deg,#2563eb,#4f8dfd);
    border:none;

}

.btn-primary:hover{

    transform:translateY(-3px);
    box-shadow:0 20px 35px rgba(37,99,235,.25);

}

.btn-outline-primary{

    border:2px solid #2563eb;
    color:#2563eb;

}

.btn-outline-primary:hover{

    background:#2563eb;
    color:#fff;
    transform:translateY(-3px);

}

/*==========================================
Navbar
==========================================*/

.navbar{

    background:#fff;
    padding:18px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.navbar-brand{

    font-size:34px;
    font-weight:800;
    color:#2563eb!important;

}

.nav-link{

    color:#475569!important;
    font-weight:600;
    margin:0 10px;
    transition:.3s;

}

.nav-link:hover{

    color:#2563eb!important;

}

.dropdown-menu{

    border:none;
    border-radius:18px;
    box-shadow:var(--shadow);

}

/*==========================================
Hero
==========================================*/

.hero-section{

    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);

}

.hero-section::before{

    content:"";
    position:absolute;
    width:520px;
    height:520px;
    background:#dbeafe;
    border-radius:50%;
    right:-180px;
    top:-180px;
    filter:blur(50px);
    opacity:.6;

}

.hero-section::after{

    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#bfdbfe;
    border-radius:50%;
    left:-180px;
    bottom:-220px;
    filter:blur(80px);
    opacity:.45;

}

.hero-tag{

    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#eff6ff;
    color:#2563eb;
    font-weight:700;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;

}

.hero-section h1{

    font-size:60px;
    line-height:1.1;
    font-weight:800;
    margin-top:25px;

}

.hero-section p{

    color:#64748b;
    font-size:16px;
    max-width:520px;

}

.hero-feature {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #edf2f7;
    padding: 9px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .04);
    font-size: 14px;
}

.hero-feature i{

    color:#2563eb;
    font-size:20px;

}

/*==========================================
Dashboard
==========================================*/

/*==========================================
Hero Image
==========================================*/

.hero-image{
    position:relative;
    z-index:2;
}

.hero-image img{

    width:100%;
    max-width:900px;
    border-radius:24px;
    box-shadow:0 30px 70px rgba(37,99,235,.18);
    transition:.4s ease;

}

.hero-image img:hover{

    transform:translateY(-10px) scale(1.02);

}

/* Floating Cards */

.hero-image::before{

    content:"99.9% Uptime";
    position:absolute;

    top:40px;
    left:-30px;

    background:#fff;

    padding:14px 20px;

    border-radius:14px;

    font-weight:700;

    color:#2563eb;

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

}

.hero-image::after{

    content:"100K+ Employees";
    position:absolute;

    bottom:40px;
    right:-25px;

    background:#2563eb;

    color:#fff;

    padding:14px 20px;

    border-radius:14px;

    font-weight:700;

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

}

/* .dashboard-wrapper{

    background:#fff;
    border-radius:28px;
    overflow:hidden;
    display:flex;
    box-shadow:0 25px 60px rgba(37,99,235,.15);
    min-height:650px;

}

.dashboard-sidebar{

    width:230px;
    background:#0f172a;
    color:#fff;
    padding:35px 25px;

}

.dashboard-sidebar h6{

    font-size:22px;
    margin-bottom:35px;

}

.dashboard-sidebar ul{

    list-style:none;
    padding:0;

}

.dashboard-sidebar li{

    padding:14px 18px;
    margin-bottom:8px;
    border-radius:12px;
    transition:.3s;
    cursor:pointer;
    color:#cbd5e1;

}

.dashboard-sidebar li.active{

    background:#2563eb;
    color:#fff;

}

.dashboard-sidebar li:hover{

    background:#1e293b;
    color:#fff;

}

.dashboard-content{

    flex:1;
    background:#f8fafc;
    padding:35px;

}

.dashboard-top{

    display:flex;
    justify-content:space-between;
    margin-bottom:30px;

}

.dashboard-top input{

    border-radius:14px;
    height:55px;
    border:none;
    box-shadow:0 10px 20px rgba(0,0,0,.05);

} */

/*==========================================
Cards
==========================================*/

.stat-card{

    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card small{

    color:#64748b;
    font-weight:600;

}

.stat-card h3{

    font-size:34px;
    margin-top:12px;
    color:#2563eb;
    font-weight:800;

}

.chart-box{

    background:#fff;
    border-radius:22px;
    min-height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#64748b;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

/*==========================================
Phone Mockup
==========================================*/

.mobile-preview{

    position:absolute;
    right:-40px;
    bottom:-20px;

}

.phone{

    width:230px;
    background:#fff;
    border-radius:34px;
    padding:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    border:10px solid #0f172a;

}

.phone-header{

    text-align:center;
    font-weight:700;
    margin-bottom:20px;

}

.phone-card{

    background:#eff6ff;
    border-radius:16px;
    padding:16px;
    margin-bottom:15px;

}

.phone-card h4{

    margin-top:8px;
    color:#2563eb;
    font-weight:800;

}

/*==========================================
SECTION TITLE
==========================================*/

.section-badge{

    display:inline-block;
    background:#eff6ff;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    padding:10px 22px;
    border-radius:50px;
    text-transform:uppercase;

}

.section-badge.badge-light{

    background:rgba(255,255,255,.15);
    color:#fff;

}

.features-section{

    background:#ffffff;

}

.features-section h2{

    font-size:46px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:15px;

}

.features-section p{

    color:var(--text);
    font-size:17px;

}

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

.stats-section{

    background:#f8fbff;

}

.stats-card {
    background: #fff;
    border-radius: 22px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .06);
    transition: .35s;
    height: 100%;
}

.stats-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.stats-icon{
    width:50px;
    height:50px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#2563eb,#4f8dfd);
    color:#fff;
    font-size:28px;
    flex-shrink:0;
}

.stats-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:0px;
    color:var(--dark);
}

.stats-card p{
    margin:0;
    color:#64748b;
    font-size:13px;
}

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

.feature-card{

    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    height:100%;
    transition:.35s;
    position:relative;
    overflow:hidden;

}

.feature-card::before{

    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#eff6ff;
    border-radius:50%;
    top:-120px;
    right:-120px;
    transition:.4s;

}

.feature-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(37,99,235,.12);
    border-color:#dbeafe;

}

.feature-card:hover::before{

    transform:scale(1.3);

}

.feature-icon{

    width:72px;
    height:72px;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:25px;
    position:relative;
    z-index:2;

}

.feature-card h4{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    position:relative;
    z-index:2;

}

.feature-card p{

    color:#64748b;
    margin-bottom:25px;
    line-height:1.8;
    position:relative;
    z-index:2;

}

.feature-card a{

    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-weight:700;
    transition:.3s;
    position:relative;
    z-index:2;

}

.feature-card a:hover{

    gap:15px;

}

.feature-card i{

    transition:.3s;

}

/*==========================================
FEATURE HOVER COLORS
==========================================*/

.feature-card:hover .feature-icon{

    transform:rotate(6deg) scale(1.08);
    transition:.35s;

}

.feature-card:nth-child(1) .feature-icon{

    background:#fef3c7;

}

.feature-card:nth-child(2) .feature-icon{

    background:#dbeafe;

}

.feature-card:nth-child(3) .feature-icon{

    background:#dcfce7;

}

.feature-card:nth-child(4) .feature-icon{

    background:#cffafe;

}

.feature-card:nth-child(5) .feature-icon{

    background:#fee2e2;

}

.feature-card:nth-child(6) .feature-icon{

    background:#ede9fe;

}

.feature-card:nth-child(7) .feature-icon{

    background:#dbeafe;

}

.feature-card:nth-child(8) .feature-icon{

    background:#dcfce7;

}

.feature-card:nth-child(9) .feature-icon{

    background:#fef3c7;

}

/*==========================================
TEXT ALIGNMENTS
==========================================*/

.text-center h2{

    font-size:48px;
    font-weight:800;

}

.text-center p{

    max-width:700px;
    margin:auto;

}

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

.stats-section{

    padding:80px 0;

}

.features-section{

    padding:100px 0;

}

.features-section .row{

    margin-top:50px;

}
/*==========================================
CALL TO ACTION SECTION
==========================================*/

.cta-section{

    padding:100px 0;
    background:#ffffff;

}

.cta-wrapper{

    background:linear-gradient(135deg,#2563eb 0%,#3b82f6 45%,#60a5fa 100%);
    border-radius:35px;
    padding:70px;
    position:relative;
    overflow:hidden;
    /* box-shadow:0 30px 70px rgba(37,99,235,.25); */

}

.cta-wrapper::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    right:-100px;

}

.cta-wrapper::after{

    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-80px;
    left:-80px;

}

.cta-wrapper h2{

    font-size:52px;
    font-weight:800;
    line-height:1.2;

}

.cta-wrapper p{

    font-size:18px;
    max-width:620px;

}

.cta-wrapper .btn{

    min-width:180px;

}

.cta-wrapper .btn-light{

    background:#fff;
    color:var(--primary);
    border:none;

}

.cta-wrapper .btn-light:hover{

    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.cta-wrapper .btn-outline-light{

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

}

.cta-wrapper .btn-outline-light:hover{

    background:#fff;
    color:var(--primary);

}

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

.cta-circle{

    width:260px;
    height:260px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.2);

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

    color:#fff;

}

.cta-circle i{

    font-size:70px;

}

.cta-circle h3{

    margin-top:18px;
    font-size:48px;
    font-weight:800;

}

.cta-circle p{

    color:#fff;
    margin-top:8px;
    font-size:18px;

}

/*==========================================
CLIENTS
==========================================*/

.clients-section{

    background:#f8fbff;
    padding:90px 0;

}

/* .client-box{

    background:#fff;
    height:120px;

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

    border-radius:22px;

    font-size:22px;
    font-weight:700;
    color:#64748b;

    border:1px solid #edf2f7;

    transition:.35s;

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

}

.client-box:hover{

    transform:translateY(-8px);

    color:var(--primary);

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

} */
 /*==========================================
CLIENTS GRID — CARD REDESIGN
==========================================*/
.client-box{
    background:#fff;
    border-radius:20px;
    border:1px solid #edf2f7;
    padding:24px 24px;
    text-align:center;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 26px rgba(15,23,42,.05);
    transition:.35s;
}

/* thin accent bar that slides in on hover */
.client-box::before{
    content:"";
    position:absolute;
    top:0;left:0;right:0;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#ffa100);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.client-box:hover{
    transform:translateY(-8px);
    border-color:#dbeafe;
    box-shadow:0 22px 45px rgba(37,99,235,.14);
}

.client-box:hover::before{
    transform:scaleX(1);
}

/* logo badge — keeps every logo the same footprint regardless of its own size/ratio */
.client-box img{
    width:72px;
    height:72px;
    object-fit:contain;
    background:#f8fbff;
    border:1px solid #eef2f8;
    border-radius:50%;
    padding:14px;
    transition:.35s;
}

.client-box:hover img{
    transform:scale(1.08);
    border-color:#dbeafe;
    background:#eff6ff;
}

.client-box h5{
    margin:0;
    font-size:16px;
    font-weight:700;
    color:#0f172a;
    letter-spacing:.2px;
}

@media(max-width:576px){
    .client-box{padding:26px 16px;}
    .client-box img{width:60px;height:60px;padding:12px;}
    .client-box h5{font-size:14.5px;}
}

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

.testimonial-section{

    padding:100px 0;

    background:#f8fafc;

}

.testimonial-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    height:100%;

    border:1px solid #edf2f7;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    background:#dbeafe;

    border-radius:50%;

    top:-70px;
    right:-70px;

    opacity:.6;

}

.testimonial-card:hover{

    transform:translateY(-10px);

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

}

.testimonial-card p{

    color:#64748b;

    font-size:16px;

    line-height:1.9;

    margin-bottom:20px;

}

.testimonial-card .text-warning{

    font-size:22px;
    letter-spacing:2px;

}

.avatar{

    width:60px;
    height:60px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#60a5fa);

    color:#fff;

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

    font-weight:700;
    font-size:20px;

}

.testimonial-card h6{

    font-size:18px;
    font-weight:700;

}

.testimonial-card small{

    color:#64748b;

}

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

.testimonial-card:hover .avatar{

    transform:scale(1.08);

    transition:.35s;

}

.client-box,
.testimonial-card,
.cta-circle,
.cta-wrapper{

    transition:all .35s ease;

}
/*==========================================
FAQ SECTION
==========================================*/

.faq-section{

    background:#ffffff;
    padding:100px 0;

}

.faq-section .accordion{

    max-width:900px;
    margin:auto;

}

.accordion-item{

    border:none;
    border-radius:20px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);

}

.accordion-button{

    background:#fff;
    font-size:18px;
    font-weight:700;
    color:var(--dark);
    padding:22px 28px;
    border:none;
    box-shadow:none;

}

.accordion-button:not(.collapsed){

    background:#eff6ff;
    color:var(--primary);

}

.accordion-button:focus{

    box-shadow:none;
    border:none;

}

.accordion-body{

    padding:25px 28px;
    font-size:16px;
    line-height:1.8;
    color:#64748b;
    background:#fff;

}

.accordion-button::after{

    transition:.35s;

}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
    /* footer */
    .footer-2 {
      background: #062241;
      width: 100%;
      display: block;
      float: left;
    }

    .footer-2 .footer-about-top {
      background: #0a1828;
    }

    .footer-content {
      display: block;
      overflow: hidden;
    }

    .footer-about-top {
      position: relative;
      background: #0a1828;
      padding: 60px 30px;
      padding-bottom: 80px;
      margin-bottom: -190px;
    }

    .footer-content {
      display: block;
      overflow: hidden;
    }

    .footer-head p {
      color: #ddd;
    }

    .footer-contacts p span {
      color: #ffa100;
      font-weight: 700;
    }

    .footer-head h4 {
      color: #ddd;
      font-size: 18px;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: 700;
    }

    .footer-services-link ul.footer-list {
      width: 50%;
      float: left;
    }

    .footer-list li:first-child a {
      padding-top: 0;
    }

    .footer-list li a {
      color: #ddd;
      padding: 4px 0 4px 20px;
      padding-top: 4px;
      display: block;
      position: relative;
      font-weight: 500;
    }

    .footer-list li a::after {
      position: absolute;
      content: "\e876";
      right: auto;
      top: 4px;
      font-family: corpoter;
      font-size: 11px;
      left: 0;
    }

    .footer-icons {
      margin-top: 30px;
      display: inline-block;
      padding-bottom: 50px;
    }

    .footer-icons h5 {
      color: #ddd;
    }

    .footer-icons ul li {
      display: inline-block;
    }

    .footer-icons ul li a {
      color: #ddd;
      display: block;
      font-size: 20px;
      line-height: 38px;
      text-align: center;
      margin-right: 5px;
      width: 40px;
      height: 40px;
      border: 1px solid #ddd;
      border-radius: 50%;
    }

    .suscribe-input input {
      background: 0 0;
      border: medium none;
      color: #ddd;
      font-size: 15px;
      line-height: 24px;
      padding: 11px 15px;
      height: 42px;
      border-radius: 0;
      width: 100%;
      border: 1px solid #777;
    }

    .suscribe-input button {
      background: #ffa100;
      border: 1px solid #ffa100;
      color: #fff;
      font-size: 16px;
      padding: 8px 20px;
      border-radius: 3px;
      transition: .4s;
      margin-top: 15px;
      text-transform: capitalize;
      font-weight: 700;
    }

    .footer-2 .footer-area-bottom {
      background: #0a1828;
    }

    .footer-area-bottom {
      background: #0a1828;
      padding: 25px 0;
    }

    .copyright>p {
      margin-bottom: 0;
      color: #ddd;
    }

    ul.footer-list li {
      list-style: none;
    }
/*==========================================
FOOTER
==========================================*/

/* .footer{

    background:#0f172a;
    color:#fff;
    position:relative;
    overflow:hidden;

}

.footer::before{

    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    top:-180px;
    right:-120px;

}

.footer::after{

    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    bottom:-120px;
    left:-100px;

}

.footer h3{

    font-size:34px;
    font-weight:800;
    color:#fff;

}

.footer h5{

    color:#fff;
    margin-bottom:25px;
    font-weight:700;

}

.footer p{

    color:#cbd5e1;
    line-height:1.8;

} */

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

/* .footer-links{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:#cbd5e1;
    transition:.3s;

}

.footer-links a:hover{

    color:#fff;
    padding-left:8px;

} */

/*==========================================
NEWSLETTER
==========================================*/

/* .footer .input-group{

    background:#1e293b;
    border-radius:14px;
    overflow:hidden;
    padding:5px;

}

.footer .form-control{

    background:transparent;
    border:none;
    color:#fff;
    height:55px;

}

.footer .form-control::placeholder{

    color:#94a3b8;

}

.footer .form-control:focus{

    background:transparent;
    color:#fff;
    box-shadow:none;

}

.footer .btn-primary{

    border-radius:10px;
    padding:12px 24px;

} */

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

/* .social-links{

    display:flex;
    gap:15px;

}

.social-links a{

    width:46px;
    height:46px;

    border-radius:50%;

    background:#1e293b;

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

    color:#fff;
    font-size:18px;

    transition:.35s;

}

.social-links a:hover{

    background:var(--primary);
    transform:translateY(-5px);

} */

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

/* .footer hr{

    border-color:rgba(255,255,255,.1);

}

.footer .text-center{

    color:#94a3b8;
    font-size:15px;

} */

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

.shadow-soft{

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

}

.rounded-xl{

    border-radius:24px;

}

.rounded-xxl{

    border-radius:32px;

}

.bg-light-blue{

    background:#eff6ff;

}

.text-primary{

    color:var(--primary)!important;

}

.text-muted{

    color:#64748b!important;

}
/*==========================================
ANIMATIONS
==========================================*/

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes floating{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes pulseGlow{
    0%{
        box-shadow:0 0 0 rgba(37,99,235,.15);
    }
    50%{
        box-shadow:0 20px 50px rgba(37,99,235,.25);
    }
    100%{
        box-shadow:0 0 0 rgba(37,99,235,.15);
    }
}

/*==========================================
DEFAULT ANIMATIONS
==========================================*/

.hero-section h1{
    animation:fadeLeft .8s ease;
}

.hero-section p{
    animation:fadeLeft 1s ease;
}

.hero-tag{
    animation:fadeLeft .6s ease;
}

.hero-feature{
    animation:fadeUp .8s ease;
}

.dashboard-wrapper{
    animation:fadeRight 1s ease;
}

.mobile-preview{
    animation:floating 5s ease-in-out infinite;
}

.feature-card{
    animation:fadeUp .6s ease;
}

.stats-card{
    animation:fadeUp .6s ease;
}

.testimonial-card{
    animation:fadeUp .6s ease;
}

.cta-circle{
    animation:pulseGlow 4s infinite;
}

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

.btn,
.stats-card,
.feature-card,
.client-box,
.testimonial-card,
.phone-card,
.chart-box,
.stat-card{
    transition:all .35s ease;
}

.chart-box:hover{

    transform:translateY(-8px);

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

}

.phone-card:hover{

    background:#dbeafe;

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#2563eb;
    border-radius:50px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

/*==========================================
LARGE DESKTOP
==========================================*/

@media(max-width:1400px){

.hero-section h1{

    font-size:56px;

}

.dashboard-wrapper{

    min-height:600px;

}

.mobile-preview{

    right:-20px;

}

}

/*==========================================
LAPTOP
==========================================*/

@media(max-width:1200px){

.hero-section h1{

    font-size:48px;

}

.dashboard-sidebar{

    width:190px;

}

.dashboard-content{

    padding:25px;

}

.cta-wrapper{

    padding:50px;

}

.cta-wrapper h2{

    font-size:42px;

}

}

/*==========================================
TABLET
==========================================*/

@media(max-width:992px){

section{

    padding:70px 0;

}

.navbar{

    padding:14px 0;

}

.navbar-collapse{

    margin-top:20px;

}

.navbar-nav{

    margin-bottom:20px;

}

.hero-section{

    text-align:center;

}

.hero-section p{

    margin:auto;

}

.hero-feature{

    justify-content:center;

}

.hero-section .d-flex{

    justify-content:center;

}

.dashboard-wrapper{

    flex-direction:column;

}

.dashboard-sidebar{

    width:100%;

}

.dashboard-sidebar ul{

    display:flex;
    gap:12px;
    overflow-x:auto;
    white-space:nowrap;
    padding-bottom:8px;

}

.dashboard-sidebar li{

    margin-bottom:0;

}

.mobile-preview{

    position:relative;
    right:auto;
    bottom:auto;
    margin-top:35px;
    display:flex;
    justify-content:center;

}

.phone{

    width:260px;

}

.cta-wrapper{

    text-align:center;

}

.cta-wrapper h2{

    font-size:38px;

}

.cta-circle{

    margin-top:40px;

}

.footer{

    text-align:center;

}

.social-links{

    justify-content:center;

}

.footer .input-group{

    max-width:500px;
    margin:auto;

}

}

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

@media(max-width:768px){

.hero-section h1{

    font-size:38px;

}

.display-3{

    font-size:38px!important;

}

.dashboard-wrapper{

    border-radius:18px;

}

.dashboard-content{

    padding:18px;

}

.chart-box{

    min-height:180px;

}

.stats-card{

    padding:20px;

}

.stats-card h4{

    font-size:28px;

}

.feature-card{

    padding:28px;

}

.feature-card h4{

    font-size:22px;

}

.features-section h2,
.text-center h2{

    font-size:34px;

}

.cta-wrapper{

    border-radius:24px;
    padding:35px;

}

.cta-wrapper h2{

    font-size:32px;

}

.cta-circle{

    width:210px;
    height:210px;

}

.cta-circle h3{

    font-size:36px;

}

.client-box{

    height:90px;
    font-size:18px;

}

.testimonial-card{

    padding:25px;

}

.footer h3{

    font-size:28px;

}

}

/*==========================================
SMALL MOBILE
==========================================*/

@media(max-width:576px){

.container{

    padding-left:18px;
    padding-right:18px;

}

.hero-tag{

    font-size:12px;

}

.hero-section h1{

    font-size:32px;

}

.hero-feature{

    width:100%;
    justify-content:center;

}

.btn{

    width:100%;

}

.hero-section .btn{

    margin-bottom:12px;

}

.dashboard-sidebar{

    padding:20px;

}

.dashboard-top input{

    height:48px;

}

.stat-card{

    padding:18px;

}

.stat-card h3{

    font-size:28px;

}

.chart-box{

    min-height:160px;
    font-size:14px;

}

.phone{

    width:220px;

}

.phone-card{

    padding:14px;

}

.cta-wrapper{

    padding:25px;

}

.cta-wrapper h2{

    font-size:28px;

}

.cta-wrapper p{

    font-size:15px;

}

.cta-circle{

    width:180px;
    height:180px;

}

.cta-circle i{

    font-size:48px;

}

.cta-circle h3{

    font-size:30px;

}

.section-badge{

    font-size:11px;

}

.footer{

    padding-top:60px;

}

.footer .input-group{

    flex-direction:column;
    gap:10px;
    background:none;
    padding:0;

}

.footer .form-control{

    background:#1e293b;
    border-radius:10px !important;

}

.footer .btn{

    width:100%;

}

.social-links{

    flex-wrap:wrap;

}

}

/*==========================================
END OF FILE
==========================================*/
/* .cta-network {
    background-image: url(../img/audit.jpg) !important;
    background-size: cover !important;
    position: relative !important;
}
.cta-network::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
} */
.section-badge{
    display:inline-block;background:#eff6ff;color:var(--primary);
    font-size:13px;font-weight:700;letter-spacing:1px;
    padding:10px 22px;border-radius:50px;text-transform:uppercase;
}
.section-head{text-align:center;margin-bottom:56px;}
.section-head h2{font-size:40px;font-weight:800;margin:16px 0 10px;}
.section-head p{color:var(--text);font-size:16px;max-width:560px;margin:auto;}
 
/*==========================================
PROCESS FLOW — HORIZONTAL
==========================================*/
.process-section{background:var(--light);}
 
.process-track{
    display:flex;
    align-items:stretch;
    gap:0;
}
 
.process-step{
    flex:1;
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:18px;
    padding:26px 18px;
    text-align:center;
    box-shadow:0 10px 26px rgba(15,23,42,.05);
    transition:.3s;
}
 
.process-step:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.12);
    border-color:#dbeafe;
}
 
.process-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin:0 auto 16px;
}
 
.process-step:nth-child(1) .process-icon{background:#ede9fe;color:#7c3aed;}
.process-step:nth-child(3) .process-icon{background:#dbeafe;color:var(--primary);}
.process-step:nth-child(5) .process-icon{background:#dcfce7;color:#16a34a;}
.process-step:nth-child(7) .process-icon{background:#fef3c7;color:var(--amber);}
.process-step:nth-child(9) .process-icon{background:#ede9fe;color:#7c3aed;}
.process-step:nth-child(11) .process-icon{background:#cffafe;color:#0891b2;}
 
.process-step h5{
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
}
 
.process-step p{
    font-size:12.5px;
    color:var(--text);
    line-height:1.55;
    margin:0;
}
 
/* dotted connector with arrow, sitting between steps */
.process-connector{
    flex:0 0 34px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    top:-52px;
}
 
.process-connector svg{
    width:34px;
    height:14px;
}
 
.process-connector line{
    stroke:#94b4f0;
    stroke-width:2;
    stroke-dasharray:3 4;
}
 
.process-connector path{
    fill:#94b4f0;
}
 
@media(max-width:992px){
    .process-track{flex-wrap:wrap;row-gap:20px;}
    .process-step{flex:1 1 30%;min-width:150px;}
    .process-connector{display:none;}
}
@media(max-width:576px){
    .process-step{flex:1 1 100%;}
}

/*==========================================
PRICING SECTION
==========================================*/
.pricing-section{background:#fff;}

.pricing-card{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:22px;
    padding:34px 28px;
    height:100%;
    display:flex;
    flex-direction:column;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    position:relative;
    transition:.35s;
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(37,99,235,.12);
    border-color:#dbeafe;
}

.pricing-card.featured{
    border:2px solid var(--primary);
    box-shadow:0 24px 55px rgba(37,99,235,.18);
    transform:translateY(-10px);
}

.pricing-card.featured:hover{
    transform:translateY(-16px);
}

.pricing-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,var(--primary),#4f8dfd);
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
    padding:7px 18px;
    border-radius:40px;
    box-shadow:0 10px 22px rgba(37,99,235,.35);
}

.pricing-card h4{
    font-size:19px;
    font-weight:700;
    margin-bottom:4px;
}

.pricing-card .plan-desc{
    color:var(--text);
    font-size:13.5px;
    margin-bottom:22px;
}

.pricing-card .price{
    font-size:34px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:4px;
}

.pricing-card .price span{
    font-size:14px;
    font-weight:600;
    color:var(--text);
}

.pricing-card .price.custom{
    font-size:24px;
}

.pricing-divider{
    height:1px;
    background:var(--border);
    margin:20px 0 22px;
}

.pricing-features{
    list-style:none;
    padding:0;
    margin:0 0 28px;
    flex:1;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.pricing-features li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    color:#334155;
    font-weight:500;
}

.pricing-features i{
    color:var(--primary);
    font-size:14px;
    margin-top:2px;
    flex-shrink:0;
}

.pricing-card.featured .pricing-features i{
    color:#16a34a;
}

.pricing-card .btn{
    border-radius:12px;
    font-weight:600;
    padding:12px 24px;
    font-size:15px;
}

@media(max-width:576px){
    .pricing-card.featured{transform:none;}
    .pricing-card.featured:hover{transform:translateY(-8px);}
}

/*==========================================
CTA SECTION — RESPONSIVE FIXES
==========================================*/

@media(max-width:1100px){
    .cta-copy{
        padding:56px 40px;
    }
    .cta-copy h2{
        font-size:36px;
    }
}

@media(max-width:900px){
    .cta-wrapper{
        border-radius:22px;
    }
    .cta-copy{
        padding:44px 28px 8px;
    }
    .cta-copy h2{
        font-size:32px;
    }
    .cta-copy > p{
        font-size:15px;
    }
    .cta-btns{
        width:100%;
    }

    .cta-network{
        min-height:0;
        padding:36px 24px 44px;
    }
    .network-card{
        max-width:300px;
    }
}

@media(max-width:576px){
    .cta-copy{
        padding:36px 20px 6px;
    }
    .cta-copy h2{
        font-size:26px;
        letter-spacing:-.3px;
    }
    .cta-eyebrow{
        font-size:11px;
        padding:7px 13px;
    }
    .cta-checklist li{
        font-size:13.5px;
        text-align:left;
    }
    .cta-btns{
        flex-direction:column;
        gap:10px;
    }
    .cta-btns .btn{
        width:100%;
        text-align:center;
        padding:13px 20px;
    }
    .network-card{
        max-width:260px;
    }
    .network-stats{
        flex-wrap:wrap;
        gap:10px;
    }
    .network-stats .chip{
        flex:1 1 calc(50% - 10px);
        padding:12px;
    }
    .chip strong{
        font-size:19px;
    }
}
@media(max-width:380px){
    .cta-copy h2{
        font-size:23px;
    }
    .network-stats .chip{
        flex:1 1 100%;
    }
}