*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

:root{
    --primary:#0B2D57;
    --primary-dark:#07203E;
    --secondary:#C97A3D;
    --secondary-dark:#A8602A;
    --accent:#E6A86D;
    --background:#F7F8FA;
    --surface:#FFFFFF;
    --text:#13253A;
    --text-light:#FFFFFF;
    --border:rgba(11,45,87,.12);
}

body{
    overflow-x:hidden;
    background:#fff;
}

/* =========================
   NAVBAR
========================= */

header{
    height:80px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    position:relative;
    z-index:100;
}
@media(max-width:992px){

    header{

        height:80px;

        padding:0 20px;

        display:flex;

        justify-content:space-between;

        align-items:center;
    }

    .logo h2{

        font-size:18px;
    }

    .logo{

        gap:10px;
    }

}
/* =========================
   HAMBURGER MENU
========================= */

/* =========================
   MOBILE MENU
========================= */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    z-index:2001;
}

.hamburger span{
    width:26px;
    height:3px;
    background:#111;
    border-radius:5px;
    transition:.3s;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* MOBILE */

@media(max-width:992px){

    .hamburger{
        display:flex;
    }

    .nav-buttons{
        display:none !important;
    }

    nav{

        position:fixed;
        top:75px;
        left:-100%;

        width:100%;
        height:calc(100vh - 75px);

        background:#ffffff;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:30px 0;

        gap:0;

        z-index:2000;

        transition:left .35s ease;
    }

    nav.active{
        left:0;
    }

   .nav-links{
    width:100%;
    flex-direction:column;
    gap:0;
}

.nav-links li{
    width:100%;
}

.nav-links li a{
    display:block;
    width:100%;
    padding:18px 25px;
    border-bottom:1px solid #eee;
}
    
    .mobile-buttons{

        width:100%;

        display:flex;

        flex-direction:column;

        padding:25px;

        gap:15px;
    }

    .mobile-buttons .text-btn{

        color:#2d7fff;
        text-align:center;
        font-weight:600;
    }

    .mobile-buttons .demo-btn{

        width:100%;
        text-align:center;
        background:#2d7fff;
        color:#fff;
    }
}

/* DESKTOP */

@media(min-width:993px){

    .mobile-buttons{
        display:none;
    }
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-icon{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#2d7fff;
}

.logo h2{
    font-size:24px;
    font-weight:800;
    letter-spacing:1px;
}

/* =========================
   WORDPRESS MENU
========================= */

nav{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;

    list-style:none;
    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links li a{
    text-decoration:none;
     color:#111;
    font-weight:500;
    transition:.3s;
}

.nav-links li a:hover{
    color:#C97A3D;
}

.nav-buttons{
    display:flex;
    gap:20px;
}

.text-btn{
    text-decoration:none;
    color:#2d7fff;
    font-weight:600;
}

.demo-btn{
    text-decoration:none;
    background:#2d7fff;
    color:white;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:calc(100vh - 80px);
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    var(--primary) 0%,
    #15467f 45%,
    var(--secondary) 100%
    );
}
.hero-title{
    color:#fff;
    margin-bottom:30px;
}

.hero-title .thin{
    display:block;
    font-size:42px;
    line-height:1.30;
    font-weight:300;
    letter-spacing:-1px;
}

.hero-title .bold{
    display:block;
    font-size:32px;
    line-height:1;
    font-weight:800;
    letter-spacing:-1px;
}

.hero-title .bold-inline{
    font-weight:300;
}

/* BIG GLOW */

.hero::before{
    content:'';
    position:absolute;
    width:900px;
    height:900px;
    background:radial-gradient(
    circle,
    rgba(0,255,255,.25),
    transparent 70%
    );

    right:-300px;
    top:-250px;
}

/* TRIANGLE 1 */

.triangle1{
    position:absolute;
    width:850px;
    height:850px;

    right:-280px;
    top:-180px;

    clip-path:polygon(
    50% 0%,
    0% 100%,
    100% 100%
    );

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    border:1px solid rgba(0,255,255,.2);

    filter:
    drop-shadow(0 0 40px rgba(0,255,255,.3))
    drop-shadow(0 0 80px rgba(0,180,255,.25));
}

/* TRIANGLE 2 */

.triangle2{
    position:absolute;

    width:700px;
    height:700px;

    left:-250px;
    bottom:-350px;

    clip-path:polygon(
    50% 0%,
    0% 100%,
    100% 100%
    );

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
    );

    border:1px solid rgba(0,255,255,.15);

    filter:
    drop-shadow(0 0 30px rgba(0,255,255,.2));
}

.hero-container{
    max-width:1400px;
    margin:auto;

    padding:50px 70px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-left{
   flex:0 0 520px;
    max-width:520px;
}

.tag{
    color:white;
    font-size:18px;
    font-weight:700;
    margin-bottom:25px;
}

.hero-left h1{
    color: white;
    font-size:72px;
    line-height:.95;
    letter-spacing:-2px;
    margin-bottom:20px;
}

.hero-left h1 strong{
    font-weight:800;
}

.hero-left p{
    color: white;
    font-size:19px;
    line-height:1.6;
    max-width:500px;

}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:45px;
}

.btn-primary{
    background:#000;
    color:white;
    text-decoration:none;
    padding:18px 32px;
    border-radius:12px;
    font-weight:600;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.4);
    color:white;
    text-decoration:none;
    padding:18px 32px;
    border-radius:12px;
    backdrop-filter:blur(10px);
}

