/*==================================================
        ADEPTATECH
        Premium Software Company
====================================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/*====================================
            VARIABLES
====================================*/

:root{

    --primary:#2563EB;
    --secondary:#38BDF8;
    --accent:#06B6D4;

    --dark:#020817;
    --dark2:#07152D;
    --card:#0F172A;

    --white:#FFFFFF;

    --text:#CBD5E1;

    --border:rgba(255,255,255,.08);

    --shadow:0 20px 50px rgba(0,0,0,.30);

    --radius:20px;

    --transition:.35s ease;

}

/*====================================
            RESET
====================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

/*====================================
        COMMON
====================================*/

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

section{

    padding:120px 0;

    position:relative;

}

.container{

    max-width:1320px;

}

/*====================================
        SCROLLBAR
====================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07152d;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--primary),
        var(--secondary)
    );

    border-radius:50px;

}

/*====================================
        TYPOGRAPHY
====================================*/

h1,h2,h3,h4,h5,h6{

    font-weight:700;

    color:#fff;

}

h1{

    font-size:72px;

}

h2{

    font-size:48px;

}

h3{

    font-size:30px;

}

p{

    color:var(--text);

    font-size:18px;

    line-height:32px;

}

/*====================================
      TEXT GRADIENT
====================================*/

.text-gradient{

    background:linear-gradient(
        90deg,
        #38BDF8,
        #60A5FA,
        #2563EB
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*====================================
        SECTION TITLE
====================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    margin-bottom:18px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

.section-subtitle{

    display:inline-block;

    background:rgba(37,99,235,.12);

    color:#38BDF8;

    padding:10px 24px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

/*====================================
            BUTTONS
====================================*/

.btn{

    padding:15px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    border:none;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(37,99,235,.35);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.25);

}

.btn-outline-light:hover{

    background:#fff;

    color:#07152d;

}

/*====================================
            NAVBAR
====================================*/

.navbar{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:9999;

    background:rgba(7,21,45,.75);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

    padding:18px 0;

    transition:.35s;

}

.navbar.scrolled{

    background:#07152d;

    padding:12px 0;

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-weight:700;

    font-size:24px;

}

.navbar-brand img{

    height:55px;

}

.nav-link{

    color:#fff !important;

    margin:0 12px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#38BDF8;

    transition:.3s;

}

.nav-link:hover{

    color:#38BDF8 !important;

}

.nav-link:hover::after{

    width:100%;

}

.demo-btn{

    background:linear-gradient(
        135deg,
        #2563EB,
        #38BDF8
    );

    color:#fff;

    padding:13px 28px;

    border-radius:50px;

    font-weight:600;

}

.demo-btn:hover{

    color:#fff;

    transform:translateY(-3px);

}

/*====================================
        GLASS CARD
====================================*/

.glass{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    box-shadow:var(--shadow);

}

/*====================================
        UTILITIES
====================================*/

.mt-100{

    margin-top:100px;

}

.mb-100{

    margin-bottom:100px;

}

.py-120{

    padding:120px 0;

}

.rounded-xl{

    border-radius:25px;

}

.shadow-lg{

    box-shadow:var(--shadow);

}

/*==================================================
                HERO SECTION
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:160px 0 100px;

    background:
        radial-gradient(circle at top left, rgba(37,99,235,.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(56,189,248,.18), transparent 40%),
        linear-gradient(135deg,#020817,#07152d,#0d2f66);

}

/* Grid Background */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:.5;

}

/* Blue Glow */

.hero::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:#2563eb;

    filter:blur(220px);

    opacity:.15;

    right:-220px;

    top:-220px;

}

/* Particles */

#particles-js{

    position:absolute;

    width:100%;

    height:100%;

    top:0;

    left:0;

    z-index:1;

}

.hero .container{

    position:relative;

    z-index:5;

}

/* Badge */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    border-radius:50px;

    margin-bottom:25px;

    color:#fff;

    font-weight:600;

    font-size:15px;

}

/* Heading */

.hero h1{

    font-size:68px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

    max-width:700px;

}

.hero h1 span{

    background:linear-gradient(90deg,#38BDF8,#60A5FA,#2563EB);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* Paragraph */

.hero p{

    font-size:20px;

    line-height:36px;

    max-width:650px;

    margin-bottom:40px;

    color:#dbeafe;

}

/* Buttons */

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:45px;

}

/* Stats */

.hero-stats{

    display:flex;

    gap:60px;

}

.hero-stats div{

    text-align:left;

}

.hero-stats h3{

    font-size:42px;

    color:#38BDF8;

    margin-bottom:5px;

}

.hero-stats span{

    color:#CBD5E1;

}

/* Image */

.hero-image-wrapper{

    position:relative;

}

.hero-image{

    max-width:700px;

    margin:auto;

    animation:heroFloat 5s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(37,99,235,.25));

}

/* Floating Cards */

.floating-card{

    position:absolute;

    padding:18px 24px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    color:#fff;

    font-weight:600;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.floating-card i{

    color:#38BDF8;

    margin-right:10px;

    font-size:20px;

}

.card1{

    top:50px;

    right:10px;

}

.card2{

    left:-20px;

    bottom:80px;

}

.card3{

    right:-20px;

    top:240px;

}

/* Scroll Down */

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:5;

}

.mouse{

    width:34px;

    height:56px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:30px;

    display:flex;

    justify-content:center;

    padding-top:10px;

}

.mouse span{

    width:5px;

    height:10px;

    background:#38BDF8;

    border-radius:50px;

    animation:scroll 2s infinite;

}

/* Wave */

.hero-wave{

    position:absolute;

    bottom:-2px;

    left:0;

    width:100%;

    line-height:0;

}

.hero-wave svg{

    width:100%;

    height:110px;

}

.hero-wave path{

    fill:#07152d;

}

/* Animations */

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes scroll{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    100%{

        transform:translateY(18px);

        opacity:0;

    }

}

/* Responsive */

@media(max-width:992px){

.hero{

    text-align:center;

    padding:150px 0 90px;

}

.hero h1{

    font-size:48px;

}

.hero p{

    margin:auto auto 35px;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    justify-content:center;

    margin-bottom:40px;

}

.hero-image{

    margin-top:50px;

    max-width:500px;

}

.floating-card{

    display:none;

}

}

@media(max-width:768px){

.hero h1{

    font-size:38px;

}

.hero p{

    font-size:17px;

    line-height:30px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons .btn{

    width:100%;

}

.hero-stats{

    gap:30px;

}

.hero-stats h3{

    font-size:30px;

}

.hero-wave svg{

    height:60px;

}

}

/*==================================================
        PART 3
        TRUSTED + ABOUT + WHY CHOOSE US
==================================================*/

/*==============================
      TRUSTED TECHNOLOGIES
===============================*/

.trusted{

    background:#06111f;

    padding:80px 0;

    position:relative;

}

.trusted::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#2563eb;

    filter:blur(220px);

    opacity:.08;

    left:-180px;

    top:-150px;

}

.trusted h6{

    text-align:center;

    color:#94a3b8;

    font-size:15px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:45px;

}

.tech-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.tech-card:hover{

    transform:translateY(-10px);

    border-color:#38BDF8;

    box-shadow:0 20px 45px rgba(37,99,235,.25);

}

.tech-card img{

    width:60px;

    height:60px;

    object-fit:contain;

    margin:auto;

    margin-bottom:15px;

}

.tech-card h5{

    margin:0;

    font-size:18px;

    font-weight:600;

}

/*==============================
            ABOUT
===============================*/

.about{

    background:linear-gradient(180deg,#07152d,#08111f);

    overflow:hidden;

}

.about::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#38bdf8;

    filter:blur(220px);

    opacity:.08;

    right:-200px;

    top:120px;

}

.about-image{

    position:relative;

}

.about-image img{

    max-width:550px;

    margin:auto;

    animation:heroFloat 5s ease-in-out infinite;

}

.about h2{

    font-size:52px;

    margin-bottom:25px;

    font-weight:800;

}

.about p{

    color:#CBD5E1;

    line-height:34px;

    margin-bottom:35px;

}

/* About Feature List */

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.about-list li{

    display:flex;

    align-items:center;

    color:#fff;

    font-weight:500;

}

.about-list i{

    color:#38BDF8;

    margin-right:10px;

    font-size:20px;

}

/*==============================
        ABOUT BOXES
===============================*/

.about-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:22px;

    padding:30px;

    transition:.35s;

    height:100%;

}

.about-box:hover{

    transform:translateY(-8px);

    border-color:#38BDF8;

    box-shadow:0 20px 40px rgba(37,99,235,.22);

}

.about-box i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:linear-gradient(135deg,#2563eb,#38bdf8);

    font-size:30px;

    color:#fff;

    margin-bottom:20px;

}

