@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root{
    --primary:#5d8cff;
    --primary-dark:#3d6fff;
    --dark:#050816;
    --dark-light:#0d1224;
    --text:#ffffff;
    --text-light:#b7bfd8;
    --border:rgba(255,255,255,0.08);
    --gradient:linear-gradient(135deg,#5d8cff 0%,#7c5cff 100%);
    --shadow:0 10px 30px rgba(0,0,0,0.35);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--text);
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.6;
}

/* scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0b1020;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/* container */

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* background glow */

body::before{
    content:'';
    position:fixed;
    width:600px;
    height:600px;
    background:rgba(93,140,255,0.15);
    filter:blur(140px);
    top:-200px;
    right:-150px;
    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    width:500px;
    height:500px;
    background:rgba(124,92,255,0.12);
    filter:blur(140px);
    bottom:-200px;
    left:-100px;
    z-index:-1;
}

/* =========================
HEADER
========================= */

.nav{
    position:sticky;
    top:0;
    z-index:9999;
    backdrop-filter:blur(20px);
    background:#fff;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0;
}

.nav__logo img{
    max-width:100px;
}

.nav__right{
    display:flex;
    align-items:center;
    gap:20px;
}

.header-phone{
    color:#000;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.header-phone:hover{
    color:var(--primary);
}

.nav__cta{
    background:var(--gradient);
    color:#fff;
    text-decoration:none;
    padding:14px 26px;
    border-radius:14px;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(93,140,255,0.25);
}

.nav__cta:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* =========================
MENU
========================= */

.menu-bar{
    background:var(--gradient);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.mainul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    padding:18px 0;
    margin:0;
}

.mainul li{
    position:relative;
}

.mainul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.mainul li a:hover{
    color:#050816;
}

/* submenu */

.submenu{
    position:absolute;
    top:120%;
    left:0;
    min-width:240px;
    background:#0d1224;
    border-radius:16px;
    padding:15px 0;
    list-style:none;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.05);
    box-shadow:var(--shadow);
}

.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.submenu li{
    padding:0;
}

.submenu li a{
    display:block;
    padding:12px 20px;
}

/* mobile toggle */

.mobile-toggle{
    display:none;
    position:fixed;
    top:18px;
    right:20px;
    z-index:99999;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* =========================
HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    padding:120px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:100px;
    background:rgba(93,140,255,0.12);
    border:1px solid rgba(93,140,255,0.2);
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    letter-spacing:0.5px;
}

.hero h1{
    font-size:78px;
    line-height:1.05;
    margin:28px 0;
    font-weight:800;
    letter-spacing:-2px;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    color:var(--text-light);
    font-size:18px;
    max-width:620px;
}