/* =========================
   FLOATING PLATFORM CARD
========================= */

.platform-container{
    position:relative;
    margin-top:-40px;
}

.platform-card{

    width:650px;

    background:
    linear-gradient(
    90deg,
    rgba(255,255,255,.30),
    rgba(255,255,255,.40),
    rgba(255,255,255,.08)
    );

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,.2),
    0 0 50px rgba(0,255,255,.15);

    animation:floatCard 5s ease-in-out infinite;
}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }
}

.platform-header{
    padding:25px 30px;

    display:flex;
    align-items:center;
    gap:15px;

    font-size:22px;
    font-weight:700;

    color:#111;
}

.platform-icon{

    width:36px;
    height:36px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #E6A86D 0%,
        #C97A3D 55%,
        #9C5A2C 100%
    );

    box-shadow:
        0 0 20px rgba(201,122,61,.45),
        0 0 40px rgba(201,122,61,.20);
}
.platform-header span{
    color:#fff;
    font-weight:700;
}
.platform-features{
    display:flex;
    gap:14px;
    padding:22px;
}

.feature{
    padding:18px 24px;

    border-radius:12px;

    background:rgba(255,255,255,.10);

    border:
    1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(10px);

    color:white;

    font-weight:600;

    white-space:nowrap;
}
@media (max-width:768px){

    .platform-container{
        overflow:hidden;
    }

    .platform-card{

        width:500px;

        max-width:none;

        transform:translateX(0);

    }

    .platform-features{
        display:none;
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:600px){

.hero-container{
    flex-direction:column;
    text-align:center;
}

.hero-left h1{
    font-size:52px;
}

.platform-card{
    width:100%;
    max-width:850px;
    margin-top:80px;
}

.hero-buttons{
    justify-content:center;
}

}

@media(max-width:768px){

    header{
        padding:0 20px;
    }

    .hero-container{
        padding:80px 25px;
    }

    .hero-left h1{
        font-size:40px;
    }

    .hero-left p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .platform-features{
        overflow-x:auto;
    }

    .platform-card{
        width:100%;
    }

}
/*=====Section 2======*/

.capabilities-section{
      
    transform:translateY(20px);
}

.container{
    width:92%;
    max-width:1600px;
    margin:auto;
}

.section-header{
     display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-bottom:40px;
}

.section-label{
    display:block;
    color:#067ecb;
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
}

.section-content h2{
    font-size:40px;
    line-height:1.05;
    font-weight:300;
    color:#111;
    max-width:1000px;
    margin-bottom:15px;
}

.section-content h2 strong{
    font-weight:700;
}
.section-content p{
    font-size:15px;
    color:#666;
    line-height:1.6;
    max-width:850px;
}

.cta-btn{
    display:inline-block;
    padding:16px 28px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
}

.feature-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:30px;

align-items:stretch;

}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:50px;
    border:1px solid #eee;
    transition:.3s;
}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:32px;
    border:1px solid #eee;
    min-height:300px;
}
.icon-box{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#f3f1ed;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.icon-box i{
    font-size:28px;
    color:#111;
}