.about-box h5{

    font-size:22px;

    margin-bottom:10px;

}

.about-box p{

    margin:0;

    font-size:15px;

    line-height:28px;

}

/*==============================
        WHY CHOOSE US
===============================*/

.why-us{

    background:#061325;

    position:relative;

    overflow:hidden;

}

.why-us::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:#2563eb;

    filter:blur(250px);

    opacity:.08;

    right:-220px;

    bottom:-200px;

}

.feature-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    backdrop-filter:blur(20px);

    padding:40px 35px;

    transition:.35s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:#2563eb;

    filter:blur(100px);

    opacity:0;

    top:-120px;

    right:-120px;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:#38BDF8;

    box-shadow:0 20px 45px rgba(37,99,235,.25);

}

.feature-card:hover::before{

    opacity:.18;

}

.feature-icon{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:linear-gradient(135deg,#2563eb,#38bdf8);

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.feature-card h4{

    font-size:24px;

    margin-bottom:15px;

}

.feature-card p{

    margin:0;

    color:#CBD5E1;

    line-height:30px;

}

/*==============================
        RESPONSIVE
===============================*/

@media(max-width:992px){

.about{

    text-align:center;

}

.about-image{

    margin-bottom:50px;

}

.about-list{

    grid-template-columns:1fr;

    text-align:left;

}

.tech-card{

    margin-bottom:20px;

}

}

@media(max-width:768px){

.about h2{

    font-size:38px;

}

.feature-card{

    padding:30px;

}

.about-box{

    margin-bottom:20px;

}

}

/*==================================================
        PART 4
        STATISTICS + PRODUCTS + SERVICES
==================================================*/

/*====================================
        STATISTICS
====================================*/

.statistics{

    background:linear-gradient(180deg,#08111f,#07152d);

    position:relative;

    overflow:hidden;

}

.statistics::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:#38BDF8;

    filter:blur(220px);

    opacity:.08;

    left:-250px;

    bottom:-250px;

}

.stats-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.stats-card:hover{

    transform:translateY(-12px);

    border-color:#38BDF8;

    box-shadow:0 25px 50px rgba(37,99,235,.25);

}

.stats-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563eb,#38bdf8);

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.stats-card h2{

    font-size:50px;

    color:#38BDF8;

    margin-bottom:8px;

}

.stats-card h5{

    font-size:20px;

    margin:0;

}

/*====================================
            PRODUCTS
====================================*/

.products{

    background:#07152d;

    position:relative;

    overflow:hidden;

}

.products::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:#2563EB;

    filter:blur(220px);

    opacity:.08;

    top:-250px;

    right:-250px;

}

.product-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px 35px;

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-12px);

    border-color:#38BDF8;

    box-shadow:0 25px 50px rgba(37,99,235,.25);

}

.product-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:#2563EB;

    border-radius:50%;

    filter:blur(110px);

    opacity:0;

    top:-120px;

    right:-120px;

    transition:.35s;

}

.product-card:hover::before{

    opacity:.18;

}

.product-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    background:linear-gradient(135deg,#2563eb,#38bdf8);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.product-card h3{

    margin-bottom:18px;

    font-size:26px;

}

.product-card p{

    margin-bottom:25px;

}

.product-features{

    margin-bottom:30px;

}

.product-features li{

    display:flex;

    align-items:center;

    color:#dbeafe;

    margin-bottom:12px;

}

.product-features i{

    color:#38BDF8;

    margin-right:10px;

}

.btn-gradient{

    display:inline-block;

    padding:14px 30px;

    border-radius:50px;

    background:linear-gradient(135deg,#2563eb,#38bdf8);

    color:#fff;

    font-weight:600;

}

.btn-gradient:hover{

    color:#fff;

    transform:translateY(-3px);

}

/*====================================
            SERVICES
====================================*/

.services{

    background:#08111f;

    position:relative;

}

.service-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px 30px;

    transition:.35s;

    text-align:center;

    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#38BDF8;

    box-shadow:0 25px 45px rgba(37,99,235,.25);

}

.service-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:22px;

    background:linear-gradient(135deg,#2563eb,#38bdf8);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    color:#fff;

}

.service-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.service-card p{

    margin-bottom:25px;

}

.service-link{

    color:#38BDF8;

    font-weight:600;

}

.service-link:hover{

    color:#fff;

}

/*====================================
        COMMON HOVER
====================================*/

.product-card,
.service-card,
.stats-card{

    cursor:pointer;

}

.product-card:hover .product-icon,
.service-card:hover .service-icon,
.stats-card:hover .stats-icon{

    transform:rotate(-8deg) scale(1.08);

    transition:.35s;

}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:992px){

.stats-card,
.product-card,
.service-card{

    margin-bottom:25px;

}

}

@media(max-width:768px){

.stats-card{

    padding:35px 20px;

}

.product-card{

    padding:30px;

}

.service-card{

    padding:30px;

}

.stats-card h2{

    font-size:38px;

}

.product-card h3,

.service-card h3{

    font-size:22px;

}

}

/*==================================================
        PART 5
        PROCESS • TESTIMONIALS • CTA
        CONTACT • FOOTER • RESPONSIVE
==================================================*/

/*==================================
        DEVELOPMENT PROCESS
===================================*/

.process{

    background:#07152d;

}

.process-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

    position:relative;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:#38BDF8;

}

.process-number{

    width:65px;

    height:65px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

    color:#fff;

}

.process-card h4{

    margin-bottom:15px;

}

/*==================================
        TECHNOLOGIES
===================================*/

.technologies{

    background:#08111f;

}

.tech-box{

    background:rgba(255,255,255,.05);

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    padding:35px;

    text-align:center;

    transition:.35s;

}

.tech-box:hover{

    transform:translateY(-8px);

    border-color:#38BDF8;

}

.tech-box img{

    width:65px;

    height:65px;

    object-fit:contain;

    margin:auto;

    margin-bottom:15px;

}

/*==================================
        TESTIMONIALS
===================================*/

.testimonials{

    background:#07152d;

}

.testimonial-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card img{

    width:80px;

    height:80px;

    border-radius:50%;

    margin-bottom:20px;

}

.testimonial-card h5{

    margin-bottom:5px;

}

.testimonial-card span{

    color:#38BDF8;

    font-size:14px;

}

.testimonial-card p{

    margin-top:20px;

}

/*==================================
            CTA
===================================*/

.cta{

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    border-radius:30px;

    padding:80px 50px;

    text-align:center;

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta p{

    color:#fff;

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

}

.cta .btn{

    background:#fff;

    color:#2563EB;

    font-weight:700;

}

/*==================================================
                CONTACT SECTION
==================================================*/

.contact{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    radial-gradient(circle at top right,rgba(37,99,235,.18),transparent 35%),
    radial-gradient(circle at bottom left,rgba(56,189,248,.18),transparent 35%),
    linear-gradient(180deg,#08111f,#0b1325);

}

/* Decorative Background */

.contact::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:#2563EB;

    filter:blur(180px);

    opacity:.12;

    top:-220px;

    right:-180px;

}

.contact::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    border-radius:50%;

    background:#38BDF8;

    filter:blur(160px);

    opacity:.10;

    bottom:-180px;

    left:-150px;

}

.contact .container{

    position:relative;

    z-index:2;

}

/*==============================
        SECTION TITLE
==============================*/

.contact .section-title{

    text-align:center;

    margin-bottom:70px;

}

.contact .section-subtitle{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(37,99,235,.15);

    color:#38BDF8;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}

.contact .section-title h2{

    font-size:54px;

    font-weight:800;

    color:#fff;

    margin-bottom:20px;

}

.contact .section-title p{

    color:#94A3B8;

    max-width:700px;

    margin:auto;

    font-size:18px;

    line-height:32px;

}

/*==============================
        CONTACT INFO
==============================*/

.contact-info{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:45px;

    height:100%;

    transition:.4s;

}

.contact-info:hover{

    transform:translateY(-10px);

    border-color:#38BDF8;

    box-shadow:

    0 25px 70px rgba(37,99,235,.30);

}

/* Animated Glow */

.contact-info::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:radial-gradient(#38BDF8,transparent 70%);

    top:-100px;

    right:-80px;

    opacity:.18;

    animation:contactGlow 8s infinite ease-in-out;

}

@keyframes contactGlow{

0%{

transform:translateY(0);

}

50%{

transform:translateY(30px);

}

100%{

transform:translateY(0);

}

}

.contact-info h4{

    font-size:34px;

    font-weight:700;

    color:#fff;

    margin-bottom:40px;

}

/* Contact Rows */

.contact-info p{

    display:flex;

    align-items:center;

    margin-bottom:28px;

    color:#E5E7EB;

    font-size:18px;

    position:relative;

    z-index:2;

}

/* Icon */

.contact-info i{

    width:58px;

    height:58px;

    min-width:58px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-right:18px;

    background:#0F172A;

    color:#38BDF8;

    font-size:22px;

    transition:.35s;

}

.contact-info p:hover i{

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    transform:rotate(-8deg) scale(1.15);

    box-shadow:

    0 0 25px rgba(56,189,248,.4);

}

/*==============================
        CONTACT FORM
==============================*/

.contact-form{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:45px;

    transition:.35s;

}

.contact-form:hover{

    border-color:#38BDF8;

}

.contact-form::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.05),

    transparent

    );

    transition:1.2s;

}