.hero-buttons{
    margin-top:45px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.primary-btn{
    background:var(--gradient);
    color:#fff;
    padding:16px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 15px 35px rgba(93,140,255,0.25);
    border:none;
}

.primary-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

.secondary-btn{
    border:none;
    padding:16px 30px;
    border-radius:14px;
    color:#fff;
    text-decoration:none;
    transition:0.4s;
    background: #0d1224;
}

/* .secondary-btn:hover{
    background:#10172d;
    color:#fff;
} */

/* glass box */

.hero-card{
    position:relative;
}

.glass-box{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    padding:45px;
    border-radius:30px;
    backdrop-filter:blur(20px);
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
}

.glass-box::before{
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    background:rgba(93,140,255,0.2);
    filter:blur(90px);
    top:-50px;
    right:-50px;
}

.glass-box h3{
    font-size:32px;
    margin-bottom:25px;
}

.glass-box ul{
    padding-left:18px;
}

.glass-box li{
    margin-bottom:16px;
    color:var(--text-light);
}

/* =========================
STATS
========================= */

.stats-section{
    padding:40px 0 120px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-box{
    background:#0d1224;
    padding:45px 30px;
    border-radius:28px;
    text-align:center;
    transition:0.4s;
    border:1px solid transparent;
}

.stat-box:hover{
    transform:translateY(-8px);
    border-color:rgba(93,140,255,0.3);
}

.stat-box h2{
    font-size:54px;
    color:var(--primary);
    margin-bottom:10px;
    font-weight:800;
}

.stat-box p{
    color:var(--text-light);
    margin:0;
}

/* =========================
SECTION
========================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:1px;
}

.section-title h2{
    font-size:54px;
    margin-top:10px;
}

/* =========================
SERVICES
========================= */

.services-preview,
.services-full,
.portfolio-section,
.about-section,
.blog-section,
.contact-section{
    padding:120px 0;
}

.service-grid,
.portfolio-grid,
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.service-card,
.portfolio-card,
.blog-card{
    background:var(--gradient);
    padding:38px;
    border-radius:28px;
    transition:0.45s;
    border:1px solid rgba(255,255,255,0.05);
    position:relative;
    overflow:hidden;
    color:#fff
}

.service-card::before,
.portfolio-card::before,
.blog-card::before{
    content:'';
    position:absolute;
    width:160px;
    height:160px;
    background:rgba(93,140,255,0.12);
    filter:blur(80px);
    top:-50px;
    right:-50px;
    opacity:0;
    transition:0.4s;
}

.service-card:hover::before,
.portfolio-card:hover::before,
.blog-card:hover::before{
    opacity:1;
}

.service-card:hover,
.portfolio-card:hover,
.blog-card:hover{
    transform:translateY(-10px);
    border-color:rgba(93,140,255,0.3);
}

.service-card h3,
.portfolio-card h3,
.blog-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.service-card p,
.portfolio-card p,
.blog-card p{
    color:var(--text-light);
}

/* =========================
PORTFOLIO
========================= */

.filter-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.filter-btn{
    border:none;
    background:#0d1224;
    color:#fff;
    padding:14px 24px;
    border-radius:14px;
    cursor:pointer;
    transition:0.4s;
}

.filter-btn.active,
.filter-btn:hover{
    background:var(--gradient);
}

/* =========================
ABOUT
========================= */

.about-grid,
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-section h2{
    font-size:56px;
    margin-bottom:25px;
}

.about-section p{
    color:var(--text-light);
    margin-bottom:20px;
}

.about-card{
    background:var(--gradient);
    padding:45px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.05);
    color: #fff;
}

.about-card h3{
    margin-bottom:25px;
}

.about-card ul{
    padding-left:20px;
}

.about-card li{
    margin-bottom:14px;
    color:var(--text-light);
}

/* =========================
BLOGS
========================= */

.blog-card span{
    color:var(--primary);
    display:inline-block;
    margin-bottom:14px;
    font-weight:600;
}

/* =========================
CONTACT
========================= */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    background:#fff;
    border:1px solid #716cff;
    padding:18px 22px;
    border-radius:16px;
    color:#fff;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
}

/* =========================
FOOTER
========================= */

.site-footer{
    background:var(--gradient);
    margin-top:100px;
}

.footer-cta{
    border-bottom:1px solid rgba(255,255,255,0.05);
    padding:50px 0;
}

.cta-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta-text h3{
    font-size:42px;
    margin-bottom:10px;
}

.cta-text p{
    color:var(--text-light);
}

.button{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:18px 28px;
    border-radius:16px;
    font-weight:700;
}

.button svg{
    width:24px;
    height:24px;
}