.feature-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.feature-card p{
    font-size:17px;
    line-height:1.6;
    color:#666;
}

@media(max-width:1200px){

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.section-header{
    flex-direction:column;
}

.section-content h2{
    font-size:52px;
}

}

@media(max-width:768px){

.feature-grid{
    grid-template-columns:1fr;
}

.section-content h2{
    font-size:40px;
}

.section-content p{
    font-size:18px;
}

.feature-card{
    padding:35px;
}

}
/*====section 3===*/

.platform-section3{
    background:#f6f6f6;
    padding:80px 0;
}

.platform-container3{
    width:90%;
    max-width:1400px;
    margin:auto;

    background:#fff;

    border-radius:12px;

    padding:70px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    box-shadow:0 2px 20px rgba(0,0,0,.04);
}

.platform-content3 h2{
    font-size:25px;
    font-weight:800;
    margin-bottom:20px;
    color:#111;
}

.intro{
    font-size:18px;
    line-height:1.6;
    color:#666;
    margin-bottom:50px;
}

.feature-block{
    margin-bottom:40px;
}

.feature-block h3{
    font-size:20px;
    color:#111;
    margin-bottom:12px;
}

.feature-block p{
    font-size:15px;
    line-height:1.8;
    color:#666;
}

.demo-btn{
    display:inline-block;

    padding:18px 32px;

    background:#111;
    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;
}

/* VISUAL */

.platform-visual{

    position:relative;

    min-height:700px;

    border-radius:10px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #1a89d6,
    #033152
    );
}

.platform-visual::before{
    content:'';
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at top right,
            rgba(230,168,109,.22),
            transparent 45%),

        radial-gradient(circle at bottom left,
            rgba(11,45,87,.18),
            transparent 50%);
}

.cloud-icons{
    position:absolute;
    top:55px;
    left:60%;
    transform:translateX(-50%);

    display:flex;
    gap:22px;
}

.cloud-box{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.18),
        rgba(255,255,255,.08)
    );

    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);

    border-radius:18px;

    color:#fff;
    font-size:38px;

    flex-shrink:0;
}

.cloud-box:hover{
    transform:translateY(-5px);
    border-color:var(--accent);
    box-shadow:0 12px 30px rgba(201,122,61,.25);
}
.code-card{

    position:absolute;

    left:50px;
    top:240px;

    width:280px;

    background:rgba(255,255,255,.08);

    border-radius:10px;

    padding:20px;

    color:#8affd4;
}

.code-card pre{
    margin:0;
    font-size:13px;
}

/* =========================
   REALISTIC DASHBOARD UI
========================= */

.dashboard-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.dashboard-top h3{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:4px;
}

.dashboard-top span{
    font-size:14px;
    color:rgba(255,255,255,.9);
}

.user-avatar{
    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );

    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;

    flex-shrink:0;

    box-shadow:
        0 6px 18px rgba(201,122,61,.35);
}
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-bottom:20px;
}

.stat-card{
    background:#f7f7f7;
    padding:15px;
    border-radius:10px;
}