.contact-form:hover::before{

    left:100%;

}

/* Inputs */

.contact-form .form-control{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    height:60px;

    border-radius:14px;

    padding:15px 22px;

    margin-bottom:22px;

    transition:.35s;

    font-size:16px;

}

.contact-form textarea.form-control{

    min-height:190px;

    resize:none;

    padding-top:18px;

}

.contact-form .form-control::placeholder{

    color:#94A3B8;

}

.contact-form .form-control:focus{

    background:#111827;

    color:#fff;

    border-color:#38BDF8;

    box-shadow:

    0 0 0 4px rgba(56,189,248,.12);

}

/* Button */

.contact-form .btn{

    position:relative;

    overflow:hidden;

    width:100%;

    height:60px;

    border:none;

    border-radius:14px;

    background:

    linear-gradient(

    135deg,

    #2563EB,

    #38BDF8

    );

    font-size:18px;

    font-weight:600;

    color:#fff;

    transition:.35s;

}

.contact-form .btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.35),

    transparent

    );

    transition:.7s;

}

.contact-form .btn:hover::before{

    left:100%;

}

.contact-form .btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 20px 45px rgba(37,99,235,.35);

}

/*==============================
        FLOATING DOTS
==============================*/

.contact-shape{

    position:absolute;

    border-radius:50%;

    background:#38BDF8;

    opacity:.15;

    animation:floating 8s infinite ease-in-out;

}

.shape1{

    width:18px;

    height:18px;

    top:160px;

    left:8%;

}

.shape2{

    width:28px;

    height:28px;

    right:12%;

    bottom:120px;

    animation-delay:2s;

}

.shape3{

    width:12px;

    height:12px;

    top:55%;

    left:48%;

    animation-delay:4s;

}

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-35px);

}

100%{

transform:translateY(0);

}

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px){

.contact{

padding:90px 0;

}

.contact-info{

margin-bottom:35px;

}

.contact .section-title h2{

font-size:40px;

}

}

@media(max-width:768px){

.contact{

padding:70px 0;

}

.contact .section-title h2{

font-size:32px;

}

.contact-info,

.contact-form{

padding:30px;

}

.contact-info h4{

font-size:28px;

}

.contact-info p{

font-size:16px;

}

.contact-info i{

width:50px;

height:50px;

min-width:50px;

font-size:18px;

}

.contact-form .btn{

height:56px;

}

}
/*==================================
            FOOTER
===================================*/

.footer{

    background:#020817;

    padding:80px 0 25px;

}

.footer-logo{

    height:60px;

    margin-bottom:20px;

}

.footer h5{

    margin-bottom:20px;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#CBD5E1;

}

.footer ul li a:hover{

    color:#38BDF8;

    padding-left:5px;

}

.social-icons{

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#102447;

    color:#fff;

    margin-right:10px;

    transition:.35s;

}

.social-icons a:hover{

    background:#2563EB;

    transform:translateY(-5px);

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0 25px;

}

.copyright{

    text-align:center;

    color:#94A3B8;

}

/*==================================
        SCROLL TOP
===================================*/

#scrollTop{
    position: fixed;
    right: 25px;
    bottom: 100px;   /* Above WhatsApp */

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #2563eb;
    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 999;
}

#scrollTop.show{
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover{

    background:#38BDF8;

}

/*==================================
        RESPONSIVE
===================================*/

@media(max-width:992px){

section{

padding:90px 0;

}

h1{

font-size:48px;

}

h2{

font-size:38px;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

margin-top:30px;

}

.about-image{

margin-bottom:40px;

}

.cta{

padding:60px 30px;

}

}

@media(max-width:768px){

section{

padding:70px 0;

}

h1{

font-size:36px;

}

h2{

font-size:30px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.hero-stats{

flex-direction:column;

gap:20px;

text-align:center;

}

.cta h2{

font-size:32px;

}

.cta{

padding:50px 25px;

}

.contact-form,

.contact-info{

padding:25px;

}

.footer{

text-align:center;

}

.social-icons{

justify-content:center;

display:flex;

}

}

@media(max-width:576px){

.navbar-brand span{

display:none;

}

.hero{

padding-top:130px;

}

.process-card,

.product-card,

.service-card,

.feature-card,

.stats-card,

.testimonial-card{

padding:25px;

}

}

/*=====================================================
                PRODUCTS SECTION
======================================================*/

.products-section{
    padding:110px 0;
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

.products-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#2563EB;
    opacity:.05;
    border-radius:50%;
    filter:blur(140px);
    top:-180px;
    right:-150px;
}

.products-section::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:#38BDF8;
    opacity:.05;
    border-radius:50%;
    filter:blur(140px);
    bottom:-180px;
    left:-120px;
}

.products-section .container{
    position:relative;
    z-index:2;
}


/*=====================================================
                    SECTION TITLE
======================================================*/

.products-section .section-title{
    margin-bottom:70px;
}

.products-section .section-title h2{
    font-size:46px;
    font-weight:800;
    color:#0F172A;
    margin-top:15px;
}

.products-section .section-title p{
    max-width:720px;
    margin:auto;
    color:#64748B;
    font-size:18px;
    line-height:1.8;
}


/*=====================================================
                    PRODUCT CARD
======================================================*/

.product-card{

    background:#ffffff;

    border-radius:24px;

    padding:30px;

    border:1px solid #E5E7EB;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.35s;

}


/* gradient strip */

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563EB,#38BDF8);

}


/*=====================================================
                    TOP AREA
======================================================*/

.product-top{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:25px;

}

.product-top h4{

    font-size:28px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:10px;

}

.product-top p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}


/*=====================================================
                PRODUCT ICON
======================================================*/

.product-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.product-icon i{

    font-size:32px;

}


/*=====================================================
                FEATURE LIST
======================================================*/

.product-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;

    margin:30px 0;

    padding:0;

    list-style:none;

}

.product-features li{

    display:flex;

    align-items:center;

    color:#334155;

    font-size:15px;

    font-weight:500;

}

.product-features i{

    color:#2563EB;

    margin-right:10px;

    font-size:16px;

}


/*=====================================================
                PRODUCT IMAGE
======================================================*/

.product-image{

    margin-top:25px;

    border-radius:18px;

    overflow:hidden;

    background:#F1F5F9;

    padding:12px;

}

.product-image img{

    width:100%;

    border-radius:14px;

    display:block;

}


/*=====================================================
                PRODUCT FOOTER
======================================================*/