.footer-main{
    padding-top:80px;
    color: var(--text);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footer-brand img{
    max-width:180px;
    margin-bottom:20px;
}

.footer-brand p{
    color:var(--text);
}

.footer-col h4,
.footer-col h6{
    margin-bottom:24px;
    font-size:24px;
    color:var(--text);
}
.social-links a {
    text-decoration: none;
}
.social-links {
    display: flex;
    gap: 20px;
    font-size: 24px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:var(--text);
    text-decoration:none;
    transition:0.3s;
}
.footer-main span.label{color:var(--text);}

.footer-links a:hover{
    color:var(--primary);
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:22px;
}

.contact-item .ico{
    color:var(--text);
    font-size:20px;
}

.contact-item .icon{
    color:#6a78ff;
    font-size:20px;
}

.phone-n{
    color:#fff;
    text-decoration:none;
}
.contact-a{
    color:#6c74ff;
    text-decoration:none;
}
a.social-icon
 {
    color: #fff;
}

.fb-link{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0d1224;
    color:#fff;
    text-decoration:none;
}

.btn-green{
    background:var(--gradient);
    color:#fff;
    padding:15px 20px;
    border-radius:14px;
    text-decoration:none;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.05);
    margin-top:70px;
    padding:25px 0;
}
.footer-main .btn-green{background: #000;}

.bottom-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.bottom-links a{
    color:var(--text-light);
    text-decoration:none;
}

.sep{
    margin:0 10px;
    color:#555;
}

/* =========================
PAGE BANNER
========================= */

.page-banner{
    padding:140px 0 80px;
    text-align:center;
}

.page-banner h1{
    font-size:72px;
    margin-bottom:15px;
}

.page-banner p{
    color:var(--text-light);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

    .hero h1{
        font-size:62px;
    }

    .service-grid,
    .portfolio-grid,
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .mobile-toggle{
        display:block;
    }

    .menu{
        position:fixed;
        width:300px;
        height:100vh;
        background:#08101f;
        top:0;
        left:-100%;
        padding:90px 25px;
        transition:0.4s;
        z-index:9999;
        overflow:auto;
    }

    .menu.active{
        left:0;
    }

    .mainul{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .submenu{
        position:static;
        opacity:1;
        visibility:visible;
        display:none;
        margin-top:15px;
    }

    .dropdown.active .submenu{
        display:block;
    }

    .hero-grid,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero{
        padding:80px 0;
    }

    .hero h1{
        font-size:52px;
    }

    .section-title h2,
    .about-section h2,
    .page-banner h1{
        font-size:46px;
    }

    .cta-wrap,
    .bottom-wrap{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .service-grid,
    .portfolio-grid,
    .blog-grid,
    .stats-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .glass-box{
        padding:30px;
    }

    .stat-box h2{
        font-size:42px;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-section h2{
        font-size:40px;
    }

}


/* ==========================================================
   GLOBAL SECTION STYLES
========================================================== */
.section-space {
    padding: 110px 0;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #5b7cff;
    background: rgba(91, 124, 255, 0.08);
    border: 1px solid rgba(91, 124, 255, 0.12);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #070b1f;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.section-header .section-title {
    font-size: 46px;
    margin-bottom: 18px;
}

.section-description {
    font-size: 18px;
    line-height: 1.9;
    color: #6f7897;
    margin-bottom: 0;
    max-width: 700px;
}

/* ==========================================================
   ABOUT SECTION
========================================================== */
.about-section {
    background: #ffffff;
    position: relative;
}

.about-section .row {
    align-items: center;
}

.about-section .col-lg-6:first-child {
    padding-right: 55px;
}

.about-features {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #0a1330;
}

.feature-item i {
    color: #5b7cff;
    font-size: 18px;
    flex-shrink: 0;
}

/* Right Card */
.about-card {
    position: relative;
    background: linear-gradient(135deg, #5b7cff 0%, #7b4dff 100%);
    border-radius: 28px;
    padding: 50px;
    color: #ffffff;
    box-shadow: 0 35px 80px rgba(91, 124, 255, 0.25);
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.about-card::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -90px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.about-card-content {
    position: relative;
    z-index: 2;
}

.about-card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 14px;
    opacity: 0.9;
}

.about-card h3 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ffffff;
}

.about-card p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 35px;
}

/* Metrics */
.about-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 22px 20px;
}

.metric-box h4 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #ffffff;
}

.metric-box span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================
   SERVICES SECTION
========================================================== */
.services-section {
    background: #f7f9ff;
}

.service-card {
    height: 100%;
    background: linear-gradient(135deg, #5b7cff 0%, #7b4dff 100%);
    border-radius: 24px;
    padding: 36px 32px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(91, 124, 255, 0.18);
    transition: all 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(91, 124, 255, 0.25);
}

.service-card i {
    position: relative;
    z-index: 2;
    font-size: 28px;
    margin-bottom: 24px;
    display: inline-block;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.service-card p {
    position: relative;
    z-index: 2;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* ==========================================================
   PROCESS SECTION
========================================================== */
.process-section {
    background: #ffffff;
}

.process-card {
    height: 100%;
    padding: 32px 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: #5b7cff;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0a1330;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #6f7897;
    margin: 0;
}

/* ==========================================================
   CTA SECTION
========================================================== */
.cta-section {
    padding: 40px 0 110px;
    background: #ffffff;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
    border: 1px solid #eef2ff;
    border-radius: 32px;
    padding: 70px 60px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

.cta-box h2 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #070b1f;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.9;
    color: #6f7897;
}

/* ==========================================================
   RESPONSIVE DESIGN
========================================================== */
@media (max-width: 991px) {
    .section-space {
        padding: 80px 0;
    }

    .section-title,
    .section-header .section-title,
    .cta-box h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    .section-description,
    .cta-box p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-section .col-lg-6:first-child {
        padding-right: 12px;
    }

    .about-card {
        padding: 40px 32px;
    }

    .about-card h3 {
        font-size: 30px;
    }

    .service-card,
    .process-card {
        text-align: left;
    }

    .cta-box {
        padding: 50px 35px;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 70px 0;
    }

    .section-title,
    .section-header .section-title,
    .cta-box h2 {
        font-size: 30px;
        letter-spacing: 0;
    }

    .section-description {
        font-size: 15px;
    }

    .about-card {
        padding: 35px 24px;
        border-radius: 24px;
    }

    .about-card h3 {
        font-size: 24px;
    }

    .about-metrics {
        grid-template-columns: 1fr;
    }

    .metric-box h4 {
        font-size: 28px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-card h3,
    .process-card h3 {
        font-size: 22px;
    }

    .cta-box {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .feature-item {
        align-items: flex-start;
        font-size: 15px;
    }
}