.stat-card h4{
    font-size:20px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.stat-card span{
    font-size:12px;
    color:#777;
}

.dashboard-body{
    display:flex;
    gap:20px;
}

/* SIDEBAR */

.sidebar{
    width:140px;
    flex-shrink:0;
}

.menu-item{
    padding:12px;
    border-radius:8px;
    margin-bottom:8px;
    font-size:14px;
    cursor:pointer;
    transition:.3s;
}

.menu-item:hover{
    background:#f0f0f0;
}

.menu-item.active{
    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--secondary)
        );

    color:#fff;

    box-shadow:
        0 10px 25px rgba(201,122,61,.30);
}

/* CONTENT AREA */

.content-area{
    flex:1;
}

.chart-card{
    background:#f7f7f7;
    padding:15px;
    border-radius:10px;
    margin-bottom:15px;
}

.chart-header{
    font-weight:600;
    margin-bottom:15px;
    color:#111;
}

.fake-chart{
    height:180px;

    display:flex;
    align-items:flex-end;
    gap:10px;
}

.bar{
    flex:1;

    background:
        linear-gradient(
            to top,
            var(--secondary-dark),
            var(--secondary),
            var(--accent)
        );

    border-radius:8px 8px 0 0;
}

/* TABLE */

.table-card{
    background:#f7f7f7;
    border-radius:10px;
    padding:15px;
}

.table-header{
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
}

.table-card table{
    width:100%;
    border-collapse:collapse;
}

.table-card th{
    text-align:left;
    font-size:12px;
    color:#666;
    padding:10px;
}

.table-card td{
    padding:10px;
    border-top:1px solid #e5e5e5;
    font-size:13px;
}

.status{
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.status.active{
    background:#F8EEE5;
    color:var(--secondary-dark);
}

.status.pending{
    background:#FFF6E9;
    color:#A8602A;
}

/* RESPONSIVE */

@media(max-width:1200px){

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.dashboard-body{
    flex-direction:column;
}

.sidebar{
    width:100%;
    display:flex;
    gap:8px;
    overflow-x:auto;
}

.menu-item{
    white-space:nowrap;
}

}

@media(max-width:768px){

.stats-grid{
    grid-template-columns:1fr;
}

.dashboard-card{
    background:#ffffff;
    border-radius:18px;

    border-top:5px solid var(--secondary);

    box-shadow:
        0 30px 60px rgba(11,45,87,.18);
}

.fake-chart{
    height:120px;
}

}

.dashboard-header{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.dashboard-card{

    position:absolute;

    top:210px;

    right:-440px;

    width:760px;

    background:#fff;

    border-radius:16px;

    padding:24px;

    z-index:5;

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}

.dashboard-card th,
.dashboard-card td{
    text-align:left;
    padding:12px;
    border-bottom:1px solid #eee;
}

.dashboard-card th{
    background:#f8f8f8;
}

@media(max-width:1100px){

.platform-container{
    grid-template-columns:1fr;
}

.platform-visual{
    position:relative;
    min-height:700px;
    border-radius:10px;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        var(--primary) 0%,
        #1B4F87 45%,
        var(--secondary) 100%
    );
}

.dashboard-card{
    width:420px;
}

}

@media(max-width:768px){

.platform-container{
    padding:35px;
}

.platform-content h2{
    font-size:25px;
}

.intro{
    font-size:18px;
}

.dashboard-card{
    width:90%;
    left:5%;
    right:auto;
}

.code-card{

    position:absolute;

    left:50px;
    top:240px;

    width:280px;

    background:rgba(255,255,255,.08);

    border-radius:10px;

    padding:20px;

    color:#8affd4;

    z-index:1;

    opacity:.7;

  
      z-index:1;
    opacity:.55;
    transform:
        translateX(-40px)
        translateY(40px)
        scale(.95);
}


}

/*====section 4 ==========*/

/* =========================
   DEVELOPER SECTION
========================= */

.developer-section{
    position:relative;
    overflow:hidden;
    padding:60px 0;

    background:
        linear-gradient(
            135deg,
            #0b2344 0%,
            #1a3f72 35%,
            #5f6d7f 70%,
            #b58d62 100%
        );
}

/* Glowing Background */

.developer-section::before{

    content:'';

    position:absolute;

    width:900px;
    height:900px;

    right:-250px;
    top:-250px;

    background:
    radial-gradient(
        circle,
        rgba(0,174,255,.25),
        transparent 70%
    );

    filter:blur(20px);
}

.developer-bg-1{

    position:absolute;

    width:1000px;
    height:1000px;

    right:-300px;
    top:-200px;

    background:
    rgba(255,255,255,.03);

    transform:rotate(45deg);
}

.developer-bg-2{

    position:absolute;

    width:900px;
    height:900px;

    left:-450px;
    bottom:-500px;

    background:
    rgba(255,255,255,.02);

    transform:rotate(45deg);
}

.developer-container{

    width:90%;
    max-width:1400px;

    margin:auto;

    position:relative;
    z-index:2;
}

.developer-header{

    max-width:800px;

    margin-bottom:70px;
}

.developer-label{

    color:#36b3ff;

    font-size:18px;
    font-weight:700;

    display:block;

    margin-bottom:20px;
}

.developer-header h2{

    color:#fff;

    font-size:42px;

    line-height:1;

    font-weight:300;

    margin-bottom:25px;
}

.developer-header h2 strong{

    font-weight:800;
}

.developer-header p{

    color:rgba(255,255,255,.8);

    font-size:16px;

    line-height:1.7;

    max-width:750px;
}

/* CARDS */

.developer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;
}