.product-footer{

    margin-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.product-footer .btn{

    border-radius:12px;

    padding:12px 26px;

    font-weight:600;

}

.learn-more{

    color:#2563EB;

    text-decoration:none;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:8px;

}

.learn-more i{

    font-size:14px;

}

/*=====================================================
            PRODUCT CARD HOVER EFFECTS
======================================================*/

.product-card{

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}

.product-card:hover{

    transform:translateY(-12px);

    border-color:#2563EB;

    box-shadow:
        0 25px 60px rgba(37,99,235,.18);

}


/* Top Gradient Animation */

.product-card::before{

    transition:.4s;

}

.product-card:hover::before{

    height:7px;

    background:linear-gradient(90deg,#2563EB,#38BDF8,#2563EB);

}


/*=====================================================
                    ICON
======================================================*/

.product-icon{

    transition:.4s;

}

.product-card:hover .product-icon{

    transform:
        rotate(-8deg)
        scale(1.08);

}


/* Floating icon */

.product-icon i{

    transition:.35s;

}

.product-card:hover .product-icon i{

    transform:scale(1.15);

}


/*=====================================================
                IMAGE EFFECT
======================================================*/

.product-image{

    overflow:hidden;

}

.product-image img{

    transition:
        transform .6s ease,
        filter .4s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

    filter:brightness(1.02);

}


/*=====================================================
            TITLE ANIMATION
======================================================*/

.product-top h4{

    transition:.35s;

}

.product-card:hover h4{

    color:#2563EB;

}


/*=====================================================
            FEATURE ANIMATION
======================================================*/

.product-features li{

    transition:.3s;

}

.product-card:hover .product-features li{

    transform:translateX(4px);

}

.product-features li:hover{

    color:#2563EB;

}

.product-features li:hover i{

    transform:scale(1.2);

}

.product-features i{

    transition:.3s;

}


/*=====================================================
                LEARN MORE
======================================================*/

.learn-more{

    transition:.3s;

}

.learn-more i{

    transition:.3s;

}

.product-card:hover .learn-more{

    color:#0EA5E9;

}

.product-card:hover .learn-more i{

    transform:translateX(6px);

}


/*=====================================================
                BUTTON
======================================================*/

.product-footer .btn{

    transition:.35s;

}

.product-footer .btn:hover{

    transform:translateY(-3px);

    box-shadow:

        0 12px 25px rgba(37,99,235,.25);

}


/*=====================================================
            GLOW BACKGROUND
======================================================*/

.product-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:#38BDF8;

    opacity:0;

    border-radius:50%;

    filter:blur(90px);

    top:-60px;

    right:-60px;

    transition:.5s;

    z-index:0;

}

.product-card:hover::after{

    opacity:.08;

}


/* Keep content above glow */

.product-card>*{

    position:relative;

    z-index:2;

}


/*=====================================================
            IMAGE FLOATING
======================================================*/

@keyframes productFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

.product-card:hover .product-image{

    animation:productFloat 3s ease-in-out infinite;

}


/*=====================================================
            ICON SHADOW
======================================================*/

.product-card:hover .product-icon{

    box-shadow:

        0 15px 30px rgba(37,99,235,.18);

}


/*=====================================================
            CARD SHINE EFFECT
======================================================*/

.product-card{

    position:relative;

}

.product-card .shine{

    display:none;

}

.product-card::selection{

    background:#2563EB;

    color:#fff;

}

/*=====================================================
                PRODUCT COLORS
======================================================*/

/* Blue */
.product-icon.primary{
    background:linear-gradient(135deg,#2563EB,#3B82F6);
    color:#fff;
}

/* Green */
.product-icon.success{
    background:linear-gradient(135deg,#10B981,#34D399);
    color:#fff;
}

/* Orange */
.product-icon.warning{
    background:linear-gradient(135deg,#F59E0B,#FBBF24);
    color:#fff;
}

/* Cyan */
.product-icon.info{
    background:linear-gradient(135deg,#06B6D4,#38BDF8);
    color:#fff;
}

/* Red */
.product-icon.danger{
    background:linear-gradient(135deg,#EF4444,#F87171);
    color:#fff;
}

/* Purple */
.product-icon.purple{
    background:linear-gradient(135deg,#7C3AED,#A855F7);
    color:#fff;
}

/* Emerald */
.product-icon.green{
    background:linear-gradient(135deg,#059669,#10B981);
    color:#fff;
}

/* Orange */
.product-icon.orange{
    background:linear-gradient(135deg,#EA580C,#FB923C);
    color:#fff;
}


/*=====================================================
                FEATURE TAGS
======================================================*/

.product-features li{

    background:#F8FAFC;

    border:1px solid #E2E8F0;

    border-radius:10px;

    padding:10px 14px;

    transition:.3s;

}

.product-card:hover .product-features li{

    background:#EFF6FF;

    border-color:#BFDBFE;

}


/*=====================================================
                IMAGE BOX
======================================================*/

.product-image{

    border:1px solid #E5E7EB;

    box-shadow:

        0 10px 25px rgba(0,0,0,.05);

}


/*=====================================================
                BUTTON
======================================================*/

.product-footer{

    border-top:1px solid #E5E7EB;

    padding-top:25px;

}

.product-footer .btn{

    border-radius:10px;

    padding:11px 24px;

    font-size:15px;

}


/*=====================================================
            LEARN MORE
======================================================*/

.learn-more{

    font-size:15px;

    font-weight:700;

}

.learn-more:hover{

    color:#2563EB;

}


/*=====================================================
            PRODUCT GRID GAP
======================================================*/

.products-section .row{

    row-gap:35px;

}


/*=====================================================
            RESPONSIVE
======================================================*/

@media(max-width:1200px){

.product-top h4{

    font-size:24px;

}

}


@media(max-width:991px){

.products-section{

    padding:90px 0;

}

.product-card{

    padding:25px;

}

.product-features{

    grid-template-columns:1fr;

}

.product-footer{

    flex-direction:column;

    align-items:flex-start;

    gap:18px;

}

}


@media(max-width:767px){

.products-section{

    padding:70px 0;

}

.products-section .section-title h2{

    font-size:34px;

}

.products-section .section-title p{

    font-size:16px;

}

.product-top{

    flex-direction:column;

    text-align:center;

}

.product-top h4{

    font-size:22px;

}

.product-top p{

    font-size:15px;

}

.product-icon{

    margin:auto;

}

.product-footer{

    text-align:center;

}

.product-footer .btn{

    width:100%;

}

.learn-more{

    margin:auto;

}

}


@media(max-width:575px){

.product-card{

    padding:20px;

    border-radius:18px;

}

.product-image{

    padding:8px;

}

.product-features li{

    font-size:14px;

}

.product-footer .btn{

    font-size:14px;

}

}

/*==================================================
            SERVICES HERO SECTION
==================================================*/

.services-hero{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:160px 0 120px;

    background:
    linear-gradient(135deg,#07152d 0%,#0a2348 50%,#123b80 100%);

}

/*====================================
        Animated Background
====================================*/

.hero-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    animation:floatCircle 8s ease-in-out infinite;

}

.circle-one{

    width:420px;

    height:420px;

    background:#2563EB;

    top:-180px;

    left:-120px;

    opacity:.18;

}

.circle-two{

    width:350px;

    height:350px;

    background:#38BDF8;

    bottom:-120px;

    right:-80px;

    opacity:.15;

    animation-delay:2s;

}

.circle-three{

    width:220px;

    height:220px;

    background:#60A5FA;

    top:45%;

    left:55%;

    opacity:.08;

    animation-delay:4s;

}

@keyframes floatCircle{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-25px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================================
        Container
====================================*/

.services-hero .container{

    position:relative;

    z-index:5;

}

/*====================================
        Badge
====================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    font-weight:600;

    margin-bottom:25px;

}

.hero-badge i{

    color:#38BDF8;

}

/*====================================
        Heading
====================================*/

.services-hero h1{

    font-size:62px;

    font-weight:800;

    line-height:1.15;

    color:#fff;

    margin-bottom:25px;

}

.services-hero h1 span{

    color:#38BDF8;

}

/*====================================
        Paragraph
====================================*/

.services-hero p{

    color:#CBD5E1;

    font-size:19px;

    line-height:1.9;

    margin-bottom:40px;

    max-width:620px;

}

/*====================================
        Buttons
====================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.hero-buttons .btn-primary{

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    border:none;

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(37,99,235,.35);

}

.hero-buttons .btn-outline-light{

    border:2px solid rgba(255,255,255,.35);

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:#07152d;

}

/*====================================
        Hero Stats
====================================*/

.hero-stats{

    display:flex;

    gap:50px;

    margin-top:55px;

}

.hero-stats h3{

    font-size:36px;

    font-weight:800;

    color:#38BDF8;

    margin-bottom:6px;

}

.hero-stats span{

    color:#CBD5E1;

    font-size:15px;

}

/*====================================
        Image Wrapper
====================================*/

.hero-image-wrapper{

    position:relative;

    display:inline-block;

}

.hero-service-image{

    width:100%;

    max-width:620px;

    animation:heroFloat 5s ease-in-out infinite;

}

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
        PART 2 - FLOATING CARDS
==================================================*/

/* Hero Image Wrapper */

.hero-image-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* Main Image */

.hero-service-image{

    width:100%;

    max-width:620px;

    border-radius:24px;

    animation:heroImageFloat 6s ease-in-out infinite;

    filter:drop-shadow(0 30px 60px rgba(0,0,0,.25));

}

@keyframes heroImageFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}


/*====================================
        FLOATING BOX
====================================*/

.floating-box{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    background:rgba(96, 12, 12, 0.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border-radius:18px;

    padding:14px 22px;

    color:#fff;

    font-weight:600;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    animation:floatingCard 5s ease-in-out infinite;

    transition:.35s;

    cursor:default;

}

.floating-box:hover{

    transform:scale(1.06);

    border-color:#38BDF8;

    box-shadow:

        0 25px 50px rgba(56,189,248,.25);

}


/* Icon */

.floating-box i{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    font-size:20px;

    color:#fff;

}


/*====================================
        FLOATING POSITIONS
====================================*/

.box-1{

    top:40px;

    left:-45px;

    animation-delay:0s;

}

.box-2{

    top:55%;

    right:-55px;

    animation-delay:1.5s;

}

.box-3{

    bottom:30px;

    left:40px;

    animation-delay:3s;

}


/*====================================
        FLOAT ANIMATION
====================================*/

@keyframes floatingCard{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}


/*====================================
        GLOW EFFECT
====================================*/

.hero-image-wrapper::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,#2563eb40 0%,transparent 70%);

    z-index:-1;

    animation:rotateGlow 12s linear infinite;

}

@keyframes rotateGlow{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/*====================================
        DECORATIVE DOTS
====================================*/

.hero-dot{

    position:absolute;

    width:12px;

    height:12px;

    border-radius:50%;

    background:#38BDF8;

    opacity:.7;

    animation:dotFloat 7s ease-in-out infinite;

}

.dot1{

    top:80px;

    right:15%;

}

.dot2{

    bottom:120px;

    left:12%;

    animation-delay:2s;

}

.dot3{

    top:50%;

    right:5%;

    animation-delay:4s;

}

@keyframes dotFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-25px);

    }

    100%{

        transform:translateY(0px);

    }

}


/*====================================
        RESPONSIVE
====================================*/

@media(max-width:991px){

.hero-image-wrapper{

margin-top:60px;

}

.box-1{

left:0;

}

.box-2{

right:0;

}

.box-3{

left:20px;

}

}

@media(max-width:768px){

.floating-box{

position:relative;

margin:15px auto;

left:auto;

right:auto;

top:auto;

bottom:auto;

width:260px;

justify-content:center;

animation:none;

}

.hero-image-wrapper{

display:flex;

flex-direction:column;

}

.hero-image-wrapper::before{

display:none;

}

}

/*==================================================
                SERVICES SECTION
==================================================*/

.services-section{

    padding:120px 0;

    background:#F4F8FC;

    position:relative;

    overflow:hidden;

}

.services-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#2563EB;

    filter:blur(180px);

    opacity:.05;

    border-radius:50%;

    top:-220px;

    right:-150px;

}

.services-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#38BDF8;

    filter:blur(180px);

    opacity:.05;

    border-radius:50%;

    bottom:-180px;

    left:-150px;

}

.services-section .container{

    position:relative;

    z-index:2;

}

/*=============================*/

.services-section .section-title{

    margin-bottom:70px;

}

.services-section .section-title h2{

    font-size:52px;

    font-weight:800;

    color:#0F172A;

}

.services-section .section-title p{

    max-width:720px;

    margin:auto;

    color:#64748B;

    line-height:1.8;

    font-size:18px;

}

/*=============================
        CARD
=============================*/

.service-card{

    background:#fff;

    border-radius:22px;

    border:1px solid #E5E7EB;

    padding:30px;

    height:100%;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

    box-shadow:

    0 20px 50px rgba(37,99,235,.12);

}

/* Left Border */

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:linear-gradient(#2563EB,#38BDF8);

}

/*=============================*/

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-size:30px;

    margin-bottom:20px;

}

.service-card h4{

    font-size:26px;

    font-weight:700;

    margin-bottom:15px;

}

.service-card p{

    color:#64748B;

    margin-bottom:25px;

    line-height:1.7;

}

/*=============================
        FEATURES
=============================*/

.service-card ul{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    padding:0;

    margin:0;

    list-style:none;

}

.service-card ul li{

    background:#EFF6FF;

    color:#2563EB;

    border-radius:30px;

    padding:8px 16px;

    font-size:14px;

    font-weight:600;

    border:none;

}

.service-card ul li i{

    display:none;

}

/*=============================
        BUTTON
=============================*/

.service-btn{

    margin-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-decoration:none;

    font-weight:700;

    color:#2563EB;

    border-top:1px solid #E5E7EB;

    padding-top:20px;

}

.service-btn i{

    transition:.3s;

}

.service-btn:hover i{

    transform:translateX(8px);

}

/*=============================*/

@media(max-width:991px){

.services-section{

padding:90px 0;

}

}

@media(max-width:768px){

.services-section{

padding:70px 0;

}

.services-section .section-title h2{

font-size:38px;

}

.service-card{

padding:25px;

}

}

/*==================================================
            DEVELOPMENT PROCESS
==================================================*/

.process-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
        radial-gradient(circle at top right,rgba(37,99,235,.18),transparent 30%),
        radial-gradient(circle at bottom left,rgba(124,58,237,.18),transparent 30%),
        #07152D;

}

/* Background Glow */

.process-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:#2563EB;

    filter:blur(170px);

    opacity:.08;

    top:-220px;

    left:-180px;

}

.process-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:#7C3AED;

    filter:blur(170px);

    opacity:.08;

    bottom:-180px;

    right:-150px;

}

.process-section .container{

    position:relative;

    z-index:2;

}

/*=============================
        Section Title
=============================*/

.process-section .section-title{

    margin-bottom:80px;

}

.process-section .section-title h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:15px;

}