.dev-card{

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

    padding:40px;

    backdrop-filter:blur(10px);

    transition:.4s;
}

.dev-card:hover{

    transform:translateY(-10px);

    border-color:#36b3ff;

    box-shadow:
    0 20px 40px rgba(0,0,0,.25),
    0 0 30px rgba(54,179,255,.25);
}

.dev-icon{

    width:60px;
    height:60px;

    border-radius:14px;

    background:
    rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;
}

.dev-icon i{

    color:#36b3ff;

    font-size:24px;
}

.dev-card h3{

    color:#fff;

    font-size:20px;

    margin-bottom:18px;
}

.dev-card p{

    color:rgba(255,255,255,.8);

    line-height:1.8;

    font-size:15px;

    margin-bottom:30px;
}

.dev-card a{

    color:#7ec8ff;

    text-decoration:none;

    font-weight:700;
}

/* Responsive */

@media(max-width:1200px){

    .developer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .developer-header h2{
        font-size:56px;
    }

}

@media(max-width:768px){

    .developer-grid{
        grid-template-columns:1fr;
    }

    .developer-header h2{
        font-size:42px;
    }

    .developer-header p{
        font-size:18px;
    }

}

/*=======Section 5==========*/

/* ==========================
   FINAL CTA SECTION
========================== */

.cta-section{

    padding:100px 0;

    background:#f5f7fb;
}

.cta-container{

    width:90%;
    max-width:1400px;

    margin:auto;

    padding:80px;

    border-radius:18px;

    position:relative;

    overflow:hidden;

    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:80px;

      background:
    linear-gradient(
        135deg,
        #0a2c56 0%,
        #1a4b78 35%,
        #7f6b57 75%,
        #b57f44 100%
    );

    box-shadow:
    0 20px 120px rgba(0,0,0,.30);
}

/* geometric overlay */

.cta-container::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            transparent 10%,
            rgba(255,255,255,.05) 10%,
            rgba(255,255,255,.05) 72%,
            transparent 72%
        );

    pointer-events:none;
}

.cta-container::after{

    content:'';

    position:absolute;

    width:1000px;
    height:1000px;

    left:-450px;
    bottom:-500px;

    background:
    rgba(255,255,255,.03);

    transform:rotate(45deg);
}

.cta-left,
.cta-right{
    position:relative;
    z-index:2;
}

/* left side */

.cta-label{

    display:block;

    color:#9fd8ff;

    font-size:15px;
    font-weight:700;

    margin-bottom:20px;
}