.process-section .section-title p{

    color:#CBD5E1;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/*=============================
        Card
=============================*/

.process-card{

    position:relative;

    overflow:visible;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    height:100%;

}

/* Top Gradient */

.process-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    border-radius:24px 24px 0 0;

    background:linear-gradient(90deg,#2563EB,#38BDF8,#7C3AED);

}

/* Connector Line */

.process-card::after{

    content:"";

    position:absolute;

    width:55px;

    height:3px;

    background:linear-gradient(90deg,#38BDF8,#2563EB);

    right:-42px;

    top:50%;

    transform:translateY(-50%);

}

.process-section .col-lg-4:nth-child(3n) .process-card::after{

    display:none;

}

/* Hover */

.process-card:hover{

    transform:translateY(-12px);

    border-color:#38BDF8;

    box-shadow:

        0 25px 60px rgba(37,99,235,.25);

}

/*=============================
        Step Number
=============================*/

.process-number{

    position:absolute;

    top:18px;

    right:18px;

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#38BDF8;

    font-size:18px;

    font-weight:700;

}

/*=============================
        Icon
=============================*/

.process-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:24px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:36px;

    transition:.35s;

    box-shadow:

        0 12px 30px rgba(37,99,235,.35);

}

.process-card:hover .process-icon{

    transform:rotate(-8deg) scale(1.1);

}

/*=============================
        Heading
=============================*/

.process-card h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

/*=============================
        Description
=============================*/

.process-card p{

    color:#CBD5E1;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/*=============================
        Responsive
=============================*/

@media(max-width:991px){

.process-section{

padding:90px 0;

}

.process-section .section-title h2{

font-size:40px;

}

.process-card{

margin-bottom:25px;

}

.process-card::after{

display:none;

}

}

@media(max-width:768px){

.process-section{

padding:70px 0;

}

.process-section .section-title h2{

font-size:34px;

}

.process-card{

padding:30px 22px;

}

.process-icon{

width:75px;

height:75px;

font-size:30px;

}

.process-card h4{

font-size:22px;

}

}

@media(max-width:576px){

.process-card{

text-align:center;

}

.process-number{

width:40px;

height:40px;

font-size:16px;

}

}
/*==================================================
                WHY CHOOSE US
==================================================*/

.why-section{

    padding:120px 0;

    background:#07152D;

    position:relative;

}

.why-image{

    max-width:520px;

    animation:whyFloat 6s ease-in-out infinite;

}

@keyframes whyFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Feature Box */

.feature-box{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:20px;

    transition:.35s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-8px);

    border-color:#2563EB;

    box-shadow:

        0 18px 35px rgba(37,99,235,.12);

}

/* Icon */

.feature-box i{

    width:60px;

    height:60px;

    border-radius:16px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    transition:.35s;

}

.feature-box:hover i{

    transform:rotate(-8deg) scale(1.08);

}

/* Text */

.feature-box span{

    font-weight:600;

    color:#0F172A;

    font-size:17px;

}

/* Responsive */

@media(max-width:991px){

.why-section{

padding:90px 0;

text-align:center;

}

.why-image{

margin-top:50px;

}

}

@media(max-width:768px){

.why-section{

padding:70px 0;

}

.feature-box{

padding:18px;

}

.feature-box span{

font-size:15px;

}

}

/*==================================================
            TECHNOLOGY STACK
==================================================*/

.technology-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
        radial-gradient(circle at top right,rgba(37,99,235,.08),transparent 35%),
        radial-gradient(circle at bottom left,rgba(56,189,248,.08),transparent 35%),
        linear-gradient(180deg,#F8FAFC,#EEF5FF);

}

/* Background Glow */

.technology-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#2563EB;

    opacity:.06;

    border-radius:50%;

    filter:blur(180px);

    top:-180px;

    right:-180px;

}

.technology-section::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#38BDF8;

    opacity:.06;

    border-radius:50%;

    filter:blur(180px);

    bottom:-180px;

    left:-180px;

}

.technology-section .container{

    position:relative;

    z-index:2;

}

/*=============================
        SECTION TITLE
=============================*/

.technology-section .section-title{

    margin-bottom:70px;

}

.technology-section .section-title h2{

    font-size:48px;

    font-weight:800;

    color:#0F172A;

    margin-bottom:15px;

}

.technology-section .section-title p{

    max-width:700px;

    margin:auto;

    color:#64748B;

    line-height:1.8;

    font-size:18px;

}

/*=============================
        TECHNOLOGY CARD
=============================*/

.tech-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.7);

    border-radius:22px;

    padding:35px 20px;

    text-align:center;

    transition:.4s;

    height:100%;

}

/* Top Border */

.tech-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#2563EB,#38BDF8,#7C3AED);

}

/* Glow */

.tech-card::after{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    background:#38BDF8;

    border-radius:50%;

    filter:blur(90px);

    opacity:0;

    top:-60px;

    right:-60px;

    transition:.4s;

}

.tech-card>*{

    position:relative;

    z-index:2;

}

.tech-card:hover{

    transform:translateY(-12px);

    border-color:#2563EB;

    box-shadow:

        0 20px 50px rgba(37,99,235,.18);

}

.tech-card:hover::after{

    opacity:.12;

}

/*=============================
        LOGO
=============================*/

.tech-card img{

    width:72px;

    height:72px;

    object-fit:contain;

    margin-bottom:22px;

    transition:.4s;

}

.tech-card:hover img{

    transform:scale(1.15) rotate(-6deg);

}

/*=============================
        NAME
=============================*/

.tech-card h5{

    margin:0;

    color:#0F172A;

    font-size:18px;

    font-weight:700;

}

/*=============================
        HOVER EFFECT
=============================*/

.tech-card:hover h5{

    color:#2563EB;

}

/*=============================
        RESPONSIVE
=============================*/

@media(max-width:991px){

.technology-section{

padding:90px 0;

}

}

@media(max-width:768px){

.technology-section{

padding:70px 0;

}

.technology-section .section-title h2{

font-size:36px;

}

.tech-card{

padding:25px 15px;

}

.tech-card img{

width:60px;

height:60px;

}

.tech-card h5{

font-size:16px;

}

}

/*==================================================
                CONTACT HERO
==================================================*/

.contact-hero{

    position:relative;

    overflow:hidden;

    padding:180px 0 120px;

    background:
        radial-gradient(circle at top right,rgba(37,99,235,.18),transparent 35%),
        radial-gradient(circle at bottom left,rgba(56,189,248,.15),transparent 35%),
        linear-gradient(135deg,#07152D,#0B1E3D 60%,#07152D);

}

/*=============================
        Background Shapes
=============================*/

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    opacity:.18;

    animation:floatGlow 8s ease-in-out infinite;

}

.shape-1{

    width:420px;

    height:420px;

    background:#2563EB;

    top:-150px;

    left:-120px;

}

.shape-2{

    width:320px;

    height:320px;

    background:#38BDF8;

    bottom:-120px;

    right:-100px;

    animation-delay:2s;

}

.shape-3{

    width:250px;

    height:250px;

    background:#7C3AED;

    top:30%;

    right:15%;

    opacity:.12;

    animation-delay:4s;

}

@keyframes floatGlow{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(30px);

}

}

/*=============================
        Hero Content
=============================*/

.contact-hero .container{

    position:relative;

    z-index:5;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:#38BDF8;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

}

.contact-hero h1{

    font-size:68px;

    font-weight:800;

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;

}

.text-gradient{

    background:linear-gradient(90deg,#38BDF8,#2563EB,#7C3AED);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-text{

    font-size:20px;

    color:#CBD5E1;

    line-height:1.9;

    margin-bottom:35px;

    max-width:620px;

}

/*=============================
        Buttons
=============================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-btn{

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    border:none;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.hero-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(37,99,235,.35);

}

.hero-buttons .btn-outline-light{

    border-radius:50px;

    padding:16px 32px;

    border:1px solid rgba(255,255,255,.25);

    transition:.35s;

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:#2563EB;

}

/*=============================
        Statistics
=============================*/

.hero-stats{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.stat-box{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:18px;

    padding:22px 28px;

    min-width:140px;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-6px);

    border-color:#38BDF8;

}

.stat-box h3{

    color:#38BDF8;

    font-size:34px;

    font-weight:800;

    margin-bottom:6px;

}

.stat-box span{

    color:#CBD5E1;

    font-size:15px;

}

/*=============================
        Hero Image
=============================*/

.hero-image{

    position:relative;

    display:inline-block;

}

.hero-contact-image{

    width:100%;

    max-width:560px;

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

/*=============================
        Floating Cards
=============================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:14px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

    padding:15px 18px;

    border-radius:18px;

    color:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.20);

    animation:floatingCard 4s ease-in-out infinite;

}

.floating-card i{

    width:48px;

    height:48px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-size:20px;

}

.floating-card strong{

    display:block;

    font-size:16px;

}

.floating-card small{

    color:#CBD5E1;

}

.card-one{

    top:8%;

    left:-40px;

}

.card-two{

    right:-40px;

    top:48%;

    animation-delay:1.5s;

}

.card-three{

    left:10%;

    bottom:0;

    animation-delay:3s;

}

@keyframes floatingCard{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

/*=============================
        Scroll Indicator
=============================*/

.scroll-down{

    text-align:center;

    margin-top:80px;

}

.scroll-down a{

    color:#38BDF8;

    font-size:32px;

    animation:scrollDown 1.5s infinite;

}

@keyframes scrollDown{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(10px);

}

}

/*=============================
        Responsive
=============================*/

@media(max-width:991px){

.contact-hero{

padding:150px 0 90px;

text-align:center;

}

.contact-hero h1{

font-size:50px;

}

.hero-text{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.card-one,

.card-two,

.card-three{

display:none;

}

}

@media(max-width:768px){

.contact-hero{

padding:130px 0 70px;

}

.contact-hero h1{

font-size:38px;

}

.hero-text{

font-size:17px;

}

.hero-btn,

.hero-buttons .btn-outline-light{

width:100%;

}

.hero-stats{

flex-direction:column;

align-items:center;

}

.stat-box{

width:220px;

}

}

/*==================================================
            CONTACT INFO
==================================================*/

.contact-info-section{

    position:relative;

    padding:90px 0;

    background:#ffffff;

}

.info-card{

    position:relative;

    overflow:hidden;

    background:#ffffff;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:35px 28px;

    height:100%;

    transition:.35s;

    text-align:center;

}

.info-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563EB,#38BDF8);

}

.info-card:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.info-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:22px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    transition:.35s;

}

.info-card:hover .info-icon{

    transform:rotate(-8deg) scale(1.08);

}

.info-card h4{

    font-size:24px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:15px;

}

.info-card p{

    color:#64748B;

    line-height:1.8;

    min-height:60px;

}

.info-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#2563EB;

    font-weight:700;

    transition:.3s;

}

.info-card a:hover{

    color:#38BDF8;

}

.info-card a i{

    transition:.3s;

}

.info-card:hover a i{

    transform:translateX(6px);

}

@media(max-width:768px){

.info-card{

padding:28px 22px;

}

}

/*==================================================
            CONTACT FORM
==================================================*/

.contact-form-section{

    padding:120px 0;

    background:#F8FAFC;

}

.contact-company h2{

    font-size:48px;

    font-weight:800;

    color:#0F172A;

    margin:20px 0;

}

.contact-company p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:35px;

}

.company-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:40px;

}

.company-item{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:17px;

    color:#334155;

}

.company-item i{

    color:#2563EB;

    font-size:22px;

}

.contact-social{

    display:flex;

    gap:15px;

}

.contact-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    transition:.35s;

    text-decoration:none;

}

.contact-social a:hover{

    transform:translateY(-6px);

    background:#38BDF8;

}

/* Card */

.contact-form-card{

    background:#fff;

    border-radius:28px;

    padding:45px;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

    border:1px solid #E5E7EB;

}

/* Labels */

.contact-form-card label{

    font-weight:600;

    color:#0F172A;

    margin-bottom:10px;

}

/* Inputs */

.contact-form-card .form-control,

.contact-form-card .form-select{

    height:56px;

    border-radius:14px;

    border:1px solid #CBD5E1;

    padding:14px 18px;

    transition:.3s;

}

.contact-form-card textarea{

    height:auto;

    min-height:180px;

    resize:none;

}

.contact-form-card .form-control:focus,

.contact-form-card .form-select:focus{

    border-color:#2563EB;

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

/* Button */

.contact-submit{

    width:100%;

    height:60px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

.contact-submit:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(37,99,235,.25);

}

@media(max-width:991px){

.contact-form-section{

padding:90px 0;

}

.contact-company{

text-align:center;

margin-bottom:40px;

}

.company-list{

align-items:center;

}

.contact-social{

justify-content:center;

}

}

@media(max-width:768px){

.contact-company h2{

font-size:36px;

}

.contact-form-card{

padding:30px;

}

}

/*==================================================
                OFFICE SECTION
==================================================*/

.office-section{

    padding:120px 0;

    background:#ffffff;

    position:relative;

}

.office-card{

    background:#fff;

    border-radius:25px;

    padding:40px;

    border:1px solid #E5E7EB;

    box-shadow:0 20px 45px rgba(15,23,42,.06);

    height:100%;

}

.office-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:35px;

}