.cta-left h2{

    color:#fff;

    font-size:42px;

    line-height:.95;

    margin-bottom:25px;
}

.cta-left h2 span{

    display:block;

    font-weight:300;
}

.cta-left{

    max-width:500px;
}

.cta-left p{

    color:rgba(255,255,255,.9);

    font-size:15px;

    line-height:1.6;
}

/* right side cards */

.cta-right{

    display:flex;
    flex-direction:column;
    gap:12px;
}

.cta-card{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 30px;

    border-radius:14px;

    text-decoration:none;

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(10px);

    transition:.3s;
}

.cta-card:hover{

    transform:translateX(8px);

    background:
    rgba(255,255,255,.10);
}

.cta-card h3{

    font-size:15px;
    margin-bottom:8px;
}

.cta-card p{

    font-size:13px;
    opacity:.85;
}

.cta-card span{

    font-size:36px;
}

/* white card */

.light-card{

    background:#fff;
    color:#111;
}

.light-card p{
    color:#666;
}

/* responsive */

@media(max-width:1100px){

    .cta-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .cta-left h2{
        font-size:56px;
    }
}

@media(max-width:768px){

    .cta-container{
        padding:40px 25px;
    }

    .cta-left h2{
        font-size:42px;
    }

    .cta-left p{
        font-size:18px;
    }

    .cta-card h3{
        font-size:22px;
    }

    .cta-card p{
        font-size:16px;
    }

}

/*======Footer section======*/

/* ===================================
   V DIVIDER
=================================== */

.footer-transition{

    position:relative;

    height:220px;

    background:#f8faff;

    overflow:hidden;
}


.v-divider{

    position:absolute;

    bottom:0;

    width:100%;
    height:180px;

    background:#071428;

    clip-path:polygon(
        0 55%,
        50% 100%,
        100% 55%,
        100% 100%,
        0 100%
    );
}

/* ===================================
   FLOATING LOGO
=================================== */

.floating-logo{

    position:absolute;

    left:50%;

    bottom:45px;

    transform:translateX(-50%);

    z-index:20;
}

.floating-logo img{

    width:90px;
    height:90px;

    border-radius:50%;
    background:#fff;
    padding:12px;
    object-fit:contain;

    border:4px solid var(--secondary);

    box-shadow:
        0 0 0 8px rgba(201,122,61,.18),
        0 0 30px rgba(201,122,61,.35),
        0 15px 40px rgba(0,0,0,.25);

    transition:transform .1s linear;
}
.floating-logo::before{

    content:'';
    position:absolute;
    inset:-12px;

    border-radius:50%;

    border:2px solid rgba(201,122,61,.45);

    animation:pulseRing 3s infinite;
}

@keyframes pulseRing{

    0%{
        transform:scale(1);
        opacity:.8;
    }

    100%{
        transform:scale(1.15);
        opacity:0;
    }

}
/* ===================================
   FOOTER
=================================== */

.footer{

    background:
    linear-gradient(
        45deg,
        #081224,
        #10131d,
        #1a1a1a
    );

    color:white;

    padding:90px 0 30px;
}

.footer-container{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1.2fr
    1fr
    1fr
    1fr
    1fr;

    gap:60px;
}

.footer-brand h2{

    font-size:40px;
    font-weight:800;

    margin-bottom:30px;
}

.socials{

    display:flex;
    gap:15px;
}

.socials a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#67b3ff;

    text-decoration:none;
}

.socials a:hover{

    background:var(--secondary);

    color:#fff;

    transform:translateY(-4px);
}

.footer-column h4{

    color:var(--accent);

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:2px;
}

.footer-column{

    display:flex;
    flex-direction:column;
}

.footer-column a{

    color:#d6d6d6;

    text-decoration:none;

    margin-bottom:16px;

    transition:.3s;
}

.footer-column a:hover{

    color:var(--accent);

    transform:translateX(6px);
}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:35px 0;

    border-top:1px solid rgba(255,255,255,.08);

    flex-wrap:nowrap;

}

.footer-copyright{

    color:#9ea8b5;

    font-size:16px;

    white-space:nowrap;

    flex-shrink:0;

}

.footer-bottom-links{

    display:flex;

    align-items:center;

    gap:36px;

    flex-wrap:nowrap;

}

.footer-bottom-links a{

    color:#9ea8b5;

    text-decoration:none;

    transition:.3s;

    white-space:nowrap;

}

.footer-bottom-links a:hover{

    color:#ffffff;

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1000px){

.footer-container{

    grid-template-columns:
    repeat(2,1fr);
}

}

@media(max-width:768px){

.footer-container{

    grid-template-columns:1fr;
}

.footer-bottom{

    flex-direction:column;
    gap:20px;
}

.floating-logo img{

    width:100px;
    height:100px;
}

}
/*====dashboard sample====*/
/* ===================================
   SECTION 3 MOBILE RESPONSIVE FIX
=================================== */

@media (max-width: 992px){

    .platform-container3{

        grid-template-columns:1fr;

        padding:30px;

        gap:40px;
    }

    .platform-content3{

        text-align:center;
    }

    .platform-content3 h2{

        font-size:32px;
    }

    .intro{

        font-size:16px;

        margin-bottom:30px;
    }

    .feature-block{

        margin-bottom:25px;
    }

    .feature-block h3{

        font-size:18px;
    }

    .feature-block p{

        font-size:14px;
    }

    .platform-visual{

        min-height:500px;
    }

    .cloud-icons{

        top:20px;
        right:20px;
    }

  .cloud-box{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.18),
        rgba(255,255,255,.08)
    );

    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);

    border-radius:18px;

    color:#fff;
    font-size:38px;

    flex-shrink:0;
}

    .dashboard-card{

        position:absolute;

        top:120px;

        left:20px;

        right:auto;

        width:90%;

        max-width:none;
    }

    .code-card{

        display:none;
    }

}
@media (max-width:768px){

    .platform-container3{

        width:95%;

        padding:20px;
    }

    .platform-content3{

        text-align:left;
    }

    .platform-content3 h2{

        font-size:28px;
    }

    .intro{

        font-size:15px;
    }

    .platform-visual{

        min-height:420px;

        overflow:hidden;
    }

    /* Show only part of dashboard */

    .dashboard-card{

        width:500px;

        left:20px;

        top:100px;

        transform:scale(.75);

        transform-origin:top left;
    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .sidebar{

        display:none;
    }

}
@media (max-width:480px){

    .platform-container3{

        padding:15px;
    }

    .platform-content3 h2{

        font-size:24px;
    }

    .dashboard-card{

        width:450px;

        transform:scale(.65);

        transform-origin:top left;
    }

    .cloud-icons{

        gap:8px;
    }

    .cloud-box{

        width:45px;
        height:45px;

        font-size:18px;
    }

}

.footer-logo{

    display:flex;

    align-items:center;

    justify-content:center;

}

.footer-logo .custom-logo-link{

    display:block;

}

.footer-logo .custom-logo{

    width:80px;

    height:auto;

    display:block;

}

.footer-menu{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-menu li{

    margin:0 0 18px;

}

.footer-menu li:last-child{

    margin-bottom:0;

}

.footer-menu a{

    color:#ffffff;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}

.footer-menu a:hover{

    color:var(--accent);
}

.logo img,
.site-logo img{
    width:70px;
    height:auto;
    display:block;
}

.site-header{
    background:#fff;
    border-bottom:1px solid #ececec;
}

.header-container{
    max-width:1400px;
    margin:auto;

    height:82px;

    display:flex;
    align-items:center;

    padding:0 40px;
}

.header-logo{
    flex-shrink:0;
    margin-right:48px;
}

.header-logo img{
    width:56px;
    height:56px;
    display:block;
}

.header-logo img{
    width: 72px;
    height: 72px;
    display: block;
}