.office-item:last-child{

    margin-bottom:40px;

}

.office-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:26px;

    flex-shrink:0;

}

.office-item h5{

    font-size:20px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:8px;

}

.office-item p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}

.office-btn{

    width:100%;

    padding:16px;

    border-radius:15px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-weight:700;

    border:none;

}

.office-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(37,99,235,.30);

}

.map-card{

    overflow:hidden;

    border-radius:25px;

    border:1px solid #E5E7EB;

    box-shadow:0 20px 45px rgba(15,23,42,.08);

    height:100%;

}

.map-card iframe{

    width:100%;

    height:600px;

    border:0;

}

/*====================================*/

@media(max-width:991px){

.office-section{

padding:90px 0;

}

.office-card{

margin-bottom:30px;

}

.map-card iframe{

height:450px;

}

}

@media(max-width:768px){

.office-section{

padding:70px 0;

}

.office-card{

padding:30px;

}

.office-item{

gap:15px;

}

.office-icon{

width:55px;

height:55px;

font-size:22px;

}

.map-card iframe{

height:350px;

}

}

/*==================================================
                    FAQ SECTION
==================================================*/

.faq-section{

    padding:120px 0;

    background:#F8FAFC;

    position:relative;

}

/* Section Heading */

.faq-section .section-title{

    text-align:center;

    margin-bottom:60px;

}

.faq-section .section-subtitle{

    display:inline-block;

    padding:10px 22px;

    background:#DBEAFE;

    color:#2563EB;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.faq-section .section-title h2{

    color:#0F172A !important;

    font-size:48px;

    font-weight:800;

    margin-bottom:18px;

    line-height:1.2;

}

.faq-section .section-title p{

    color:#64748B !important;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/* Accordion */

.faq-section .accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(15,23,42,.06);

}

.faq-section .accordion-button{

    background:#fff;

    color:#0F172A;

    font-size:18px;

    font-weight:700;

    padding:22px 30px;

    box-shadow:none;

}

.faq-section .accordion-button:not(.collapsed){

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-button::after{

    filter:brightness(0);

}

.faq-section .accordion-button:not(.collapsed)::after{

    filter:brightness(100);

}

.faq-section .accordion-body{

    background:#fff;

    color:#64748B;

    line-height:1.9;

    padding:25px 30px;

}

/* Responsive */

@media(max-width:768px){

    .faq-section{

        padding:70px 0;

    }

    .faq-section .section-title h2{

        font-size:34px;

    }

    .faq-section .section-title p{

        font-size:16px;

    }

    .faq-section .accordion-button{

        font-size:16px;

        padding:18px 22px;

    }

    .faq-section .accordion-body{

        padding:20px 22px;

    }

}

/*==================================================
                FINAL CTA
==================================================*/

.contact-cta{

    padding:100px 0;

    background:#07152D;

    position:relative;

    overflow:hidden;

}

/* Background Glow */

.contact-cta::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#2563EB;

    border-radius:50%;

    filter:blur(170px);

    opacity:.12;

    top:-180px;

    left:-180px;

}

.contact-cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#38BDF8;

    border-radius:50%;

    filter:blur(170px);

    opacity:.10;

    bottom:-180px;

    right:-120px;

}

.contact-cta .container{

    position:relative;

    z-index:2;

}

/* CTA Card */

.cta-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:30px;

    padding:60px;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

/* Badge */

.cta-badge{

    display:inline-block;

    background:rgba(56,189,248,.15);

    color:#38BDF8;

    padding:10px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

/* Title */

.cta-box h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

}

/* Text */

.cta-box p{

    color:#CBD5E1;

    font-size:18px;

    line-height:1.8;

    max-width:700px;

}

/* Buttons */

.cta-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-weight:700;

    text-decoration:none;

    margin-right:15px;

    transition:.35s;

}

.cta-btn-primary:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(37,99,235,.35);

}

.cta-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.20);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.cta-btn-outline:hover{

    background:#fff;

    color:#2563EB;

}

/* Responsive */

@media(max-width:991px){

.cta-box{

padding:45px 35px;

text-align:center;

}

.cta-box h2{

font-size:38px;

}

.cta-btn-primary,

.cta-btn-outline{

margin:10px;

}

}

@media(max-width:768px){

.contact-cta{

padding:70px 0;

}

.cta-box{

padding:35px 25px;

}

.cta-box h2{

font-size:30px;

}

.cta-box p{

font-size:16px;

}

.cta-btn-primary,

.cta-btn-outline{

width:100%;

margin:10px 0;

}

}


/*==================================================
            WHY REQUEST DEMO
==================================================*/

.demo-benefits{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:#ffffff;

}

/* Background Glow */

.demo-benefits::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#2563EB;

    opacity:.05;

    border-radius:50%;

    filter:blur(180px);

    top:-200px;

    left:-150px;

}

.demo-benefits::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    background:#38BDF8;

    opacity:.05;

    border-radius:50%;

    filter:blur(180px);

    bottom:-150px;

    right:-150px;

}

.demo-benefits .container{

    position:relative;

    z-index:2;

}

/* Section Title */

.demo-benefits .section-title{

    margin-bottom:70px;

}

.demo-benefits .section-title h2{

    font-size:48px;

    font-weight:800;

    color:#0F172A;

    margin-bottom:20px;

}

.demo-benefits .section-title p{

    max-width:720px;

    margin:auto;

    color:#64748B;

    line-height:1.9;

    font-size:18px;

}

/* Benefit Card */

.benefit-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.4s;

}

/* Top Gradient */

.benefit-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563EB,#38BDF8);

    transition:.35s;

}

/* Hover Glow */

.benefit-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:#38BDF8;

    filter:blur(80px);

    opacity:0;

    top:-60px;

    right:-60px;

    transition:.35s;

}

.benefit-card>*{

    position:relative;

    z-index:2;

}

.benefit-card:hover{

    transform:translateY(-12px);

    border-color:#2563EB;

    box-shadow:0 25px 55px rgba(37,99,235,.15);

}

.benefit-card:hover::before{

    height:8px;

}

.benefit-card:hover::after{

    opacity:.08;

}

/* Icon */

.benefit-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:22px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    transition:.35s;

}

.benefit-card:hover .benefit-icon{

    transform:rotate(-8deg) scale(1.08);

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

/* Title */

.benefit-card h4{

    color:#0F172A;

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

    transition:.3s;

}

.benefit-card:hover h4{

    color:#2563EB;

}

/* Description */

.benefit-card p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}

/* Responsive */

@media(max-width:991px){

.demo-benefits{

padding:90px 0;

}

}

@media(max-width:768px){

.demo-benefits{

padding:70px 0;

}

.demo-benefits .section-title h2{

font-size:36px;

}

.benefit-card{

padding:30px 22px;

}

.benefit-icon{

width:75px;

height:75px;

font-size:30px;

}

}

/*==================================================
                DEMO FORM SECTION
==================================================*/

.demo-form-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(180deg,#F8FAFC,#FFFFFF);

}

/* Background Glow */

.demo-form-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#2563EB;

    opacity:.05;

    border-radius:50%;

    filter:blur(180px);

    top:-200px;

    left:-150px;

}

.demo-form-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#38BDF8;

    opacity:.05;

    border-radius:50%;

    filter:blur(180px);

    bottom:-180px;

    right:-120px;

}

.demo-form-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
                LEFT CONTENT
==================================================*/

.demo-info{

    padding-right:40px;

}

.demo-info h2{

    font-size:48px;

    font-weight:800;

    color:#0F172A;

    margin:20px 0;

    line-height:1.2;

}

.demo-info p{

    font-size:18px;

    color:#64748B;

    line-height:1.9;

    margin-bottom:35px;

}

.demo-feature{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

    padding:16px 20px;

    background:#ffffff;

    border-radius:16px;

    border:1px solid #E5E7EB;

    transition:.35s;

}

.demo-feature:hover{

    transform:translateX(8px);

    border-color:#2563EB;

    box-shadow:0 12px 30px rgba(37,99,235,.08);

}

.demo-feature i{

    width:42px;

    height:42px;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-size:18px;

}

.demo-feature span{

    font-weight:600;

    color:#334155;

}

/*==================================================
                FORM BOX
==================================================*/

.demo-form-box{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:30px;

    padding:45px;

    box-shadow:

    0 30px 60px rgba(15,23,42,.08);

    position:relative;

    overflow:hidden;

}

.demo-form-box::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:#38BDF8;

    border-radius:50%;

    filter:blur(120px);

    opacity:.08;

    top:-70px;

    right:-70px;

}

/*==================================================
                INPUTS
==================================================*/

.demo-form-box .form-control,

.demo-form-box .form-select{

    height:60px;

    border-radius:15px;

    border:1px solid #E2E8F0;

    background:#F8FAFC;

    padding:15px 20px;

    margin-bottom:22px;

    font-size:16px;

    transition:.35s;

    box-shadow:none;

}

.demo-form-box textarea.form-control{

    min-height:180px;

    resize:none;

    padding-top:18px;

}

.demo-form-box .form-control:focus,

.demo-form-box .form-select:focus{

    background:#fff;

    border-color:#2563EB;

    box-shadow:

    0 0 0 5px rgba(37,99,235,.12);

}

.demo-form-box .form-control::placeholder{

    color:#94A3B8;

}

/*==================================================
                BUTTON
==================================================*/

.demo-submit{

    width:100%;

    height:62px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-size:18px;

    font-weight:700;

    transition:.35s;

    margin-top:10px;

}

.demo-submit:hover{

    transform:translateY(-4px);

    color:#fff;

    box-shadow:

    0 20px 45px rgba(37,99,235,.35);

}

/*==================================================
                INPUT ICON EFFECT
==================================================*/

.demo-form-box .form-control:hover,

.demo-form-box .form-select:hover{

    border-color:#93C5FD;

}

/*==================================================
                ANIMATION
==================================================*/

.demo-form-box{

    animation:fadeUp .9s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px){

.demo-form-section{

padding:90px 0;

}

.demo-info{

padding-right:0;

margin-bottom:40px;

}

.demo-info h2{

font-size:40px;

}

.demo-form-box{

padding:35px;

}

}

@media(max-width:768px){

.demo-form-section{

padding:70px 0;

}

.demo-info h2{

font-size:34px;

}

.demo-info p{

font-size:16px;

}

.demo-feature{

padding:14px 16px;

}

.demo-form-box{

padding:28px;

}

.demo-form-box .form-control,

.demo-form-box .form-select{

height:56px;

}

.demo-submit{

height:58px;

font-size:17px;

}

}

@media(max-width:576px){

.demo-info{

text-align:center;

}

.demo-feature{

justify-content:center;

text-align:left;

}

.demo-form-box{

padding:22px;

border-radius:22px;

}

}

/*==================================================
                DEMO PROCESS
==================================================*/

.demo-process{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:#07152D;

}

/* Background Glow */

.demo-process::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#2563EB;

    opacity:.08;

    border-radius:50%;

    filter:blur(180px);

    top:-220px;

    left:-150px;

}

.demo-process::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#38BDF8;

    opacity:.08;

    border-radius:50%;

    filter:blur(180px);

    bottom:-180px;

    right:-150px;

}

.demo-process .container{

    position:relative;

    z-index:2;

}

/* Section */

.demo-process .section-title{

    margin-bottom:70px;

}

.demo-process .section-title h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

}

.demo-process .section-title p{

    color:#CBD5E1;

    max-width:700px;

    margin:auto;

    font-size:18px;

    line-height:1.8;

}

/* Timeline */

.process-line{

    position:absolute;

    left:10%;

    right:10%;

    margin-top:90px;

    height:4px;

    background:linear-gradient(90deg,#2563EB,#38BDF8);

    opacity:.25;

}

/* Card */

.demo-step{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:40px 30px;

    height:100%;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.35s;

}

.demo-step:hover{

    transform:translateY(-12px);

    border-color:#38BDF8;

    box-shadow:0 25px 55px rgba(37,99,235,.25);

}

/* Number */

.step-number{

    position:absolute;

    top:18px;

    right:22px;

    font-size:44px;

    font-weight:900;

    color:rgba(255,255,255,.06);

}

/* Icon */

.step-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-size:36px;

    transition:.35s;

}

.demo-step:hover .step-icon{

    transform:rotate(-8deg) scale(1.08);

}

/* Title */

.demo-step h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

}

/* Description */

.demo-step p{

    color:#CBD5E1;

    line-height:1.8;

    margin:0;

}

/* Responsive */

@media(max-width:991px){

.demo-process{

padding:90px 0;

}

.process-line{

display:none;

}

}

@media(max-width:768px){

.demo-process{

padding:70px 0;

}

.demo-process .section-title h2{

font-size:36px;

}

.demo-step{

padding:30px 22px;

}

.step-icon{

width:75px;

height:75px;

font-size:30px;

}

.step-number{

font-size:34px;

}

}

/*==================================================
                    DEMO FAQ
==================================================*/

.demo-faq{

    padding:120px 0;

    background:#F8FAFC;

}

.demo-faq .section-title{

    margin-bottom:70px;

}

.demo-faq .section-title h2{

    font-size:48px;

    font-weight:800;

    color:#0F172A;

}

.demo-faq .section-title p{

    max-width:700px;

    margin:auto;

    color:#64748B;

    line-height:1.8;

}

/* Accordion */

.demo-faq .accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(15,23,42,.06);

}

.demo-faq .accordion-button{

    background:#fff;

    color:#0F172A;

    font-size:18px;

    font-weight:700;

    padding:22px 28px;

    box-shadow:none;

    transition:.35s;

}

.demo-faq .accordion-button:not(.collapsed){

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

}

.demo-faq .accordion-button:focus{

    box-shadow:none;

}

.demo-faq .accordion-button::after{

    filter:brightness(0);

}

.demo-faq .accordion-button:not(.collapsed)::after{

    filter:brightness(100);

}

.demo-faq .accordion-body{

    background:#fff;

    color:#64748B;

    line-height:1.9;

    padding:25px 30px;

}

/* Responsive */

@media(max-width:768px){

.demo-faq{

padding:70px 0;

}

.demo-faq .section-title h2{

font-size:34px;

}

.demo-faq .accordion-button{

font-size:16px;

padding:18px 20px;

}

.demo-faq .accordion-body{

padding:20px;

}

}

/*==================================================
                DEMO CTA
==================================================*/

.demo-cta{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:#07152D;

}

/* Background Glow */

.demo-cta::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:#2563EB;

    border-radius:50%;

    filter:blur(180px);

    opacity:.12;

    top:-220px;

    left:-180px;

}

.demo-cta::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#38BDF8;

    border-radius:50%;

    filter:blur(180px);

    opacity:.10;

    bottom:-180px;

    right:-150px;

}

.demo-cta .container{

    position:relative;

    z-index:2;

}

/* CTA Box */

.cta-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:30px;

    padding:60px;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

/* Badge */

.cta-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:30px;

    background:rgba(56,189,248,.15);

    color:#38BDF8;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

/* Heading */

.cta-box h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}

/* Text */

.cta-box p{

    color:#CBD5E1;

    line-height:1.9;

    font-size:18px;

    margin-bottom:35px;

}

/* Features */

.cta-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.cta-feature{

    display:flex;

    align-items:center;

    gap:12px;

    color:#E2E8F0;

    font-weight:600;

}

.cta-feature i{

    color:#38BDF8;

    font-size:18px;

}

/* Buttons */

.cta-primary{

    width:100%;

    padding:18px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    font-weight:700;

    margin-bottom:18px;

    transition:.35s;

}

.cta-primary:hover{

    transform:translateY(-4px);

    color:#fff;

    box-shadow:0 20px 45px rgba(37,99,235,.35);

}

.cta-outline{

    width:100%;

    padding:18px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.20);

    color:#fff;

    font-weight:700;

    transition:.35s;

}

.cta-outline:hover{

    background:#fff;

    color:#2563EB;

}

/* Support */

.cta-support{

    margin-top:30px;

    color:#CBD5E1;

    font-size:16px;

}

.cta-support i{

    color:#38BDF8;

    margin-right:10px;

}

.cta-support strong{

    display:block;

    margin-top:8px;

    color:#fff;

    font-size:22px;

}

/* Responsive */

@media(max-width:991px){

.demo-cta{

padding:90px 0;

}

.cta-box{

padding:40px;

text-align:center;

}

.cta-box h2{

font-size:38px;

}

.cta-features{

grid-template-columns:1fr;

margin-bottom:35px;

}

}

@media(max-width:768px){

.demo-cta{

padding:70px 0;

}

.cta-box{

padding:28px;

}

.cta-box h2{

font-size:30px;

}

.cta-box p{

font-size:16px;

}

}
/*=====================================
        WhatsApp Floating Button
=====================================*/

/* WhatsApp Floating Button */

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;
    left: auto;
    top: auto;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0,0,0,.3);

    z-index: 999999;
    transition: .3s;
}

.whatsapp-float:hover{
    color:#fff;
    transform: scale(1.08);
}