/* ========================================= */
/* GLOBAL */
/* ========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Outfit',sans-serif;
    overflow-x:hidden;
    margin:0;
    padding:0;
    width:100%;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.custom-navbar{
    background:#020617;
    padding:18px 0;
    transition:.4s ease;
    z-index:999;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.custom-navbar .container{
    max-width:1320px;
}

/* ========================================= */
/* LOGO */
/* ========================================= */

.navbar-brand img{
    height:52px;
    width:auto;
    object-fit:contain;
}

/* ========================================= */
/* NAV LINKS */
/* ========================================= */

.navbar-nav{
    gap:18px;
}

.nav-link{
    color:#fff !important;
    font-size:15px;
    font-weight:500;
    position:relative;
    transition:.3s;
    padding:10px 0 !important;
}

.nav-link:hover{
    color:#ff6b00 !important;
}

.nav-link.active{
    color:#ff6b00 !important;
}

/* Animated underline */

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    border-radius:20px;
    background:#ff6b00;
    transition:.4s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

/* ========================================= */
/* DROPDOWN */
/* ========================================= */

.dropdown-menu{
    background:#fff;
    border:none;
    border-radius:18px;
    padding:12px;
    min-width:240px;
    box-shadow:0 15px 50px rgba(0,0,0,0.08);
    
}

.dropdown-item{
    padding:12px 16px;
    border-radius:12px;
    font-weight:500;
    transition:.3s;
}

.dropdown-item:hover{
    background:#f8fafc;
    color:#ff6b00;
}

/* ========================================= */
/* CONTACT */
/* ========================================= */

.nav-contact{
    display:flex;
    align-items:center;
    gap:14px;
}

.phone-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.phone-icon i{
    color:#ff6b00;
    font-size:18px;
}

.nav-contact span{
    display:block;
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.nav-contact small{
    color:#cbd5e1;
    font-size:12px;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.theme-btn{
    background:linear-gradient(to right,#ff6b00,#ff8c00);
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    font-weight:600;
    font-size:15px;
    transition:.4s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
}

.theme-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 10px 25px rgba(255,107,0,0.3);
}

/* ========================================= */
/* MOBILE NAVBAR */
/* ========================================= */

.navbar-toggler{
    color:#fff;
    font-size:28px;
}

.navbar-toggler:focus{
    box-shadow:none;
}






/* @media(max-width:1199px){

.navbar-collapse{
    background:#020617;
    padding:30px;
    border-radius:24px;
    margin-top:20px;
}

.navbar-nav{
    gap:8px;
}

.nav-link{
    padding:12px 0 !important;
}

.nav-contact{
    margin-top:20px;
}

.theme-btn{
    margin-top:20px;
    width:100%;
}

} */
/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero-section{
    position:relative;
    overflow:hidden;
    background:#020617;
    padding-top:170px;
    padding-bottom:110px;
}

/* ========================================= */
/* BACKGROUND GLOW */
/* ========================================= */

.hero-glow{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(124,58,237,0.25),
    transparent 45%);
    z-index:1;
}

/* ========================================= */
/* BREADCRUMB */
/* ========================================= */

.breadcrumb-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:50px;
}

.breadcrumb-wrapper a,
.breadcrumb-wrapper p,
.breadcrumb-wrapper span{
    color:#fff;
    font-size:14px;
    margin:0;
    text-decoration:none;
    opacity:.85;
}

/* ========================================= */
/* LEFT CONTENT */
/* ========================================= */

.hero-content{
    position:relative;
    z-index:5;
}

.hero-subtitle{
    color:#d1d5db;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.hero-content h1{
    color:#fff;
    font-size:15px;
    line-height:1.05;
    font-weight:800;
    margin-top:10px;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#ff6b00;
    display:block;
}

.hero-content p{
    color:#d1d5db;
    font-size:18px;
    line-height:1.9;
    max-width:620px;
}

/* ========================================= */
/* FEATURES */
/* ========================================= */

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-top:45px;
}

.feature-item{
    display:flex;
    gap:15px;
}

.feature-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#fff;
    position:relative;
}

.feature-icon::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
}

.feature-icon i{
    position:relative;
    z-index:2;
}

.orange{
    color:#ff6b00;
}

.purple{
    color:#9333ea;
}

.blue{
    color:#3b82f6;
}

.green{
    color:#22c55e;
}

.feature-item h6{
    color:#fff;
    font-size:16px;
    margin-bottom:6px;
    font-weight:700;
}

.feature-item p{
    font-size:14px;
    line-height:1.7;
    color:#cbd5e1;
    margin:0;
}

/* ========================================= */
/* HERO IMAGE */
/* ========================================= */

.hero-image-wrapper{
    position:relative;
    text-align:center;
    z-index:3;
}

.hero-main-image{
    width:100%;
    max-width:650px;
    animation:float 5s ease-in-out infinite;
    position:relative;
    z-index:2;
}

/* ========================================= */
/* FLOAT ANIMATION */
/* ========================================= */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ========================================= */
/* FLOATING ICONS */
/* ========================================= */

.floating-icon{
    position:absolute;
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(17,24,39,0.95);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.4),
    inset 0 0 20px rgba(255,255,255,0.03);
    z-index:5;
    backdrop-filter:blur(12px);
}

.floating-icon i{
    background:linear-gradient(to bottom,#60a5fa,#7c3aed);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.one{
    top:10%;
    left:8%;
}

.two{
    bottom:24%;
    left:3%;
}

.three{
    right:5%;
    bottom:28%;
}

.four{
    top:10%;
    right:12%;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1400px){

.hero-content h1{
    font-size:65px;
}

}

@media(max-width:1199px){

.hero-content h1{
    font-size:56px;
}

.hero-main-image{
    max-width:580px;
}

}

@media(max-width:991px){

.hero-section{
    padding-top:140px;
    padding-bottom:90px;
}

.hero-content{
    text-align:center;
}

.hero-content p{
    margin:auto;
}

.hero-content h1{
    font-size:50px;
}

.hero-features{
    grid-template-columns:1fr;
    max-width:500px;
    margin:40px auto 0;
}

.hero-image-wrapper{
    margin-top:20px;
}

.hero-main-image{
    max-width:520px;
}

}

@media(max-width:767px){

.hero-content h1{
    font-size:40px;
}

.hero-content p{
    font-size:16px;
}

.hero-main-image{
    max-width:100%;
}

.floating-icon{
    width:58px;
    height:58px;
    font-size:22px;
}

.one{
    left:0;
}

.two{
    left:0;
}

.three{
    right:0;
}

.four{
    right:0;
}

}

@media(max-width:575px){

.hero-section{
    padding-top:120px;
}

.hero-content h1{
    font-size:34px;
}

.hero-features{
    gap:22px;
}

.feature-item{
    align-items:flex-start;
}

.feature-icon{
    width:52px;
    height:52px;
    font-size:18px;
}

}
/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero-section{
    position:relative;
    overflow:hidden;
    background:#020617;
    padding-top:100px;
    padding-bottom:20px;
}

/* ========================================= */
/* BACKGROUND GLOW */
/* ========================================= */

.hero-glow{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center,rgba(124,58,237,0.25),transparent 45%);
    z-index:1;
    margin-top: 10px;
    padding: 70px 0 25px;
    align-items: center;
    margin-bottom: 0;

}

/* ========================================= */
/* BREADCRUMB */
/* ========================================= */

.breadcrumb-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.breadcrumb-wrapper a,
.breadcrumb-wrapper p,
.breadcrumb-wrapper span{
    color:#fff;
    font-size:14px;
    margin:2px;
    text-decoration:none;
    opacity:.85;
}

/* ========================================= */
/* LEFT CONTENT */
/* ========================================= */

.hero-content{
    position:relative;
    z-index:5;
}

.hero-subtitle{
    color:#d1d5db;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.hero-content h1{
    color:#fff;
    font-size:37px;
    line-height:1.05;
    font-weight:800;
    margin-top:10px;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#ff6b00;
    display:block;
}

.hero-content p{
    color:#d1d5db;
    font-size:18px;
    line-height:1.9;
    max-width:620px;
}

/* ========================================= */
/* FEATURES */
/* ========================================= */

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-top:45px;
}

.feature-item{
    display:flex;
    gap:15px;
}

.feature-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#fff;
    position:relative;
}

.feature-icon::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
}

.feature-icon i{
    position:relative;
    z-index:2;
}

.orange{
    color:#ff6b00;
}

.purple{
    color:#9333ea;
}

.blue{
    color:#3b82f6;
}

.green{
    color:#22c55e;
}

.feature-item h6{
    color:#fff;
    font-size:16px;
    margin-bottom:6px;
    font-weight:700;
}

.feature-item p{
    font-size:14px;
    line-height:1.7;
    color:#cbd5e1;
    margin:0;
}

/* ========================================= */
/* HERO IMAGE */
/* ========================================= */

.hero-image-wrapper{
    position:relative;
    text-align:center;
    z-index:3;
}

.hero-main-image{
    width:100%;
    max-width:650px;
    animation:float 5s ease-in-out infinite;
    position:relative;
    z-index:2;
}

/* ========================================= */
/* FLOAT ANIMATION */
/* ========================================= */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ========================================= */
/* FLOATING ICONS */
/* ========================================= */

.floating-icon{
    position:absolute;
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(17,24,39,0.95);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.4),
    inset 0 0 20px rgba(255,255,255,0.03);
    z-index:5;
    backdrop-filter:blur(12px);
}

.floating-icon i{
    background:linear-gradient(to bottom,#60a5fa,#7c3aed);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.one{
    top:10%;
    left:8%;
}

.two{
    bottom:24%;
    left:3%;
}

.three{
    right:5%;
    bottom:28%;
}

.four{
    top:10%;
    right:12%;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1400px){

.hero-content h1{
    font-size:70px;
}

}

@media(max-width:1199px){

.hero-content h1{
    font-size:56px;
}

.hero-main-image{
    max-width:580px;
}

}

@media(max-width:991px){

.hero-section{
    padding-top:140px;
    padding-bottom:90px;
}

.hero-content{
    text-align:center;
}

.hero-content p{
    margin:auto;
}

.hero-content h1{
    font-size:50px;
}

.hero-features{
    grid-template-columns:1fr;
    max-width:500px;
    margin:40px auto 0;
}

.hero-image-wrapper{
    margin-top:20px;
}

.hero-main-image{
    max-width:520px;
}

}

@media(max-width:767px){

.hero-content h1{
    font-size:40px;
}

.hero-content p{
    font-size:16px;
}

.hero-main-image{
    max-width:100%;
}

.floating-icon{
    width:58px;
    height:58px;
    font-size:22px;
}

.one{
    left:0;
}

.two{
    left:0;
}

.three{
    right:0;
}

.four{
    right:0;
}

}

@media(max-width:575px){

.hero-section{
    padding-top:120px;
}

.hero-content h1{
    font-size:34px;
}

.hero-features{
    gap:22px;
}

.feature-item{
    align-items:flex-start;
}

.feature-icon{
    width:52px;
    height:52px;
    font-size:18px;
}

}
/* ========================================= */
/* ABOUT COMPANY SECTION */
/* ========================================= */

.about-company-section{
    padding:32px 0;
    background:#fff;
    overflow:hidden;
}

.about-company-section .container{
    max-width:1320px;
}

/* ========================================= */
/* IMAGE */
/* ========================================= */

.about-company-image{
    position:relative;
}

.about-company-image img{
    width:100%;
    border-radius:28px;
    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.about-company-content{
    padding-left:10px;
}

.section-subtitle{
    color:#9333ea;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.about-company-content h2{
    font-size:34px;
    line-height:1.15;
    font-weight:800;
    color:#111827;
    margin-top:12px;
    margin-bottom:22px;
}

.about-company-content h2 span{
    color:#ff6b00;
}

.about-company-content p{
    color:#4b5563;
    font-size:18px;
    line-height:1.9;
    margin-bottom:18px;
}

/* ========================================= */
/* STATS */
/* ========================================= */

.stats-row{
    margin-top:25px;
}

.stats-card{
   background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:12px;
    height:100%;
    min-height:110px;
}

.stats-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,0.07);
}

.stats-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:22px;
}

.orange-light{
    background:#fff1e7;
    color:#ff6b00;
}

.purple-light{
    background:#f3e8ff;
    color:#9333ea;
}

.blue-light{
    background:#e8f0ff;
    color:#2563eb;
}

.green-light{
    background:#dcfce7;
    color:#16a34a;
}

.stats-card h3{
    font-size:28px;
    line-height:1;
    margin-bottom:6px;
    font-weight:800;
    color:#111827;
}

.stats-card p{
    margin:0;
    color:#6b7280;
    font-size:14px;
    line-height:1.5;
}

/* ========================================= */
/* MISSION ROW */
/* ========================================= */

.mission-row{
    margin-top:45px;
}

/* ========================================= */
/* MISSION CARD */
/* ========================================= */

.mission-card{
    background:#faf7f5;
    border:1px solid #ececec;
    border-radius:24px;
    padding:36px;
    display:flex;
    align-items:flex-start;
    gap:24px;
    height:100%;
    transition:.4s ease;
}

.mission-card:hover{
    transform:translateY(-5px);
}

.mission-icon{
    width:92px;
    height:92px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    flex-shrink:0;
}

.orange-soft{
    background:#fff0e6;
    color:#ff6b00;
}

.purple-soft{
    background:#f3e8ff;
    color:#9333ea;
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.mission-content h4{
    font-size:34px;
    line-height:1;
    margin-bottom:12px;
    font-weight:700;
    color:#111827;
}

.title-line{
    width:55px;
    height:4px;
    border-radius:30px;
    margin-bottom:18px;
}

.orange-line{
    background:#ff6b00;
}

.purple-line{
    background:#9333ea;
}

.mission-content p{
    font-size:18px;
    line-height:1.9;
    color:#4b5563;
    margin:0;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1400px){

.about-company-content h2{
    font-size:48px;
}

}

@media(max-width:1199px){

.about-company-content h2{
    font-size:42px;
}

.stats-card{
    padding:20px 15px;
    grid-template-columns:repeat(2,1fr);

}


.stats-card h3{
    font-size:34px;
}

.mission-content h4{
    font-size:30px;
}

}

@media(max-width:991px){

.about-company-section{
    padding:90px 0;
}

.about-company-content{
    padding-left:0;
}

.about-company-content h2{
    font-size:38px;
}

.stats-row{
    margin-top:20px;
}

.mission-card{
    padding:30px;
}

}

@media(max-width:767px){

.about-company-section{
    padding:70px 0;
}

.about-company-content h2{
    font-size:32px;
}

.about-company-content p{
    font-size:16px;
}

.stats-card{
    flex-direction:column;
    text-align:center;
    padding:18px;
}

.stats-card h3{
    font-size:26px;
}
.stats-card p{
        font-size:13px;
    }

.mission-card{
    flex-direction:column;
    padding:28px;
}

.mission-icon{
    width:80px;
    height:80px;
    font-size:30px;
}

.mission-content h4{
    font-size:28px;
}

.mission-content p{
    font-size:16px;
}

}

@media(max-width:575px){

.about-company-content h2{
    font-size:28px;
}

.stats-card{
    border-radius:18px;
}

.mission-card{
    border-radius:20px;
}

}
/* ========================================= */
/* CORE VALUES SECTION */
/* ========================================= */

.core-values-section{
    padding:1px 0;
    background:#fff;
    overflow:hidden;
}

.core-values-section .container{
    max-width:1320px;
}

/* ========================================= */
/* HEADING */
/* ========================================= */

.section-heading{
    margin-bottom:-11px;
}

.section-subtitle{
    color:#9333ea;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:34px;
    line-height:1.15;
    font-weight:800;
    color:#111827;
    margin-top:12px;
}

/* ========================================= */
/* VALUES */
/* ========================================= */

.values-row{
    margin-top:17px;
}

/* ========================================= */
/* VALUE CARD */
/* ========================================= */

.value-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:34px 30px;
    height:100%;
    transition:.4s ease;
}

.value-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.value-icon{
    width:177px;
    height:168px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:28px;
}
.value-img{
    width:184px;
    height:187px;
    object-fit:contain;
}

/* ICON COLORS */

.orange-soft{
    background:#fff1e7;
    color:#ff6b00;
}

.purple-soft{
    background:#f3e8ff;
    color:#9333ea;
}

.blue-soft{
    background:#e8f0ff;
    color:#2563eb;
}

.green-soft{
    background:#dcfce7;
    color:#16a34a;
}

.pink-soft{
    background:#ffe4ef;
    color:#ec4899;
}

/* ========================================= */
/* CARD CONTENT */
/* ========================================= */

.value-card h4{
    font-size:30px;
    line-height:1.2;
    font-weight:700;
    color:#111827;
    margin-bottom:14px;
}

.value-card p{
    font-size:17px;
    line-height:1.9;
    color:#4b5563;
    margin:0;
}

/* ========================================= */
/* TEAM SECTION */
/* ========================================= */
.team-section{
    margin-top:60px;
}

/* ========================================= */
/* TEAM ROW */
/* ========================================= */

.team-row{
    margin-top:40px;
}

/* ========================================= */
/* TEAM CARD */
/* ========================================= */

.team-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    height:420px;
    transition:0.4s ease;
}

.team-card:hover{
    transform:translateY(-8px);
}

/* ========================================= */
/* TEAM IMAGE */
/* ========================================= */

.team-image{
    width:100%;
    height:100%;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:22px;
}

/* ========================================= */
/* CONTENT OVER IMAGE */
/* ========================================= */

.team-content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:22px 18px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0)
    );
}

/* NAME */

.team-content h4{
    font-size:24px;
    line-height:1.2;
    font-weight:700;
    color:#ffffff;
    margin-bottom:4px;
}

/* DESIGNATION */

.team-content span{
    display:block;
    color:#ffffff;
    font-size:15px;
    font-weight:500;
    opacity:0.9;
    margin-bottom:0;
}

/* REMOVE PARAGRAPH */

.team-content p{
    display:none;
}

/* REMOVE LINKEDIN ICON */

.linkedin-icon{
    display:none;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1199px){

.team-card{
    height:380px;
}

}

@media(max-width:991px){

.team-card{
    height:360px;
}

.section-heading h2{
    font-size:42px;
}

}

@media(max-width:767px){

.team-card{
    height:340px;
}

.section-heading h2{
    font-size:34px;
}

.team-content h4{
    font-size:22px;
}

}

@media(max-width:575px){

.team-card{
    height:320px;
}

.section-heading h2{
    font-size:28px;
}

.team-content{
    padding:18px 15px;
}

.team-content h4{
    font-size:20px;
}

.team-content span{
    font-size:14px;
}

}

/* ========================================= */
/* LINKEDIN ICON */
/* ========================================= */

.linkedin-icon{
    width:31px;
    height:31px;
    border-radius:10px;
    background:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:.3s ease;
    
}

.linkedin-icon:hover{
    background:#1d4ed8;
    color:#fff;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1400px){

.section-heading h2{
    font-size:46px;
}

.value-card h4{
    font-size:26px;
}

}

@media(max-width:1199px){

.value-card{
    padding:30px 24px;
}

.team-card{
    flex-direction:column;
}

.team-image img{
    width:100%;
    height:280px;
}

}

@media(max-width:991px){

.core-values-section{
    padding:90px 0;
}

.section-heading h2{
    font-size:40px;
}

.team-section{
    margin-top:70px;
}

}

@media(max-width:767px){

.core-values-section{
    padding:70px 0;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h2{
    font-size:34px;
}

.value-card{
    padding:28px 24px;
}

.value-icon{
    width:66px;
    height:66px;
    font-size:24px;
    margin-bottom:22px;
}

.value-card h4{
    font-size:24px;
}

.value-card p{
    font-size:15px;
}

.team-image img{
    height:240px;
}

.team-content h4{
    font-size:22px;
}

}

@media(max-width:575px){

    .section-heading h2{
        font-size:28px;
    }

    .value-card{
        border-radius:20px;
    }

    .team-card{
        border-radius:20px;
        padding:15px;
        padding-right: 1px;
        padding-left:1px;
       overflow:hidden;
    }

    .team-image{
        width:100%;
        height:300px;
        overflow:hidden;
        border-radius:22px;
    }

    .team-image img{
        width:100%;
        height:130%;
        object-fit:cover;
        display:block;
        border-radius:22px;

    }
    .team-content{
        padding-top:15px;
    }

}
/* ========================================= */
/* JOURNEY SECTION */
/* ========================================= */

.journey-section{
    padding:45px 0;
    background:#fff;
    overflow:hidden;
}

.journey-section .container{
    max-width:1320px;
}

/* ========================================= */
/* HEADING */
/* ========================================= */

.journey-heading{
    margin-bottom:65px;
}

.journey-subtitle{
    color:#9333ea;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.journey-heading h2{
    font-size:34px;
    line-height:1.15;
    font-weight:800;
    color:#111827;
    margin-top:12px;
}

/* ========================================= */
/* TIMELINE */
/* ========================================= */

/* ========================================= */
/* TIMELINE WRAPPER */
/* ========================================= */

.timeline-wrapper{
    position:relative;
    margin-top:60px;
    margin-bottom:90px;
    padding-top:10px;
}

/* ========================================= */
/* TIMELINE LINE */
/* ========================================= */

.timeline-line{
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:82%;
    height:2px;
    background:#e5e7eb;
    z-index:1;
}

/* ========================================= */
/* TIMELINE ROW */
/* ========================================= */

.timeline-wrapper .row{
    position:relative;
    z-index:2;
}

/* ========================================= */
/* TIMELINE ITEM */
/* ========================================= */

.timeline-item{
    text-align:center;
    position:relative;
}

/* ========================================= */
/* ICON */
/* ========================================= */

.timeline-icon{
    width:86px;
    height:86px;
    border-radius:50%;
    background:#fff;
    border:3px solid;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 26px;
    position:relative;
    transition:.4s ease;
}

/* INNER WHITE */

.timeline-icon::before{
    content:'';
    position:absolute;
    inset:8px;
    background:#fff;
    border-radius:50%;
}

/* ICON */

.timeline-icon i{
    position:relative;
    z-index:3;
    font-size:30px;
}

/* ========================================= */
/* COLORS */
/* ========================================= */

.orange{
    border-color:#ff6b00;
    color:#ff6b00;
}

.purple{
    border-color:#9333ea;
    color:#9333ea;
}

.blue{
    border-color:#2563eb;
    color:#2563eb;
}

.green{
    border-color:#16a34a;
    color:#16a34a;
}

.pink{
    border-color:#ec4899;
    color:#ec4899;
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.timeline-item h4{
    font-size:25px;
    font-weight:400;
    line-height:1;
    color:#0f172a;
    margin-bottom:22px;
}

.timeline-item p{
    color:#475569;
    font-size:20px;
    line-height:2;
    margin:0;
    font-weight:500;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1199px){

.timeline-line{
    width:88%;
}

.timeline-item h4{
    font-size:34px;
}

.timeline-item p{
    font-size:17px;
}

}

@media(max-width:991px){

.timeline-line{
    display:none;
}

.timeline-wrapper .row{
    row-gap:50px;
}

.timeline-item{
    max-width:260px;
    margin:auto;
}

.timeline-item h4{
    font-size:32px;
}

.timeline-item p{
    font-size:16px;
    line-height:1.8;
}

}

@media(max-width:767px){

.timeline-icon{
    width:74px;
    height:74px;
}

.timeline-icon i{
    font-size:24px;
}

.timeline-item h4{
    font-size:28px;
    margin-bottom:16px;
}

.timeline-item p{
    font-size:15px;
}

}

/* ========================================= */
/* CTA BOX */
/* ========================================= */

.cta-box{
    background:
    linear-gradient(90deg,#04002b 0%,#17004d 40%,#3b0086 100%);
    border-radius:28px;
    padding:41px 11px 40px 55px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    overflow:hidden;
    position:relative;
}

/* Glow */

.cta-box::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:
    radial-gradient(circle,
    rgba(124,58,237,0.35),
    transparent 70%);
    right:-100px;
    top:-120px;
}

/* ========================================= */
/* CTA CONTENT */
/* ========================================= */

.cta-content{
    position:relative;
    z-index:2;
}

.cta-content h2{
    color:#fff;
    font-size:27px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:16px;
}

.cta-content p{
    color:#d1d5db;
    font-size:18px;
    line-height:1.8;
    margin:0;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.cta-button{
    position:relative;
    z-index:2;
}

.consult-btn{
    background:linear-gradient(to right,#ff6b00,#ff8c00);
    color:#fff;
    font-size:16px;
    font-weight:600;
    padding:18px 34px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    gap:14px;
    transition:.4s ease;
    white-space:nowrap;
}

.consult-btn:hover{
    transform:translateY(-5px);
    color:#fff;
    box-shadow:0 15px 35px rgba(255,107,0,0.35);
}

/* ========================================= */
/* CTA IMAGE */
/* ========================================= */

.cta-image{
    position:relative;
    z-index:2;
}

.cta-image img{
    width:360px;
    object-fit:contain;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1400px){

.journey-heading h2{
    font-size:46px;
}

.cta-content h2{
    font-size:36px;
}

}

@media(max-width:1199px){

.timeline-item h4{
    font-size:22px;
}

.timeline-item p{
    font-size:15px;
}

.cta-box{
    padding:50px;
    flex-direction:column;
    text-align:center;
    gap:35px;
}

.cta-image img{
    width:300px;
}

}

@media(max-width:991px){

.journey-section{
    padding:90px 0;
}

.journey-heading{
    margin-bottom:55px;
}

.journey-heading h2{
    font-size:40px;
}

.timeline-line{
    display:none;
}

.timeline-wrapper .row{
    row-gap:40px;
}

.cta-content h2{
    font-size:32px;
}

}

@media(max-width:767px){

.journey-section{
    padding:70px 0;
}

.journey-heading h2{
    font-size:34px;
}

.timeline-icon{
    width:70px;
    height:70px;
    font-size:24px;
}

.timeline-item h4{
    font-size:20px;
}

.timeline-item p{
    font-size:14px;
}

.cta-box{
    padding:40px 28px;
    border-radius:24px;
}

.cta-content h2{
    font-size:28px;
}

.cta-content p{
    font-size:16px;
}

.consult-btn{
    width:100%;
    justify-content:center;
}

.cta-image img{
    width:240px;
}

}

@media(max-width:575px){

.journey-heading h2{
    font-size:28px;
}
.cta-content h2{
    font-size:24px;
    .timeline-wrapper{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:45px;
    }

    .timeline-item{
        width:100%;
        text-align:center;
    }

    .timeline-wrapper{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:45px;
    }
}

}



/* ========================================= */
/* SOCIAL ICONS */
/* ========================================= */

.social-icons{
    display:flex;
    gap:14px;
    margin-top:30px;
}

.social-icons a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.4s ease;
}

.social-icons a:hover{
    background:#ff6b00;
    transform:translateY(-5px);
}

/* ========================================= */
/* FOOTER TITLES */
/* ========================================= */


/* ========================================= */
/* BLOG HERO SECTION */
/* ========================================= */

.blog-hero-section{
    position:relative;
    overflow:hidden;
    background:#020617;
    padding-top:105px;
    padding-bottom:20px;
}

/* ========================================= */
/* BACKGROUND GLOW */
/* ========================================= */

.blog-hero-glow{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at right,
    rgba(124,58,237,0.35),
    transparent 45%);
    z-index:1;
}

.blog-hero-section .container{
    position:relative;
    z-index:3;
    max-width:1320px;
}

/* ========================================= */
/* LEFT CONTENT */
/* ========================================= */

.blog-hero-content{
    position:relative;
    z-index:5;
}

/* Subtitle */

.blog-subtitle{
    color:#fff;
    font-size:15px;
    font-weight:600;
    opacity:.9;
}

/* ========================================= */
/* HEADING */
/* ========================================= */

.blog-hero-content h1{
    color:#fff;
    font-size:37px;
    line-height:1.08;
    font-weight:800;
    margin-top:5px;
    margin-bottom:28px;
    letter-spacing:-1px;
}

.blog-hero-content h1 span{
    color:#ff6b00;
}

/* ========================================= */
/* DESCRIPTION */
/* ========================================= */

.blog-hero-content p{
    color:#d1d5db;
    font-size:22px;
    line-height:1.9;
    margin-bottom:23px;
    max-width:650px;
    margin-top:1px;
}

/* ========================================= */
/* SEARCH BOX */
/* ========================================= */

.blog-search-box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:20px;
    padding:4px;
    max-width:650px;
    box-shadow:
    0 15px 40px rgba(0,0,0,0.2);
}

/* Input Wrapper */

.search-input-wrapper{
    flex:1;
    display:flex;
    align-items:center;
    gap:16px;
    padding-left:18px;
}

/* Search Icon */

.search-input-wrapper i{
    color:#9ca3af;
    font-size:18px;
}

/* Input */

.search-input-wrapper input{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    color:#111827;
    font-size:17px;
    font-weight:500;
}

.search-input-wrapper input::placeholder{
    color:#9ca3af;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.search-btn{
    border:none;
    outline:none;
    background:linear-gradient(to right,#ff6b00,#ff8c00);
    color:#fff;
    font-size:17px;
    font-weight:600;
    padding:18px 42px;
    border-radius:16px;
    transition:.4s ease;
    white-space:nowrap;
}

.search-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,107,0,0.35);
}

/* ========================================= */
/* HERO IMAGE */
/* ========================================= */

.blog-hero-image{
    position:relative;
    text-align:right;
}

.blog-hero-image img{
    width:100%;
    max-width:720px;
    object-fit:contain;
    animation:float 5s ease-in-out infinite;
}

/* ========================================= */
/* FLOAT ANIMATION */
/* ========================================= */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1400px){

.blog-hero-content h1{
    font-size:56px;
}

}

@media(max-width:1199px){

.blog-hero-content h1{
    font-size:45px;
}

.blog-hero-content p{
    font-size:20px;
}

.blog-hero-image img{
    max-width:620px;
}

}

@media(max-width:991px){

.blog-hero-section{
    padding-top:140px;
    padding-bottom:90px;
}

.blog-hero-content{
    text-align:center;
}

.blog-hero-content p{
    margin-left:auto;
    margin-right:auto;
}

.blog-search-box{
    margin:auto;
}

.blog-hero-image{
    text-align:center;
}

.blog-hero-content h1{
    font-size:54px;
}

.blog-hero-image img{
    max-width:580px;
}

}

@media(max-width:767px){

.blog-hero-content h1{
    font-size:44px;
}

.blog-hero-content p{
    font-size:17px;
    line-height:1.8;
}

.blog-search-box{
    flex-direction:column;
    gap:14px;
    padding:16px;
    border-radius:22px;
}

.search-input-wrapper{
    width:100%;
    padding-left:10px;
}

.search-btn{
    width:100%;
    padding:16px;
}

.blog-hero-image img{
    max-width:100%;
}

}

@media(max-width:575px){

.blog-hero-section{
    padding-top:120px;
    padding-bottom:70px;
}

.blog-hero-content h1{
    font-size:36px;
    line-height:1.15;
}

.blog-subtitle{
    font-size:14px;
}

.blog-hero-content p{
    font-size:16px;
}

.search-input-wrapper input{
    font-size:15px;
}

.search-btn{
    font-size:15px;
}

}
/* ========================================= */
/* BLOGS SECTION */
/* ========================================= */

.blogs-main-section{
    padding:21px 0;
    background:#fff;
}

.blogs-main-section .container{
    max-width:1320px;
}

/* ========================================= */
/* FILTER */
/* ========================================= */

.blog-filter-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:40px;
   align-items:center;
   justify-content:center;
   width:100%;
   margin-left: 0px;
   margin-right: 0;
}
.blog-filter-wrapper > *{
    flex-shrink:0;
}



.filter-btn{
    border:1px solid #e5e7eb;
    background:#fff;
    color:#374151;
    padding:13px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.filter-btn.active{
    background:#ff6b00;
    border-color:#ff6b00;
    color:#fff;
}

.filter-btn:hover{
    background:#ff6b00;
    color:#fff;
    border-color:#ff6b00;
}

/* ========================================= */
/* BLOG CARD */
/* ========================================= */

.blog-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    overflow:hidden;
    transition:.4s ease;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

/* IMAGE */

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.05);
}

/* CATEGORY */

.blog-category{
    position:absolute;
    top:16px;
    left:16px;
    padding:8px 14px;
    border-radius:50px;
    color:#fff;
    font-size:12px;
    font-weight:600;
}

/* COLORS */
/* 
.purple{
    background:#7f04f2
}

.green{
    background:#16a34a;
}

.blue{
    background:#2563eb;
}

.yellow{
    background:#f59e0b;
}

.pink{
    background:#ec4899;
}

.orange{
    background:#ff6b00;
} */

/* ========================================= */
/* CONTENT */
/* ========================================= */

.blog-content{
    padding:26px;
}

/* META */

.blog-meta{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}

.blog-meta span{
    color:#6b7280;
    font-size:13px;
    display:flex;
    align-items:center;
    gap:6px;
}

/* TITLE */

.blog-content h3{
    font-size:26px;
    line-height:1.4;
    font-weight:700;
    color:#111827;
    margin-bottom:16px;
}

/* DESC */

.blog-content p{
    color:#4b5563;
    font-size:16px;
    line-height:1.9;
    margin-bottom:22px;
}

/* READ MORE */

.read-more-btn{
    color:#7c3aed;
    font-size:15px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.read-more-btn:hover{
    color:#6d28d9;
}

/* ========================================= */
/* SIDEBAR */
/* ========================================= */

.blog-sidebar{
    display:flex;
    flex-direction:column;
    gap:28px;
}

/* WIDGET */

.sidebar-widget{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:30px;
}

/* HEADING */

.sidebar-widget h4{
    font-size:28px;
    line-height:1.3;
    font-weight:700;
    color:#111827;
    margin-bottom:18px;
}

/* DESC */

.sidebar-widget p{
    color:#4b5563;
    font-size:16px;
    line-height:1.9;
    margin-bottom:22px;
}

/* LEARN MORE */

.learn-more-btn{
    color:#ff6b00;
    font-size:15px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

/* ========================================= */
/* POPULAR POST */
/* ========================================= */

.popular-post{
    display:flex;
    gap:16px;
    margin-bottom:22px;
}

.popular-post:last-child{
    margin-bottom:0;
}

.popular-post img{
    width:95px;
    height:85px;
    object-fit:cover;
    border-radius:14px;
}

.popular-post h5{
    font-size:16px;
    line-height:1.5;
    color:#111827;
    margin-bottom:10px;
    font-weight:700;
}

.popular-post span{
    color:#6b7280;
    font-size:13px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1199px){

.blog-content h3{
    font-size:22px;
}

.sidebar-widget h4{
    font-size:24px;
}

}

@media(max-width:991px){

.blogs-main-section{
    padding:80px 0;
}

.blog-sidebar{
    margin-top:20px;
}

}

@media(max-width:767px){

.blog-filter-wrapper{
    gap:10px;
}

.filter-btn{
    padding:12px 18px;
    font-size:14px;
}

.blog-content{
    padding:22px;
}

.blog-content h3{
    font-size:20px;
}

.blog-content p{
    font-size:15px;
}

.sidebar-widget{
    padding:24px;
}

}

@media(max-width:575px){

.blogs-main-section{
    padding:70px 0;
}

.blog-image img{
    height:220px;
}

.blog-content h3{
    font-size:18px;
}

.blog-meta{
    flex-direction:column;
    align-items:flex-start;
}

.popular-post{
    flex-direction:column;
}

.popular-post img{
    width:100%;
    height:180px;
}
.blog-filter-wrapper{
        gap:10px;
        justify-content:flex-start;
    }

    .filter-btn{
        font-size:14px;
        padding:10px 16px;
    }



}
*{
    box-sizing:border-box;
}
/* ========================================= */
/* SIDEBAR WIDGET */
/* ========================================= */

.sidebar-widget{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:30px;
    margin-bottom:-71px;
    margin-top: 84px;
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.sidebar-widget h4{
    font-size:28px;
    line-height:1.3;
    font-weight:700;
    color:#111827;
    margin-bottom:22px;
}

/* ========================================= */
/* CATEGORY LIST */
/* ========================================= */

.category-list{
    list-style:none;
    padding:0;
    margin:0;
}

/* ITEM */

.category-list li{
    margin-bottom:16px;
}

.category-list li:last-child{
    margin-bottom:0;
}

/* LINK */

.category-list li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    transition:.3s ease;
}

/* LEFT */

.category-left{
    display:flex;
    align-items:center;
    gap:14px;
}

/* ICON */

.category-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
}

/* COLORS */

.green-soft{
    background:#dcfce7;
    color:#16a34a;
}

.blue-soft{
    background:#dbeafe;
    color:#2563eb;
}

.pink-soft{
    background:#ffe4ef;
    color:#ec4899;
}

.yellow-soft{
    background:#fef3c7;
    color:#f59e0b;
}

.orange-soft{
    background:#ffedd5;
    color:#ff6b00;
}

.red-soft{
    background:#fee2e2;
    color:#ef4444;
}

.purple-soft{
    background:#f3e8ff;
    color:#9333ea;
}

/* TEXT */

.category-left span{
    color:#111827;
    font-size:16px;
    font-weight:600;
    transition:.3s ease;
}

/* COUNT */

.category-count{
    min-width:42px;
    height:34px;
    border-radius:50px;
    border:1px solid #e5e7eb;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6b7280;
    font-size:14px;
    font-weight:600;
    transition:.3s ease;
}

/* HOVER */

.category-list li a:hover .category-left span{
    color:#ff6b00;
}

.category-list li a:hover .category-count{
    background:#ff6b00;
    border-color:#ff6b00;
    color:#fff;
}

/* ========================================= */
/* SUBSCRIBE */
/* ========================================= */

.subscribe-widget p{
    color:#4b5563;
    font-size:16px;
    line-height:1.8;
    margin-bottom:24px;
}

/* FORM */

.subscribe-form{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
}

/* INPUT */

.subscribe-form input{
    width:100%;
    height:54px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:0 18px;
    outline:none;
    font-size:15px;
    color:#111827;
    transition:.3s ease;
}

.subscribe-form input:focus{
    border-color:#ff6b00;
}

/* BUTTON */

.subscribe-form button{
    border:none;
    background:linear-gradient(to right,#ff6b00,#ff8c00);
    color:#fff;
    height:54px;
    padding:0 24px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
    transition:.3s ease;
}

.subscribe-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(255,107,0,0.25);
}

/* NOTE */

.subscribe-note{
    display:block;
    color:#9ca3af;
    font-size:13px;
    line-height:1.7;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1199px){

.sidebar-widget{
    padding:26px;
}

.sidebar-widget h4{
    font-size:24px;
}

}

@media(max-width:767px){

.sidebar-widget{
    border-radius:20px;
    padding:24px;
}

.sidebar-widget h4{
    font-size:22px;
}

.category-left span{
    font-size:15px;
}

.subscribe-form{
    flex-direction:column;
}

.subscribe-form button{
    width:100%;
}

}

@media(max-width:575px){

.sidebar-widget{
    padding:22px;
}

.category-icon{
    width:38px;
    height:38px;
    border-radius:10px;
}

.category-count{
    min-width:38px;
    height:32px;
    font-size:13px;
}

.subscribe-form input{
    height:50px;
}

.subscribe-form button{
    height:50px;
}

}
/* ========================================= */
/* PAGINATION */
/* ========================================= */

.blog-pagination-wrapper{
    margin-top:45px;
    display:flex;
    justify-content:center;
}

.blog-pagination{
    display:flex;
    align-items:center;
    gap:14px;
    padding:0;
    margin:0;
    list-style:none;
}

/* LINKS */

.blog-pagination li a{
    width:42px;
    height:42px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111827;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
    background:#fff;
}

/* ACTIVE */

.blog-pagination li a.active{
    background:#ff6b00;
    border-color:#ff6b00;
    color:#fff;
}

/* HOVER */

.blog-pagination li a:hover{
    background:#ff6b00;
    border-color:#ff6b00;
    color:#fff;
}

/* DOTS */

.blog-pagination .dots{
    color:#6b7280;
    font-size:16px;
    font-weight:600;
    padding:0 2px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:575px){

.blog-pagination{
    gap:8px;
    flex-wrap:wrap;
    justify-content:center;
}

.blog-pagination li a{
    width:38px;
    height:38px;
    font-size:14px;
    border-radius:10px;
}

}

/* ========================================= */
/* NEWSLETTER CTA SECTION */
/* ========================================= */

.newsletter-cta-section{
    padding:90px 0;
    background:#fff;
    overflow:hidden;
}

.newsletter-cta-section .container{
    max-width:1320px;
}

/* ========================================= */
/* CTA BOX */
/* ========================================= */

.newsletter-cta-box{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    padding:27px 42px;
    background:
    linear-gradient(90deg,
    #7c3aed 0%,
    #9333ea 30%,
    #ec4899 70%,
    #ff6b00 100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/* Glow Effect */

.newsletter-cta-box::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:
    radial-gradient(circle,
    rgba(255,255,255,0.14),
    transparent 70%);
    top:-180px;
    left:-120px;
}

/* ========================================= */
/* LEFT SIDE */
/* ========================================= */

.newsletter-left{
    display:flex;
    align-items:center;
    gap:28px;
    position:relative;
    z-index:2;
}

/* ICON */

.newsletter-icon img{
    width:160px;
    object-fit:contain;
}

/* CONTENT */

.newsletter-content h2{
    color:#fff;
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:12px;
}

.newsletter-content p{
    color:rgba(255,255,255,0.92);
    font-size:18px;
    line-height:1.9;
    margin:0;
    max-width:580px;
}

/* ========================================= */
/* RIGHT SIDE */
/* ========================================= */

.newsletter-right{
    min-width:470px;
    position:relative;
    z-index:2;
}

/* FORM */



/* INPUT */

.newsletter-form input{
    width:100%;
    height:68px;
    border:none;
    outline:none;
    padding:0 24px;
    color:#111827;
    font-size:16px;
    font-weight:500;
}

.newsletter-form input::placeholder{
    color:#9ca3af;
}

/* BUTTON */

.newsletter-form button{
    border:none;
    height:68px;
    padding:0 34px;
    background:#020617;
    color:#fff;
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
    transition:.3s ease;
}

.newsletter-form button:hover{
    background:#111827;
}

/* NOTE */

.newsletter-note{
    display:block;
    text-align:center;
    color:rgba(255,255,255,0.92);
    font-size:13px;
    margin-top:12px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1400px){

.newsletter-content h2{
    font-size:28px;
}

}

@media(max-width:1199px){

.newsletter-cta-box{
    flex-direction:column;
    align-items:flex-start;
    padding:40px;
}

.newsletter-right{
    width:100%;
    min-width:100%;
}

.newsletter-content h2{
    font-size:28px;
}

}

@media(max-width:991px){

.newsletter-cta-section{
    padding:70px 0;
}

.newsletter-left{
    flex-direction:column;
    align-items:flex-start;
}

.newsletter-content h2{
    font-size:28px;
}

.newsletter-content p{
    font-size:15px;
}

}

@media(max-width:767px){

.newsletter-cta-box{
    padding:32px 24px;
    border-radius:22px;
}

.newsletter-icon img{
    width:120px;
}

.newsletter-form{
    flex-direction:column;
    background:transparent;
    box-shadow:none;
    gap:14px;
}

.newsletter-form input{
    height:58px;
    border-radius:14px;
}

.newsletter-form button{
    width:100%;
    height:58px;
    border-radius:14px;
}

.newsletter-note{
    text-align:left;
}

}

@media(max-width:575px){

.newsletter-content h2{
    font-size:26px;
}

.newsletter-content p{
    font-size:15px;
    line-height:1.8;
}

.newsletter-form input{
    font-size:15px;
}

.newsletter-form button{
    font-size:14px;
}

}
/* ========================================= */
/* CASE HERO SECTION */
/* ========================================= */

.case-hero-section{
    position:relative;
    overflow:hidden;
    background:#020617;
    padding-top:170px;
    padding-bottom:18px;
}

/* ========================================= */
/* GLOW */
/* ========================================= */

.case-hero-glow{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at right,
    rgba(124,58,237,0.35),
    transparent 42%);
    z-index:1;
}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.case-hero-section .container{
    position:relative;
    z-index:3;
    max-width:1320px;
}

/* ========================================= */
/* BREADCRUMB */
/* ========================================= */

.case-breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:-21px;
}

.case-breadcrumb a,
.case-breadcrumb p,
.case-breadcrumb span{
    color: #fff;
    font-size: 18px;
    margin: 0;
    text-decoration: none;
    opacity: .85;
    margin-top: -100px;
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.case-hero-content h1{
    color:#fff;
    font-size:37px;
    line-height:1.08;
    font-weight:800;
    margin-bottom:28px;
    letter-spacing:-1px;
}

.case-hero-content h1 span{
    display:block;
    color:#ff6b00;
    margin-top:4px;
}

/* DESC */

.case-hero-content p{
    color:#d1d5db;
    font-size:18px;
    line-height:1.9;
    max-width:700px;
}

/* ========================================= */
/* STATS */
/* ========================================= */

.case-stats-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:21px;
}

/* CARD */

.case-stat-card{
    background:
    rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
    border-radius:22px;
    padding:25px 15px;
    display:flex;
    align-items:center;
    gap:16px;
    transition:.4s ease;
}
.case-stat-card .case-stat-icon .fa-solid .fa-shield-heart{
        color: yellow;
}
.case-stat-card:hover{
    transform:translateY(-6px);
    background:
    rgba(255,255,255,0.08);
}
.red{
    border-color: #ed0505;
    color: #ed0505;
}
/* ICON */

.case-stat-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}




/* TEXT */

.case-stat-card h3{
    color:#fff;
    font-size:38px;
    line-height:1;
    font-weight:800;
    margin-bottom:10px;
}

.case-stat-card span{
    color:#cbd5e1;
    font-size:15px;
    line-height:1.6;
}

/* ========================================= */
/* IMAGE */
/* ========================================= */

.case-hero-image{
    position:relative;
    text-align:right;
}

.case-hero-image img{
    width:100%;
    max-width:760px;
    object-fit:contain;
    animation:caseFloat 5s ease-in-out infinite;
}

/* ========================================= */
/* FLOAT */
/* ========================================= */

@keyframes caseFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-16px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1400px){

.case-hero-content h1{
    font-size:72px;
}

}

@media(max-width:1199px){

.case-hero-content h1{
    font-size:62px;
}

.case-hero-content p{
    font-size:20px;
}

.case-stats-wrapper{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:991px){

.case-hero-section{
    padding-top:140px;
    padding-bottom:90px;
}

.case-hero-content{
    text-align:center;
}

.case-breadcrumb{
    justify-content:center;
}

.case-hero-content p{
    margin-right: auto;
    /* margin:auto; */
}

.case-stats-wrapper{
    margin-top:40px;
}

.case-hero-image{
    text-align:center;
}

.case-hero-image img{
    max-width:650px;
}

}

@media(max-width:767px){

.case-hero-content h1{
    font-size:46px;
}

.case-hero-content p{
    font-size:17px;
    line-height:1.8;
}

.case-stats-wrapper{
    grid-template-columns:1fr;
    gap:35px;
}

.case-stat-card{
    padding:22px;
}

.case-stat-card h3{
    font-size:32px;
}

.case-stat-icon{
    width:58px;
    height:58px;
    font-size:20px;
}

}

@media(max-width:575px){

.case-hero-section{
    padding-top:120px;
    padding-bottom:70px;
}

.case-hero-content h1{
    font-size:36px;
    line-height:1.15;
}

.case-breadcrumb a,
.case-breadcrumb p,
.case-breadcrumb span{
    font-size:13px;
}

.case-stat-card{
    border-radius:18px;
}

.case-stat-card span{
    font-size:14px;
}

}

/* ===================================================== */
/* COMPLETE CASE STUDIES SECTION CSS */
/* ===================================================== */

.case-studies-main-section{
    padding:34px 0;
    background:#ffffff;
    overflow:hidden;
}

.case-studies-main-section .container{
    max-width:1320px;
}

/* ===================================================== */
/* FILTER BUTTONS */
/* ===================================================== */

.case-filter-wrapper{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:45px;
}

.case-filter-btn{
    height:54px;
    padding:0 28px;
    border-radius:50px;
    border:1px solid #e7e7e7;
    background:#fff;
    color:#111827;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.case-filter-btn.active{
    background:#ff6b00;
    border-color:#ff6b00;
    color:#fff;
}

.case-filter-btn:hover{
    background:#ff6b00;
    border-color:#ff6b00;
    color:#fff;
}

/* ===================================================== */
/* CASE STUDY CARD */
/* ===================================================== */

.case-study-card{
    display:grid;
    grid-template-columns:350px 1fr 310px;
    border:1px solid #ececec;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    margin-bottom:28px;
}

/* ===================================================== */
/* IMAGE */
/* ===================================================== */

.case-study-image{
    position:relative;
    overflow:hidden;
}

.case-study-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.case-study-card:hover .case-study-image img{
    transform:scale(1.04);
}

/* ===================================================== */
/* TAG */
/* ===================================================== */

.case-tag{
    position:absolute;
    top:18px;
    left:18px;
    height:34px;
    padding:0 16px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
}

/* COLORS */

.green-tag{
    background:#16a34a;
}

.orange-tag{
    background:#ff6b00;
}

.purple-tag{
    background:#9333ea;
}

.pink-tag{
    background:#ec4899;
}

.blue-tag{
    background:#2563eb;
}

/* ===================================================== */
/* CONTENT */
/* ===================================================== */

.case-study-content{
    padding:38px 36px;
}

.case-study-content h2{
    color:#111827;
    font-size:34px;
    line-height:1.35;
    font-weight:800;
    margin-bottom:18px;
}

/* ===================================================== */
/* INDUSTRY */
/* ===================================================== */

.industry-text{
    color:#4b5563;
    font-size:15px;
    margin-bottom:24px;
}

.industry-text span{
    color:#16a34a;
    font-weight:700;
}

/* ===================================================== */
/* BLOCK */
/* ===================================================== */

.case-block{
    margin-bottom:22px;
}

.case-block h4{
    color:#111827;
    font-size:16px;
    font-weight:700;
    margin-bottom:10px;
}

.case-block p{
    color:#4b5563;
    font-size:15px;
    line-height:1.9;
    margin:0;
}

/* ===================================================== */
/* SOLUTION TITLE */
/* ===================================================== */

.solution-title{
    font-weight:700;
}

.green-text{
    color:#16a34a !important;
}

.orange-text{
    color:#ff6b00 !important;
}

.purple-text{
    color:#9333ea !important;
}

.pink-text{
    color:#ec4899 !important;
}

.blue-text{
    color:#2563eb !important;
}

/* ===================================================== */
/* SOLUTION LIST */
/* ===================================================== */

.solution-list{
    list-style:none;
    padding:0;
    margin:0;
}

.solution-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#374151;
    font-size:15px;
    line-height:1.9;
    margin-bottom:10px;
}

/* ICON COLORS */

.green-list li i{
    color:#16a34a;
}

.orange-list li i{
    color:#ff6b00;
}

.purple-list li i{
    color:#9333ea;
}

.pink-list li i{
    color:#ec4899;
}

.blue-list li i{
    color:#2563eb;
}

/* ===================================================== */
/* RESULTS */
/* ===================================================== */

.case-study-results{
    border-left:1px solid #ececec;
    padding:91px 30px;
}

.case-study-results h3{
    font-size:24px;
    font-weight:800;
    margin-bottom:28px;
}

/* HEADING COLORS */

.orange-heading{
    color:#ff6b00;
}

.purple-heading{
    color:#9333ea;
}

.pink-heading{
    color:#ec4899;
}

.blue-heading{
    color:#2563eb;
}
.green-heading{
    color:#16a34a;
}
/* ===================================================== */
/* RESULT ITEM */
/* ===================================================== */

.result-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:24px;
}

.result-item i{
    font-size:20px;
    margin-top:5px;
}

/* ICON COLORS */

.orange-icon{
    color:#ff6b00;
}

.purple-icon{
    color:#9333ea;
}

.pink-icon{
    color:#ec4899;
}

.blue-icon{
    color:#2563eb;
}
.green-icon{
    color:#16a34a;
}

/* RESULT TEXT */

.result-item h4{
    color:#111827;
    font-size:24px;
    font-weight:800;
    margin-bottom:4px;
}

.result-item p{
    color:#4b5563;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.case-study-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#7c3aed;
    font-size:15px;
    font-weight:700;
    margin-top:10px;
    transition:.3s ease;
}

.case-study-btn:hover{
    color:#6d28d9;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1400px){

.case-study-card{
    grid-template-columns:320px 1fr 290px;
}

.case-study-content h2{
    font-size:30px;
}

}

@media(max-width:1199px){

.case-study-card{
    grid-template-columns:1fr;
}

.case-study-results{
    border-left:none;
    border-top:1px solid #ececec;
}

.case-study-image img{
    height:380px;
}

}

@media(max-width:991px){

.case-studies-main-section{
    padding:80px 0;
}

.case-study-content{
    padding:30px;
}

.case-study-results{
    padding:30px;
}

.case-study-content h2{
    font-size:28px;
}

}

@media(max-width:767px){

.case-filter-wrapper{
    gap:12px;
}

.case-filter-btn{
    height:48px;
    padding:0 20px;
    font-size:14px;
}

.case-study-image img{
    height:280px;
}

.case-study-content h2{
    font-size:24px;
}

.case-study-results h3{
    font-size:22px;
}

.result-item h4{
    font-size:20px;
}

}

@media(max-width:575px){

.case-studies-main-section{
    padding:70px 0;
}

.case-study-content,
.case-study-results{
    padding:24px;
}

.case-study-image img{
    height:220px;
}

.case-study-content h2{
    font-size:21px;
}

.case-block p,
.solution-list li{
    font-size:14px;
}

.result-item{
    gap:12px;
}

.result-item i{
    font-size:18px;
}

.result-item h4{
    font-size:18px;
}

.case-study-btn{
    font-size:14px;
}

}
/* ===================================================== */
/* CASE CTA SECTION */
/* ===================================================== */

.case-cta-section{
    padding-top:40px;
    padding-bottom:100px;
    background:#fff;
    overflow:hidden;
}

/* ===================================================== */
/* CONTAINER */
/* ===================================================== */

.case-cta-section .container{
    max-width:1320px;
}

/* ===================================================== */
/* CTA BOX */
/* ===================================================== */

.case-cta-box{
    position:relative;
    overflow:hidden;
    min-height:165px;
    border-radius:22px;
    padding:38px 55px;
    background:
    linear-gradient(90deg,
    #09002d 0%,
    #23005d 35%,
    #4c1d95 70%,
    #6d28d9 100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    border:1px solid rgba(255,255,255,0.08);
    height:0px;
}

/* Glow Effect */

.case-cta-box::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:
    radial-gradient(circle,
    rgba(255,255,255,0.08),
    transparent 70%);
    right:-150px;
    top:-220px;
}

/* ===================================================== */
/* CONTENT */
/* ===================================================== */

.case-cta-content{
    position:relative;
    z-index:3;
}

/* TITLE */

.case-cta-content h2{
    color:#fff;
    font-size:23px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:14px;
    letter-spacing:-.5px;
}

/* TEXT */

.case-cta-content p{
    color:rgba(255,255,255,0.88);
    font-size:15px;
    line-height:1.8;
    margin-bottom:2px;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.case-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    height:37px;
    padding:0 14px;
    border-radius:14px;
    background:
    linear-gradient(to right,
    #ff6b00,
    #ff8c00);
    color:#fff;
    font-size:16px;
    font-weight:700;
    transition:.35s ease;
}

.case-cta-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:
    0 15px 35px rgba(255,107,0,0.35);
}

/* ===================================================== */
/* IMAGE */
/* ===================================================== */

.case-cta-image{
    position:absolute;
    right:0;
    bottom:0;
    height:100%;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
    z-index:2;
}

.case-cta-image img{
    height:auto;
    max-height:165px;
    width:auto;
    object-fit:contain;
    display:block;
    max-width:100%;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1400px){

.case-cta-content h2{
    font-size:38px;
}

}

@media(max-width:1199px){

.case-cta-box{
    padding:38px 40px;
}

.case-cta-content h2{
    font-size:23px;
}

.case-cta-image img{
    max-height:155px;
}

}

@media(max-width:991px){

.case-cta-section{
    padding-bottom:80px;
}

.case-cta-box{
    flex-direction:column;
    align-items:flex-start;
    min-height:auto;
    padding:40px 35px 220px;
}

.case-cta-image{
    width:100%;
    justify-content:center;
}

.case-cta-image img{
    max-height:200px;
}

}

@media(max-width:767px){

.case-cta-box{
    padding:34px 24px 190px;
    border-radius:18px;
}

.case-cta-content h2{
    font-size:23px;
}

.case-cta-content p{
    font-size:16px;
}

.case-cta-btn{
    width:100%;
    height:54px;
    font-size:15px;
}

.case-cta-image img{
    max-height:180px;
}

}

@media(max-width:575px){

.case-cta-section{
    padding-bottom:70px;
}
.case-cta-content{
    position:relative;
    z-index:2;
    width:100%;
}
.case-cta-content h2{
    font-size:24px;
    line-height:1.3;
    margin-bottom:18px;

}

.case-cta-content p{
     font-size:16px;
    line-height:1.7;
    max-width:230px;
    margin-bottom:25px;
}

.case-cta-box{
   padding:35px 25px;
    min-height:420px;
    border-radius:25px;
    position:relative;
    overflow:hidden;
}
.case-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:220px;
    height:55px;
    border-radius:50px;
}
 .case-cta-image{
    position:absolute;
    right:-30px;
    bottom:0;
    width:210px;
    opacity:0.95;
}   

.case-cta-image img{
    width:100%;
    height:auto;
     padding:0px 0px;
     padding-right: 1px;
     padding-left: 1px;
}

}
/* ===================================================== */
/* CONTACT HERO SECTION */
/* ===================================================== */

.contact-hero-section{
    position:relative;
    overflow:hidden;
    background:#020617;
    padding-top:170px;
    padding-bottom:0px;
}

/* ===================================================== */
/* GLOW */
/* ===================================================== */

.contact-hero-glow{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at right,
    rgba(147,51,234,0.35),
    transparent 42%);
    z-index:1;
}

/* ===================================================== */
/* CONTAINER */
/* ===================================================== */

.contact-hero-section .container{
    position:relative;
    z-index:3;
    max-width:1320px;
}

/* ===================================================== */
/* BREADCRUMB */
/* ===================================================== */

.contact-breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:-34px;
}

.contact-breadcrumb a,
.contact-breadcrumb p,
.contact-breadcrumb span{
    color:#fff;
    font-size:15px;
    font-weight:500;
    opacity:.9;
    margin-top:-116px;
    text-decoration:none;
}

/* ===================================================== */
/* TITLE */
/* ===================================================== */

.contact-hero-content h1{
    color:#fff;
    font-size:37px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:18px;
    letter-spacing:-1px;
}

/* ===================================================== */
/* SUBTITLE */
/* ===================================================== */

.contact-hero-content h2{
    font-size:40px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:28px;
    background:
    linear-gradient(to right,
    #ff6b00,
    #ec4899,
    #9333ea);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ===================================================== */
/* DESCRIPTION */
/* ===================================================== */

.contact-hero-content p{
    color:#d1d5db;
    font-size:21px;
    line-height:1.9;
    max-width:700px;
    margin-bottom:1px;
}

/* ===================================================== */
/* FEATURES */
/* ===================================================== */

.contact-feature-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding: 60px 0px;
}

/* ===================================================== */
/* FEATURE CARD */
/* ===================================================== */

.contact-feature-card{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

/* ===================================================== */
/* ICON */
/* ===================================================== */

.feature-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

/* COLORS */

.purple-bg{
    background:
    linear-gradient(135deg,#9333ea,#7c3aed);
    color:#fff;
}

.orange-bg{
    background:
    linear-gradient(135deg,#ff6b00,#ff8c00);
    color:#fff;
}

.blue-bg{
    background:
    linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff;
}

.green-bg{
    background:
    linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
}

/* ===================================================== */
/* TEXT */
/* ===================================================== */

.contact-feature-card h4{
    color:#fff;
    font-size:22px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:8px;
}

.contact-feature-card span{
    color:#cbd5e1;
    font-size:15px;
    line-height:1.7;
}

/* ===================================================== */
/* IMAGE */
/* ===================================================== */

.contact-hero-image{
    position:relative;
    text-align:right;
}

.contact-hero-image img{
    width:127%;
    max-width:800px;
    object-fit:contain;
    animation:contactFloat 5s ease-in-out infinite;
}

/* ===================================================== */
/* FLOAT */
/* ===================================================== */

@keyframes contactFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-16px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1400px){

.contact-hero-content h1{
    font-size:72px;
}

.contact-hero-content h2{
    font-size:50px;
}

}

@media(max-width:1199px){

.contact-hero-content h1{
    font-size:62px;
}

.contact-hero-content h2{
    font-size:42px;
}

.contact-feature-wrapper{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:991px){

.contact-hero-section{
    padding-top:140px;
    padding-bottom:90px;
}

.contact-hero-content{
    text-align:center;
}

.contact-breadcrumb{
    justify-content:center;
}

.contact-hero-content p{
    /* margin-left:auto; */
    margin-right:auto;
}

.contact-feature-wrapper{
    margin-top:10px;
}

.contact-hero-image{
    text-align:center;
}

.contact-hero-image img{
    max-width:620px;
}

}

@media(max-width:767px){

.contact-hero-content h1{
    font-size:46px;
}

.contact-hero-content h2{
    font-size:34px;
}

.contact-hero-content p{
    font-size:17px;
    line-height:1.8;
}

.contact-feature-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.feature-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    font-size:24px;
}

.contact-feature-card h4{
    font-size:20px;
}

}

@media(max-width:575px){

.contact-hero-section{
    padding-top:120px;
    padding-bottom:70px;
}

.contact-hero-content h1{
    font-size:36px;
    margin-bottom:18px;
}

.contact-hero-content h2{
    font-size:28px;
    line-height:1.3;
}

.contact-breadcrumb a,
.contact-breadcrumb p,
.contact-breadcrumb span{
    font-size:13px;
}

.contact-feature-card h4{
    font-size:18px;
}

.contact-feature-card span{
    font-size:14px;
}

.contact-hero-image img{
    max-width:100%;
}

}
/* ===================================================== */
/* CONTACT FORM SECTION */
/* ===================================================== */

.contact-form-section{
    padding:9px 0;
    background:#ffffff;
}

.contact-form-section .container{
    max-width:1320px;
}

/* ===================================================== */
/* LEFT SIDE */
/* ===================================================== */

.contact-info-wrapper{
    height:100%;
}

/* TITLE */

.contact-info-title{
    margin-bottom:30px;
}

.contact-info-title h2{
    color:#111827;
    font-size:40px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:14px;
    margin-top:27px;
}

.contact-info-title p{
    color:#4b5563;
    font-size:16px;
    line-height:1.9;
    margin:0;
}

/* ===================================================== */
/* INFO CARD */
/* ===================================================== */

.contact-info-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:28px;
    border:1px solid #ececec;
    border-radius:22px;
    background:#fff;
    margin-bottom:22px;
    transition:.35s ease;
}

.contact-info-card:hover{
    transform:translateY(-5px);
    box-shadow:
    0 15px 35px rgba(0,0,0,0.05);
}

/* ICON */

.contact-info-icon{
    width:68px;
    height:68px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
}

/* COLORS */

.purple-soft{
    background:#f3e8ff;
    color:#9333ea;
}

.orange-soft{
    background:#ffedd5;
    color:#ff6b00;
}

.blue-soft{
    background:#dbeafe;
    color:#2563eb;
}

.green-soft{
    background:#dcfce7;
    color:#16a34a;
}

/* TEXT */

.contact-info-card h4{
    color:#111827;
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-info-card h5{
    color:#111827;
    font-size:20px;
    line-height:1.7;
    font-weight:700;
    margin-bottom:6px;
}

.contact-info-card span{
    color:#6b7280;
    font-size:15px;
    line-height:1.7;
}

/* ===================================================== */
/* FORM WRAPPER */
/* ===================================================== */

.contact-form-wrapper{
    border:1px solid #ececec;
    border-radius:24px;
    padding:42px;
    background:#fff;
    height:100%;
}

/* TITLE */

.contact-form-title{
    margin-bottom:32px;
}

.contact-form-title h2{
    color:#111827;
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    position:relative;
    padding-bottom:18px;
}

.contact-form-title h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:4px;
    border-radius:50px;
    background:#ff6b00;
}

/* ===================================================== */
/* FORM GROUP */
/* ===================================================== */

.form-group label{
    display:block;
    color:#111827;
    font-size:15px;
    font-weight:600;
    margin-bottom:12px;
}

.form-group label span{
    color:#ef4444;
}

/* INPUT */

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #e5e7eb;
    background:#fff;
    border-radius:14px;
    padding:0 20px;
    color:#111827;
    font-size:15px;
    transition:.3s ease;
    outline:none;
}

/* INPUT HEIGHT */

.form-group input{
    height:60px;
}

/* TEXTAREA */

.form-group textarea{
    height:180px;
    resize:none;
    padding-top:18px;
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus{
    border-color:#9333ea;
    box-shadow:
    0 0 0 4px rgba(147,51,234,0.08);
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.contact-submit-btn{
    border:none;
    height:60px;
    padding:0 34px;
    border-radius:14px;
    background:
    linear-gradient(to right,
    #9333ea,
    #ec4899,
    #ff6b00);
    color:#fff;
    font-size:16px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    transition:.35s ease;
}

.contact-submit-btn:hover{
    transform:translateY(-4px);
    box-shadow:
    0 15px 35px rgba(147,51,234,0.25);
}

/* ===================================================== */
/* NOTE */
/* ===================================================== */

.contact-note{
    display:flex;
    align-items:center;
    gap:10px;
    color:#6b7280;
    font-size:14px;
    margin-top:4px;
}

.contact-note i{
    color:#16a34a;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1400px){

.contact-info-title h2,
.contact-form-title h2{
    font-size:38px;
}

}

@media(max-width:1199px){

.contact-form-wrapper{
    padding:36px;
}

.contact-info-card{
    padding:24px;
}

}

@media(max-width:991px){

.contact-form-section{
    padding:80px 0;
}

.contact-info-wrapper{
    margin-bottom:10px;
}

}

@media(max-width:767px){

.contact-info-title h2,
.contact-form-title h2{
    font-size:32px;
}

.contact-form-wrapper{
    padding:28px;
}

.contact-info-card{
    gap:16px;
    padding:22px;
}

.contact-info-icon{
    width:60px;
    height:60px;
    font-size:22px;
}

.contact-info-card h4{
    font-size:18px;
}

.contact-info-card h5{
    font-size:17px;
}

.contact-submit-btn{
    width:100%;
}

}

@media(max-width:575px){

.contact-form-section{
    padding:70px 0;
}

.contact-form-wrapper{
    padding:22px;
    border-radius:20px;
}

.contact-info-card{
    flex-direction:column;
}

.contact-info-title h2,
.contact-form-title h2{
    font-size:28px;
}

.contact-info-title p{
    font-size:15px;
}

.form-group input{
    height:54px;
}

.form-group textarea{
    height:160px;
}

.contact-submit-btn{
    height:56px;
    font-size:15px;
}

.contact-note{
    align-items:flex-start;
    line-height:1.7;
}

}
/* ===================================================== */
/* OFFICE FAQ SECTION */
/* ===================================================== */

.office-faq-section{
    padding:100px 0;
    background:#ffffff;
    overflow:hidden;
}

.office-faq-section .container{
    max-width:1320px;
}

/* ===================================================== */
/* TOP WRAPPER */
/* ===================================================== */

.office-map-wrapper{
    display:grid;
    grid-template-columns:370px 1fr;
    gap:28px;
    margin-bottom:70px;
}

/* ===================================================== */
/* OFFICE INFO */
/* ===================================================== */

.office-info-box{
    border:1px solid #ececec;
    border-radius:24px;
    padding:40px;
    background:#fff;
    height:100%;
    margin-top:12px;
}

/* TITLE */

.office-info-box h2{
    color:#111827;
    font-size:33px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:18px;
    position:relative;
    padding-bottom:16px;
}

.office-info-box h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:4px;
    border-radius:50px;
    background:#ff6b00;
}

/* TEXT */

.office-info-box p{
    color:#4b5563;
    font-size:16px;
    line-height:1.9;
    margin-bottom:30px;
}

/* ===================================================== */
/* FEATURE LIST */
/* ===================================================== */

.office-feature-list{
    list-style:none;
    padding:0;
    margin:0 0 34px;
}

.office-feature-list li{
    display:flex;
    align-items:center;
    gap:14px;
    color:#111827;
    font-size:16px;
    font-weight:500;
    margin-bottom:18px;
}

.office-feature-list li i{
    color:#7c3aed;
    font-size:18px;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.office-direction-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    height:58px;
    padding:0 30px;
    border-radius:14px;
    background:
    linear-gradient(to right,
    #7c3aed,
    #9333ea);
    color:#fff;
    font-size:16px;
    font-weight:700;
    transition:.35s ease;
}

.office-direction-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:
    0 14px 34px rgba(124,58,237,0.25);
}

/* ===================================================== */
/* MAP */
/* ===================================================== */

.office-map-box{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    min-height:420px;
}

.office-map-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ===================================================== */
/* MAP CARD */
/* ===================================================== */

.map-location-card{
    position:absolute;
    top:70px;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    border-radius:18px;
    padding:22px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    box-shadow:
    0 20px 45px rgba(0,0,0,0.12);
    width:320px;
}

/* PIN */

.map-pin{
    width:54px;
    height:54px;
    border-radius:16px;
    background:#f3e8ff;
    color:#7c3aed;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

/* TEXT */

.map-location-card h4{
    color:#111827;
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}

.map-location-card p{
    color:#4b5563;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

/* ===================================================== */
/* FAQ TITLE */
/* ===================================================== */

.faq-title{
    text-align:center;
    margin-bottom:40px;
}

.faq-title h2{
    color:#111827;
    font-size:40px;
    line-height:1.2;
    font-weight:800;
}

/* ===================================================== */
/* FAQ CARD */
/* ===================================================== */

.faq-card{
    border:1px solid #ececec;
    border-radius:22px;
    padding:30px;
    background:#fff;
    height:100%;
    transition:.35s ease;
}

.faq-card:hover{
    transform:translateY(-6px);
    box-shadow:
    0 18px 40px rgba(0,0,0,0.05);
}

/* ===================================================== */
/* ICON */
/* ===================================================== */

.faq-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:22px;
}

/* COLORS */

.purple-soft{
    background:#f3e8ff;
    color:#9333ea;
}

.orange-soft{
    background:#ffedd5;
    color:#ff6b00;
}

.blue-soft{
    background:#dbeafe;
    color:#2563eb;
}

.green-soft{
    background:#dcfce7;
    color:#16a34a;
}

/* ===================================================== */
/* TEXT */
/* ===================================================== */

.faq-card h4{
    color:#111827;
    font-size:22px;
    line-height:1.5;
    font-weight:700;
    margin-bottom:16px;
}

.faq-card p{
    color:#4b5563;
    font-size:15px;
    line-height:1.9;
    margin:0;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1400px){

.office-info-box h2,
.faq-title h2{
    font-size:38px;
}

}

@media(max-width:1199px){

.office-map-wrapper{
    grid-template-columns:1fr;
}

.office-map-box{
    min-height:380px;
}

}

@media(max-width:991px){

.office-faq-section{
    padding:80px 0;
}

.office-info-box{
    padding:34px;
}

.map-location-card{
    top:40px;
}

}

@media(max-width:767px){

.office-info-box h2,
.faq-title h2{
    font-size:32px;
}

.office-map-box{
    min-height:320px;
}

.map-location-card{
    width:280px;
    padding:18px;
}

.map-pin{
    width:48px;
    height:48px;
    font-size:20px;
}

.faq-card{
    padding:26px;
}

.faq-card h4{
    font-size:20px;
}

}

@media(max-width:575px){

.office-faq-section{
    padding:70px 0;
}

.office-info-box{
    padding:26px;
    border-radius:20px;
}

.office-map-box{
    min-height:280px;
    border-radius:20px;
}

.office-info-box h2,
.faq-title h2{
    font-size:28px;
}

.office-info-box p,
.office-feature-list li,
.faq-card p{
    font-size:14px;
}

.office-direction-btn{
    width:100%;
    height:54px;
    font-size:15px;
}

.map-location-card{
    width:230px;
    left:20px;
    transform:none;
}

.map-location-card h4{
    font-size:17px;
}

.map-location-card p{
    font-size:13px;
}

.faq-card{
    padding:22px;
}

.faq-icon{
    width:56px;
    height:56px;
    font-size:20px;
}

.faq-card h4{
    font-size:18px;
}

}
/* ===================================================== */
/* BUSINESS CTA SECTION */
/* ===================================================== */

.business-cta-section{
    padding-top:40px;
    padding-bottom:100px;
    background:#ffffff;
    overflow:hidden;
}

/* ===================================================== */
/* CONTAINER */
/* ===================================================== */

.business-cta-section .container{
    max-width:1320px;
}

/* ===================================================== */
/* CTA BOX */
/* ===================================================== */

.business-cta-box{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    min-height:175px;
    padding:4px 48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:
    linear-gradient(90deg,
    #6d28d9 0%,
    #7c3aed 22%,
    #9333ea 42%,
    #ec4899 72%,
    #ff6b00 100%);
}

/* ===================================================== */
/* GLOW */
/* ===================================================== */

.business-cta-box::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    right:-120px;
    top:-250px;
    background:
    radial-gradient(circle,
    rgba(255,255,255,0.16),
    transparent 70%);
}

/* ===================================================== */
/* CONTENT */
/* ===================================================== */

.business-cta-content{
    position:relative;
    z-index:3;
    max-width:520px;
}

/* TITLE */

.business-cta-content h2{
    color:#ffffff;
    font-size:30px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:-2px;
    letter-spacing:-.5px;
}

/* TEXT */

.business-cta-content p{
    color:rgba(255,255,255,0.88);
    font-size:18px;
    line-height:1.8;
    margin-bottom:28px;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.business-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    height:58px;
    padding:0 30px;
    border-radius:14px;
    background:#ff6b00;
    color:#fff;
    font-size:16px;
    font-weight:700;
    transition:.35s ease;
}

.business-cta-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:
    0 15px 35px rgba(255,107,0,0.35);
}

/* ===================================================== */
/* IMAGE */
/* ===================================================== */

.business-cta-image{
    position:absolute;
    right:0;
    bottom:0;
    height:100%;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
    z-index:2;
}

.business-cta-image img{
    height:100%;
    max-height:175px;
    width:auto;
    object-fit:contain;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1400px){

.business-cta-content h2{
    font-size:42px;
}

}

@media(max-width:1199px){

.business-cta-box{
    padding:40px;
}

.business-cta-content h2{
    font-size:38px;
}

.business-cta-image img{
    max-height:165px;
}

}

@media(max-width:991px){

.business-cta-section{
    padding-bottom:80px;
}

.business-cta-box{
    flex-direction:column;
    align-items:flex-start;
    min-height:auto;
    padding:40px 34px 220px;
}

.business-cta-image{
    width:100%;
    justify-content:center;
}

.business-cta-image img{
    max-height:210px;
}

}

@media(max-width:767px){

.business-cta-box{
    padding:34px 24px 190px;
    border-radius:20px;
}

.business-cta-content h2{
    font-size:30px;
}

.business-cta-content p{
    font-size:16px;
}

.business-cta-btn{
    width:100%;
    height:54px;
    font-size:15px;
}

.business-cta-image img{
    max-height:180px;
}

}

@media(max-width:575px){

.business-cta-section{
    padding-bottom:70px;
}

.business-cta-content h2{
    font-size:26px;
    line-height:1.3;
}

.business-cta-content p{
    font-size:15px;
    margin-bottom:22px;
}

.business-cta-box{
    padding-bottom:170px;
}

.business-cta-image img{
    max-height:160px;
}

}
/* ===================================================
   GLOBAL
=================================================== */


/* ===================================================
   HERO SECTION
=================================================== */

.digital-shape-hero{
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at top right, rgba(123,44,255,.25), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,106,0,.15), transparent 25%),
    linear-gradient(90deg,#020617 0%, #050a1c 40%, #070b23 100%);
    padding:56px 0;
}

.digital-shape-hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(123,44,255,.15), transparent 70%);
    top:-200px;
    right:-100px;
}
.dg-shape{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:0px;
  
}
/* ===================================================
   CONTENT
=================================================== */

.hero-content{
    position:relative;
    z-index:2;
}

/* ===================================================
   BREADCRUMB
=================================================== */

.breadcrumb-custom{
    margin-bottom:20px;
}

.breadcrumb-custom a,
.breadcrumb-custom span,
.breadcrumb-custom i{
    color:#cbd5e1;
    font-size:14px;
    text-decoration:none;
}

/* ===================================================
   MINI TITLE
=================================================== */

.hero-mini-title{
    color:#b54cff;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

/* ===================================================
   TITLE
=================================================== */

.hero-title{
    font-size:65px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hero-title span{
    display:block;
    color:#ff6b00;
}

/* ===================================================
   DESCRIPTION
=================================================== */

.hero-description{
    color:#d4d4d8;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:620px;
}

/* ===================================================
   FEATURES
=================================================== */

.dg-shape{
    margin-bottom:35px;
    row-gap:10px;
}


.feature-box{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    font-weight:500;
}

.feature-box i{
    width:64px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.feature-orange i{
    background:rgba(255,106,0,.15);
    border:1px solid rgba(255,106,0,.4);
    color:#ff6b00;
}

.feature-purple i{
    background:rgba(180,76,255,.15);
    border:1px solid rgba(180,76,255,.4);
    color:#b54cff;
}

.feature-blue i{
    background:rgba(0,153,255,.15);
    border:1px solid rgba(0,153,255,.4);
    color:#1d9cff;
}

.feature-green i{
    background:rgba(0,255,163,.15);
    border:1px solid rgba(0,255,163,.4);
    color:#00d68f;
}
@media(max-width:575px){

    .feature-box{
        display:flex;
        align-items:center;
        gap:14px;
        margin-top:17px;
    }

    .feature-box span{
        font-size:18px;
        line-height:1.4;
    }

}

/* ===================================================
   STATS
=================================================== */

.hero-stats{
    margin-bottom:40px;
}

.stat-card{
    background:rgba(8,15,35,.85);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:-1px 18px;
    text-align:center;
    height:100%;
    backdrop-filter:blur(12px);
    transition:.4s;
    padding-bottom: 1px;
    padding-top:15px;
    margin-top:33px;
    margin-bottom: 1px;
}

.stat-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,106,0,.4);
}

.stat-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    margin:auto;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.stat-orange{
    background:rgba(255,106,0,.15);
    color:#ff6b00;
}

.stat-purple{
    background:rgba(180,76,255,.15);
    color:#b54cff;
}

.stat-yellow{
    background:rgba(255,184,0,.15);
    color:#ffb800;
}

.stat-blue{
    background:rgba(0,153,255,.15);
    color:#1d9cff;
}

.stat-card h3{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin-bottom:8px;
}

.stat-card p{
    color:#a1a1aa;
    font-size:14px;
    margin:0;
}

/* ===================================================
   BUTTONS
=================================================== */

.btn-orange-custom{
    background:linear-gradient(90deg,#ff6b00,#ff8c1a);
    color:#fff;
    padding:16px 32px;
    border-radius:14px;
    font-weight:600;
    border:none;
    margin-bottom:2px;
    margin-top:52px;
}

.btn-orange-custom:hover{
    color:#fff;
    background:linear-gradient(90deg,#ff7b1c,#ff6b00);
}

.btn-outline-custom{
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    padding:16px 32px;
    border-radius:14px;
    font-weight:600;
    background:transparent;
    margin-top: 49px;
    margin-bottom:3px;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#000;
}

/* ===================================================
   IMAGE
=================================================== */

.hero-image{
    position:relative;
    z-index:2;
}

.hero-main-img{
    width:100%;
    max-width:720px;
    object-fit:contain;
    animation:floatImage 4s ease-in-out infinite;
}

/* ===================================================
   FLOAT ANIMATION
=================================================== */

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:1199px){

    .hero-title{
        font-size:54px;
    }

}

@media(max-width:991px){

    .digital-shape-hero{
        padding:80px 0;
    }

    .hero-content{
        text-align:center;
    }

    .hero-description{
        margin:auto auto 35px;
    }

    .hero-image{
        margin-top:50px;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:42px;
    }

    .hero-description{
        font-size:16px;
    }

}

@media(max-width:575px){

    .digital-shape-hero{
        padding:70px 0;
    }

    .hero-title{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-orange-custom,
    .btn-outline-custom{
        width:100%;
        margin-top:23px;
    }

    .stat-card{
        padding:20px 15px;
    }

}
/* ===================================================== */
/* DS TRANSFORMATION SECTION */
/* ===================================================== */

.ds-transform-section{
    padding:40px 0;
    background:#ffffff;
}

/* ===================================================== */
/* HEADING */
/* ===================================================== */

.ds-transform-heading{
    max-width:720px;
    margin:auto;
    margin-bottom:55px;
}

.ds-transform-heading span{
    font-size:15px;
    font-weight:700;
    color:#8b3dff;
    letter-spacing:.8px;
    display:inline-block;
    margin-bottom:10px;
}

.ds-transform-heading h2{
    font-size:24px;
    font-weight:600;
    color:#111827;
    line-height:1.25;
    margin-bottom:16px;
}

.ds-transform-heading p{
    font-size:21px;
    color:#6b7280;
    line-height:1.9;
    margin:0;
}

/* ===================================================== */
/* CARD */
/* ===================================================== */

.ds-box-card{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:22px;
    padding:42px 28px;
    text-align:center;
    height:100%;
    transition:.4s ease;
}

.ds-box-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* ===================================================== */
/* ICON */
/* ===================================================== */

.ds-box-icon{
    width:74px;
    height:74px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:26px;
}

.ds-box-icon i{
    font-size:34px;
    color:#fff;
}

/* ===================================================== */
/* ICON COLORS */
/* ===================================================== */

.ds-orange-icon{
    background:#ff6b00;
}

.ds-purple-icon{
    background:#8b3dff;
}

.ds-blue-icon{
    background:#1666ff;
}

.ds-green-icon{
    background:#75d701;
}

/* ===================================================== */
/* CARD CONTENT */
/* ===================================================== */

.ds-box-card h3{
    font-size:25px;
    font-weight:600;
    color:#111827;
    margin-bottom:18px;
}

.ds-box-card p{
    font-size:16px;
    font-weight:500;
    line-height:1.9;
    color:#6b7280;
    margin:0;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:991px){

    .ds-transform-heading h2{
        font-size:34px;
    }

    .ds-box-card{
        padding:36px 24px;
    }

}

@media(max-width:767px){

    .ds-transform-section{
        padding:70px 0;
    }

    .ds-transform-heading{
        margin-bottom:40px;
    }

    .ds-transform-heading h2{
        font-size:28px;
        line-height:1.4;
    }

    .ds-transform-heading p{
        font-size:15px;
    }

    .ds-box-card{
        padding:34px 22px;
    }

    .ds-box-card h3{
        font-size:24px;
    }

}

@media(max-width:575px){

    .ds-transform-heading h2{
        font-size:24px;
    }

    .ds-transform-heading p{
        line-height:1.8;
    }

    .ds-box-card{
        border-radius:20px;
    }

}
/* ===================================================== */
/* DS SOLUTIONS SECTION */
/* ===================================================== */

.ds-solutions-area{
    padding:15px 0;
    background:#ffffff;
}

/* ===================================================== */
/* HEADING */
/* ===================================================== */

.ds-solutions-heading{
    margin-bottom:55px;
}

.ds-solutions-heading span{
    font-size:15px;
    font-weight:700;
    color:#8b3dff;
    letter-spacing:.8px;
    display:inline-block;
    margin-bottom:10px;
}

.ds-solutions-heading h2{
    font-size:24px;
    font-weight:600;
    color:#111827;
    margin-bottom:14px;
}

.ds-heading-line{
    width:36px;
    height:4px;
    background:#ff7b22;
    border-radius:20px;
    margin:auto;
}

/* ===================================================== */
/* CARD */
/* ===================================================== */

.ds-service-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:28px 24px;
    height:100%;
    transition:.4s ease;
}

.ds-service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.07);
}

/* ===================================================== */
/* TOP */
/* ===================================================== */

.ds-service-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:22px;
}

.ds-service-top h3{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin:0;
    line-height:1.4;
}

/* ===================================================== */
/* ICON */
/* ===================================================== */

.ds-service-icon{
    width:58px;
    height:58px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.ds-service-icon i{
    color:#fff;
    font-size:28px;
}

/* ===================================================== */
/* ICON COLORS */
/* ===================================================== */

.ds-orange-bg{
    background:#ff6b00;
}

.ds-purple-bg{
    background:#9333ea;
}

.ds-blue-bg{
    background:#1666ff;
}

.ds-pink-bg{
    background:#ec4899;
}

.ds-google-bg{
    background:#4285f4;
}

.ds-rose-bg{
    background:#ff3366;
}

.ds-green-bg{
    background:#84cc16;
}

.ds-orange2-bg{
    background:#ff7a00;
}

/* ===================================================== */
/* LIST */
/* ===================================================== */

.ds-service-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.ds-service-card ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#4b5563;
    font-size:15px;
    font-weight:500;
}

.ds-service-card ul li i{
    font-size:13px;
    color:#5b7cff;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.ds-service-card a{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    text-decoration:none;
    color:#8b3dff;
    font-size:15px;
    font-weight:700;
    margin-top:22px;
    transition:.3s;
}

.ds-service-card a:hover{
    gap:14px;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:991px){

    .ds-solutions-heading h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .ds-solutions-area{
        padding:70px 0;
    }

    .ds-solutions-heading{
        margin-bottom:40px;
    }

    .ds-solutions-heading h2{
        font-size:28px;
        line-height:1.4;
    }

    .ds-service-card{
        padding:24px 20px;
    }

    .ds-service-top h3{
        font-size:20px;
    }

}

@media(max-width:575px){

    .ds-solutions-heading h2{
        font-size:24px;
    }

    .ds-service-top{
        align-items:flex-start;
    }

}
/* ===================================================== */
/* DS FLOW SECTION */
/* ===================================================== */

/* ===================================================== */
/* SECTION */
/* ===================================================== */

.ds-step-section{
    padding:45px 0;
    background:#fff;
    overflow:hidden;
}

/* ===================================================== */
/* HEADING */
/* ===================================================== */

.ds-step-heading{
    margin-bottom:40px;
}

.ds-step-heading span{
    font-size:15px;
    font-weight:700;
    color:#8b3dff;
    letter-spacing:.8px;
    display:inline-block;
    margin-bottom:12px;
}

.ds-step-heading h2{
    font-size:24px;
    font-weight:600;
    color:#111827;
}

/* ===================================================== */
/* ROW */
/* ===================================================== */

.ds-main-process-row{
    position:relative;
}

/* dotted line */

.ds-main-process-row::before{
    content:"";
    position:absolute;
    top:52px;
    left:10%;
    width:80%;
    border-top:2px dashed #d8d8d8;
    z-index:0;
}

/* ===================================================== */
/* BOX */
/* ===================================================== */

.ds-step-box{
    text-align:center;
    position:relative;
    z-index:2;
}

/* ===================================================== */
/* ICON */
/* ===================================================== */

.ds-icon-outer{
    width:110px;
    height:110px;
    border-radius:50%;
    border:2px solid;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:24px;
    background:#fff;
}

.ds-icon-inner{
    width:74px;
    height:74px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ds-icon-inner i{
    color:#fff;
    font-size:32px;
}

/* ===================================================== */
/* COLORS */
/* ===================================================== */

.ds-green-border{
    border-color:#bdf0cf;
}

.ds-green-bg{
    background:#20c96b;
}

.ds-purple-border{
    border-color:#e7cfff;
}

.ds-purple-bg{
    background:#9333ea;
}

.ds-orange-border{
    border-color:#ffd7c5;
}

.ds-orange-bg{
    background:#ff5a12;
}

.ds-blue-border{
    border-color:#cfe0ff;
}

.ds-blue-bg{
    background:#2563eb;
}

.ds-lightgreen-border{
    border-color:#c8f3d6;
}

.ds-lightgreen-bg{
    background:#22c55e;
}

/* ===================================================== */
/* TEXT */
/* ===================================================== */

.ds-step-box h3{
    font-size:30px;
    font-weight:400;
    color:#132238;
    margin-bottom:10px;
}

.ds-step-box h4{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:14px;
}

.ds-step-box p{
    font-size:17px;
    font-weight:500;
    line-height:1.9;
    color:#6b7280;
    margin:0;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:991px){

    .ds-main-process-row::before{
        display:none;
    }

    .ds-step-heading h2{
        font-size:40px;
    }

    .ds-step-box{
        margin-bottom:50px;
    }

}

@media(max-width:767px){

    .ds-step-section{
        padding:0px 0;
    }

    .ds-step-heading{
        margin-bottom:50px;
    }

    .ds-step-heading h2{
        font-size:32px;
        line-height:1.4;
    }

    .ds-icon-outer{
        width:95px;
        height:95px;
    }

    .ds-icon-inner{
        width:65px;
        height:65px;
    }

    .ds-icon-inner i{
        font-size:28px;
    }

    .ds-step-box h3{
        font-size:38px;
    }

    .ds-step-box h4{
        font-size:24px;
    }

}

@media(max-width:575px){

    .ds-step-heading h2{
        font-size:26px;
    }

}
/* ========================================================= */
/* SECTION */
/* ========================================================= */

.ds-growth-wrapper{
    padding:80px 20px;
    background:#f7f7f7;
}

/* ========================================================= */
/* MAIN CARD */
/* ========================================================= */

.ds-growth-main-card{
    background:#020617;
    border-radius:26px;
    overflow:hidden;
    padding:50px;
}

/* ========================================================= */
/* CONTENT */
/* ========================================================= */

.ds-growth-content span{
    color:#9333ea;
    font-size:13px;
    font-weight:700;
    letter-spacing:.8px;
    display:inline-block;
    margin-bottom:14px;
}

.ds-growth-content h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.ds-growth-content h2 span{
    color:#ff6b00;
    font-size:45px;
}

.ds-growth-content p{
    color:#cbd5e1;
    font-size:16px;
    line-height:1.9;
    margin-bottom:35px;
}

/* ========================================================= */
/* FEATURES */
/* ========================================================= */

.ds-growth-feature{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.ds-growth-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.ds-growth-icon i{
    color:#fff;
    font-size:22px;
}

.ds-growth-feature h4{
    color:#fff;
    font-size:17px;
    font-weight:700;
    margin-bottom:8px;
}

.ds-growth-feature p{
    color:#94a3b8;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

/* ========================================================= */
/* COLORS */
/* ========================================================= */

.ds-orange-bg{
    background:#ff6b00;
}

.ds-blue-bg{
    background:#2563eb;
}

.ds-yellow-bg{
    background:#f59e0b;
}

.ds-purple-bg{
    background:#9333ea;
}

.ds-cyan-bg{
    background:#06b6d4;
}

.ds-green-bg{
    background:#22c55e;
}

/* ========================================================= */
/* IMAGE */
/* ========================================================= */

.ds-growth-image img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
}

/* ========================================================= */
/* ECOSYSTEM CARD */
/* ========================================================= */

.ds-ecosystem-card{
    background:#020617;
    border-radius:24px;
    padding:35px;
    height:100%;
    position:relative;
    overflow:hidden;
}

.ds-ecosystem-card span{
    color:#9333ea;
    font-size:13px;
    font-weight:700;
}

.ds-ecosystem-card h3{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin-top:12px;
    margin-bottom:35px;
}

/* ========================================================= */
/* ECOSYSTEM */
/* ========================================================= */

.ds-eco-circle{
    width:320px;
    height:320px;
    border:2px dashed rgba(255,255,255,.2);
    border-radius:50%;
    margin:auto;
    position:relative;
    padding-left: 1px;
}

.ds-eco-center{
    width:130px;
    height:130px;
    background:#fff;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    display:flex;
    align-items:center;
    justify-content:center;
}

.ds-eco-center img{
    width:85px;
}

.ds-eco-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#111827;
    color:#fff;
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* icon positions */

.eco-one{
    top:-10px;
    left:50%;
    transform:translateX(-50%);
}

.eco-two{
    right:0;
    top:50px;
}

.eco-three{
    right:10px;
    bottom:60px;
}

.eco-four{
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
}

.eco-five{
    left:0;
    bottom:60px;
}

.eco-six{
    left:0;
    top:50px;
}

/* ========================================================= */
/* RESULT CARD */
/* ========================================================= */

.ds-result-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    height:100%;
    border:1px solid #e5e7eb;
}

.ds-result-card h3{
    font-size:34px;
    font-weight:700;
    color:#111827;
    margin-bottom:30px;
}

/* ========================================================= */
/* RESULT BOX */
/* ========================================================= */

.ds-result-box{
    background:#fff;
    border:1px solid #edf0f5;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    height:100%;
}

.ds-result-box h2{
    color:#22c55e;
    font-size:40px;
    font-weight:700;
    margin-bottom:16px;
}

.blue-text{
    color:#2563eb !important;
}

.ds-result-box h4{
    color:#111827;
    font-size:17px;
    font-weight:700;
    margin-bottom:12px;
}

.ds-result-box p{
    color:#6b7280;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media(max-width:991px){

    .ds-growth-content h2{
        font-size:40px;
    }

    .ds-growth-content h2 span{
        font-size:40px;
    }

    .ds-growth-image{
        margin-top:40px;
    }

    .ds-ecosystem-card,
    .ds-result-card{
        margin-top:25px;
    }

}

@media(max-width:767px){

    .ds-growth-wrapper{
        padding:70px 15px;
    }

    .ds-growth-main-card{
        padding:30px 22px;
    }

    .ds-growth-content h2{
        font-size:32px;
    }

    .ds-growth-content h2 span{
        font-size:32px;
    }

    .ds-result-card h3{
        font-size:28px;
    }

    .ds-eco-circle{
        width:260px;
        height:260px;
        padding-left:1px;
        padding-right:1px;
    }

}

@media(max-width:575px){

    .ds-growth-content h2{
        font-size:28px;
    }

    .ds-growth-content h2 span{
        font-size:28px;
    }

    .ds-result-box h2{
        font-size:30px;
    }

    .ds-result-card h3{
        font-size:24px;
    }

}
/* ========================================================= */
/* CTA SECTION */
/* ========================================================= */

.ds-cta-wrap{
    padding:40px 15px;
    background:#ffffff;
}

/* ========================================================= */
/* CTA BANNER */
/* ========================================================= */

.ds-cta-banner{
    background:linear-gradient(90deg,#050028 0%,#6b0fbf 55%,#ff5b14 100%);
    border-radius:24px;
    padding:18px 40px;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* ========================================================= */
/* ROCKET */
/* ========================================================= */

.ds-cta-rocket{
    text-align:center;
}

.ds-cta-rocket img{
    width:180px;
    max-width:100%;
    object-fit:contain;
    animation:dsRocketFloat 3s ease-in-out infinite;
}

/* ========================================================= */
/* ROCKET ANIMATION */
/* ========================================================= */

@keyframes dsRocketFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ========================================================= */
/* CONTENT */
/* ========================================================= */

.ds-cta-content h2{
    color:#ffffff;
    font-size:27px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.2;
}

.ds-cta-content p{
    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:1.8;
    margin:0;
}

/* ========================================================= */
/* BUTTON */
/* ========================================================= */

.ds-cta-btn-wrap{
    text-align:end;
}

.ds-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:14px;
    font-size:17px;
    font-weight:700;
    transition:.4s;
    box-shadow:0 10px 25px rgba(255,107,0,.35);
}

.ds-cta-btn:hover{
    background:#ff7f22;
    transform:translateY(-3px);
    color:#fff;
}

.ds-cta-btn i{
    font-size:18px;
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media(max-width:991px){

    .ds-cta-banner{
        padding:35px 28px;
        text-align:center;
    }

    .ds-cta-content{
        margin:25px 0;
    }

    .ds-cta-content h2{
        font-size:38px;
    }

    .ds-cta-btn-wrap{
        text-align:center;
    }

}

@media(max-width:767px){

    .ds-cta-wrap{
        padding:30px 12px;
    }

    .ds-cta-banner{
        padding:30px 20px;
        border-radius:20px;
    }

    .ds-cta-rocket img{
        width:140px;
    }

    .ds-cta-content h2{
        font-size:30px;
        line-height:1.4;
    }

    .ds-cta-content p{
        font-size:15px;
    }

    .ds-cta-btn{
        width:100%;
        justify-content:center;
        padding:16px 20px;
        font-size:16px;
    }

}

@media(max-width:575px){

    .ds-cta-content h2{
        font-size:25px;
    }

    .ds-cta-banner{
        border-radius:18px;
    }

}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.gbm-hero-section{
    position:relative;
    overflow:hidden;
    padding:118px 0;
    background:
    radial-gradient(circle at top right, rgba(149,0,255,0.35), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,102,0,0.18), transparent 25%),
    #050816;
}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.gbm-hero-section .container{
    position:relative;
    z-index:2;
}

/* ========================================= */
/* BREADCRUMB */
/* ========================================= */

.gbm-breadcrumb{
    padding-top: 5px;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.gbm-breadcrumb a{
    color:#cfcfcf;
    text-decoration:none;
    font-size:14px;
}

.gbm-breadcrumb span{
    color:#999;
    font-size:12px;
}

.gbm-breadcrumb .active{
    color:#fff;
}

/* ========================================= */
/* LEFT CONTENT */
/* ========================================= */

.gbm-left-content{
    color:#fff;
}
.gbm-feature-icon.purple i,
.gbm-feature-icon.yellow i{
    color:#fff !important;
}

.gbm-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#c457ff;
    font-size:14px;
    font-weight:600;
    margin-bottom:17px;
    margin-top:1px;
}

.gbm-left-content h1{
    font-size:37px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:25px;
    color:#fff;
    max-width:650px;
}

.gbm-left-content h1 span{
    color:#ff6b00;
}

.gbm-left-content p{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:620px;
}

/* ========================================= */
/* FEATURES */
/* ========================================= */

.gbm-features-row{
    margin-bottom:35px;
}

.gbm-feature-box{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.gbm-feature-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.gbm-feature-icon i{
    color:#fff;
}

.gbm-feature-icon.purple{
    background:linear-gradient(135deg,#6f00ff,#a855f7);
}

.gbm-feature-icon.orange{
    background:linear-gradient(135deg,#ff6600,#ff944d);
}

.gbm-feature-icon.yellow{
    background:linear-gradient(135deg,#ff9800,#ffc107);
}

.gbm-feature-icon.pink{
    background:linear-gradient(135deg,#ff0077,#ff4da6);
}

.gbm-feature-text h6{
    color:#fff;
    margin:0 0 5px;
    font-size:16px;
    font-weight:700;
}

.gbm-feature-text span{
    color:#bcbcbc;
    font-size:14px;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.gbm-main-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 32px;
    border-radius:14px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#ff6600,#ff8a00);
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(255,102,0,0.3);
}

.gbm-main-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* ========================================= */
/* RIGHT IMAGE */
/* ========================================= */

.gbm-right-image{
    position:relative;
    text-align:center;
}

.main-mobile-img{
    max-width:500px;
    position:relative;
    z-index:2;
}

/* ========================================= */
/* FLOATING BOXES */
/* ========================================= */

.floating-box{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:18px 20px;
    min-width:150px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
    z-index:3;
}

.floating-box small{
    display:block;
    color:#777;
    font-size:13px;
    margin-bottom:6px;
}

.floating-box h4{
    font-size:34px;
    margin:0;
    font-weight:800;
    color:#111;
}

.floating-box span{
    color:#22c55e;
    font-size:15px;
    font-weight:700;
}

/* POSITIONING */

.rank-box{
    top:80px;
    left:0;
}

.views-box{
    bottom:100px;
    left:20px;
}

.search-box{
    top:120px;
    right:0;
}

.calls-box{
    bottom:100px;
    right:0;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1199px){

    .gbm-left-content h1{
        font-size:52px;
    }

    .main-mobile-img{
        max-width:430px;
    }

}

@media(max-width:991px){

    .gbm-hero-section{
        padding:70px 0;
        text-align:center;
    }

    .gbm-left-content h1{
        font-size:44px;
        max-width:100%;
    }

    .gbm-left-content p{
        max-width:100%;
    }

    .gbm-right-image{
        margin-top:60px;
    }

    .rank-box{
        left:40px;
    }

    .search-box{
        right:40px;
    }

}

@media(max-width:767px){

    .gbm-hero-section{
        padding:60px 0;
    }

    .gbm-left-content h1{
        font-size:34px;
    }

    .gbm-left-content p{
        font-size:16px;
        line-height:1.7;
    }

    /* IMPORTANT */

    .gbm-features-row .col-12{
        margin-bottom:10px;
    }

    .gbm-feature-box{
        padding:16px;
        border-radius:16px;
        background:rgba(255,255,255,0.05);
        border:1px solid rgba(255,255,255,0.08);
    }

    .main-mobile-img{
        max-width:100%;
    }

    .floating-box{
        position:relative;
        margin:15px auto;
        top:auto !important;
        left:auto !important;
        right:auto !important;
        bottom:auto !important;
        width:90%;
    }

}

@media(max-width:575px){

    .gbm-left-content h1{
        font-size:30px;
        line-height:1.3;
    }

    .gbm-main-btn{
        width:100%;
        justify-content:center;
    }

    .gbm-feature-text h6{
        font-size:15px;
    }

    .gbm-feature-text span{
        font-size:13px;
    }

}
/* ===================================================== */
/* SECTION */
/* ===================================================== */

.google-business-section{
    padding:40px 0;
    overflow:hidden;
}

/* ===================================================== */
/* LEFT CARD */
/* ===================================================== */

.google-left-card{
    position:relative;
    background:#f8f8f8;
    border:1px solid #ededed;
    border-radius:30px;
    padding:30px;
    overflow:hidden;
}

/* Background Glow */

.google-left-card::before{
    content:'';
    position:absolute;
    top:-120px;
    left:-120px;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.9);
    border-radius:50%;
}

/* Image */

.google-business-img{
    position:relative;
    z-index:2;
    width:100%;
    border-radius:20px;
}

/* ===================================================== */
/* RATING CARD */
/* ===================================================== */

.rating-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    border-radius:20px;
    padding:22px 26px;
    box-shadow:0 15px 40px rgba(0,0,0,0.10);
    z-index:5;
    min-width:220px;
}

.rating-card h3{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:8px;
}

.stars{
    display:flex;
    align-items:center;
    gap:6px;
}

.stars i{
    color:#ffb400;
    font-size:20px;
}

.stars .inactive{
    color:#dddddd;
}

/* ===================================================== */
/* RIGHT CONTENT */
/* ===================================================== */

.google-right-content{
    padding-left:20px;
}

.section-tag{
    display:inline-block;
    font-size:16px;
    font-weight:700;
    color:#7a42ff;
    margin-bottom:18px;
    letter-spacing:0.5px;
}

.google-right-content h2{
    font-size:34px;
    line-height:1.2;
    font-weight:800;
    color:#0e0e16;
    margin-bottom:24px;
}

.google-right-content p{
    font-size:18px;
    line-height:1.9;
    color:#5e5e68;
    margin-bottom:18px;
}

/* ===================================================== */
/* STATS */
/* ===================================================== */

.stats-row{
    margin-top:25px;
}

.stats-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:28px 20px;
    height:100%;
    transition:0.4s ease;
}

.stats-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.stats-box h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

.stats-box p{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:#555;
    font-weight:500;
}

/* COLORS */

.stats-box.purple h3{
    color:#7b2cff;
}

.stats-box.orange h3{
    color:#ff6600;
}

.stats-box.blue h3{
    color:#2563ff;
}

.stats-box.pink h3{
    color:#ff2fa0;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1199px){

    .google-right-content h2{
        font-size:44px;
    }

}

@media(max-width:991px){

    .google-business-section{
        padding:70px 0;
    }

    .google-right-content{
        padding-left:0;
        text-align:center;
    }

    .google-right-content h2{
        font-size:38px;
    }

    .google-right-content p{
        font-size:17px;
    }

}

@media(max-width:767px){

    .google-business-section{
        padding:60px 0;
    }

    .google-left-card{
        padding:20px;
        border-radius:25px;
    }

    .rating-card{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:20px;
        width:100%;
        min-width:100%;
    }

    .google-right-content h2{
        font-size:32px;
        line-height:1.35;
    }

    .google-right-content p{
        font-size:16px;
        line-height:1.8;
    }

    /* IMPORTANT */

    /* MOBILE VIEW = ONE BY ONE */

    .stats-row .col-12{
        width:100%;
    }

    .stats-box{
        text-align:center;
    }

}

@media(max-width:575px){

    .google-right-content h2{
        font-size:28px;
    }

    .rating-card h3{
        font-size:40px;
    }

    .stats-box{
        padding:24px 18px;
    }

    .stats-box h3{
        font-size:34px;
    }

    .stats-box p{
        font-size:14px;
    }

}
/* ===================================================== */
/* GOOGLE BUSINESS SERVICES SECTION */
/* ===================================================== */

.gmb-services-wrapper{
    padding:21px 0;
    background:#ffffff;
    overflow:hidden;
}

/* ===================================================== */
/* SECTION TITLE */
/* ===================================================== */

.gmb-services-tag{
    display:inline-block;
    color:#7a3cff;
    font-size:16px;
    font-weight:700;
    letter-spacing:0.5px;
    margin-bottom:12px;
    text-transform:uppercase;
}

.gmb-services-title{
    font-size:34px;
    font-weight:800;
    color:#101018;
    margin-bottom:20px;
    line-height:1.3;
}

/* ===================================================== */
/* SERVICE CARD */
/* ===================================================== */

.gmb-service-card{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:32px 28px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    height:100%;
    transition:0.4s ease;
}

.gmb-service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

/* ===================================================== */
/* ICON */
/* ===================================================== */

.gmb-service-icon{
    min-width:72px;
    width:72px;
    height:72px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

/* ICON COLORS */

.purple-bg{
    background:#f1e4ff;
    color:#8b3dff;
}

.orange-bg{
    background:#ffe8da;
    color:#ff6a00;
}

.pink-bg{
    background:#ffe1ef;
    color:#ff3f95;
}

.green-bg{
    background:#ddffe9;
    color:#10b95d;
}

.blue-bg{
    background:#e3edff;
    color:#2563ff;
}

.orange2-bg{
    background:#fff0e4;
    color:#ff6b00;
}

/* ===================================================== */
/* CONTENT */
/* ===================================================== */

.gmb-service-content{
    flex:1;
}

.gmb-service-content h4{
    font-size:28px;
    font-weight:700;
    color:#121220;
    margin-bottom:20px;
    line-height:1.4;
}

.gmb-service-content ul{
    padding:0;
    margin:0;
    list-style:none;
}

.gmb-service-content ul li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:16px;
    font-weight:500;
    color:#55556a;
    margin-bottom:14px;
    line-height:1.7;
}

.gmb-service-content ul li i{
    color:#6c63ff;
    font-size:15px;
    margin-top:4px;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1199px){

    .gmb-services-title{
        font-size:42px;
    }

    .gmb-service-content h4{
        font-size:24px;
    }

}

@media(max-width:991px){

    .gmb-services-wrapper{
        padding:70px 0;
    }

    .gmb-services-title{
        font-size:36px;
    }

}

@media(max-width:767px){

    .gmb-services-wrapper{
        padding:5px 0;
    }

    .gmb-services-title{
        font-size:30px;
        line-height:1.4;
    }

    .gmb-service-card{
        padding:25px 22px;
        border-radius:20px;
        flex-direction:column;
        gap:18px;
    }

    .gmb-service-icon{
        width:65px;
        height:65px;
        min-width:65px;
        font-size:24px;
    }

    .gmb-service-content h4{
        font-size:22px;
        margin-bottom:18px;
    }

    .gmb-service-content ul li{
        font-size:15px;
    }

}

@media(max-width:575px){

    .gmb-services-title{
        font-size:26px;
    }

    .gmb-service-card{
        padding:22px 18px;
    }

    .gmb-service-content h4{
        font-size:20px;
    }

    .gmb-service-content ul li{
        font-size:14px;
        line-height:1.6;
    }

}
/* ===================================================== */
/* GMB PROCESS SECTION */
/* ===================================================== */

.gmb-process-main-sec{
    padding:40px 0;
    background:#ffffff;
    overflow:hidden;
}

/* ===================================================== */
/* TITLE */
/* ===================================================== */

.gmb-process-mini-title,
.gmb-benefit-mini-title{
    display:inline-block;
    font-size:16px;
    font-weight:700;
    color:#7c4dff;
    text-transform:uppercase;
    margin-bottom:12px;
}

.gmb-process-main-title,
.gmb-benefit-main-title{
    font-size:34px;
    font-weight:800;
    color:#111827;
    line-height:1.3;
    margin-bottom:0;
}

/* ===================================================== */
/* PROCESS STEPS */
/* ===================================================== */

.gmb-process-step-row{
    margin-top:70px;
}

.gmb-process-step-box{
    text-align:center;
    position:relative;
    margin-bottom:40px;
    padding:0 12px;
}

.gmb-process-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#ffffff;
    position:relative;
    z-index:2;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* ===================================================== */
/* ICON COLORS */
/* ===================================================== */

.purple-process-bg{
    background:linear-gradient(135deg,#8b3dff,#6a00ff);
}

.orange-process-bg{
    background:linear-gradient(135deg,#ff7a00,#ff4d00);
}

.blue-process-bg{
    background:linear-gradient(135deg,#2879ff,#0059ff);
}

.green-process-bg{
    background:linear-gradient(135deg,#10c96b,#00a650);
}

.pink-process-bg{
    background:linear-gradient(135deg,#ff4db8,#ff007f);
}

/* ===================================================== */
/* ARROW */
/* ===================================================== */

.gmb-process-arrow{
    position:absolute;
    top:35px;
    right:-35px;
    color:#7a7a7a;
    font-size:22px;
    z-index:1;
}

/* ===================================================== */
/* TEXT */
/* ===================================================== */

.gmb-process-number{
    display:block;
    font-size:22px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
}

.gmb-process-step-box h4{
    font-size:17px;
    font-weight:500;
    color:#121212;
    margin-bottom:10px;
    line-height:1.4;
}

.gmb-process-step-box p{
    font-size:16px;
    line-height:1.8;
    color:#5c5c6b;
    margin:0;
}

/* ===================================================== */
/* BENEFITS */
/* ===================================================== */

.gmb-benefit-card{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:0.4s ease;
}

.gmb-benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

.gmb-benefit-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

/* ===================================================== */
/* BENEFIT ICON COLORS */
/* ===================================================== */

.purple-light-bg{
    background:#f3e9ff;
    color:#8b3dff;
}

.orange-light-bg{
    background:#fff0e4;
    color:#ff6600;
}

.star-light-bg{
    background:#fff3e2;
    color:#ff9900;
}

.green-light-bg{
    background:#e4fff0;
    color:#10b95d;
}

.blue-light-bg{
    background:#e8f0ff;
    color:#2563ff;
}

.pink-light-bg{
    background:#ffe6f3;
    color:#ff3f95;
}

/* ===================================================== */
/* BENEFIT TEXT */
/* ===================================================== */

.gmb-benefit-card h5{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:14px;
    line-height:1.4;
}

.gmb-benefit-card p{
    font-size:18px;
    color:#66667a;
    line-height:1.8;
    margin:0;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1199px){

    .gmb-process-main-title,
    .gmb-benefit-main-title{
        font-size:40px;
    }

    .gmb-process-step-box h4{
        font-size:22px;
    }

    .gmb-benefit-card h5{
        font-size:20px;
    }

}

@media(max-width:991px){

    .gmb-process-main-sec{
        padding:80px 0;
    }

    .gmb-process-main-title,
    .gmb-benefit-main-title{
        font-size:34px;
    }

    .gmb-process-arrow{
        display:none !important;
    }

    .gmb-process-step-row{
        margin-top:50px;
    }

}

@media(max-width:767px){

    .gmb-process-main-sec{
        padding:18px 0;
    }

    .gmb-process-main-title,
    .gmb-benefit-main-title{
        font-size:28px;
        line-height:1.5;
    }

    .gmb-process-step-box{
        margin-bottom:50px;
    }

    .gmb-process-icon{
        width:80px;
        height:80px;
        font-size:30px;
    }

    .gmb-process-step-box h4{
        font-size:20px;
    }

    .gmb-process-step-box p{
        font-size:15px;
    }

    .gmb-benefit-card{
        padding:28px 20px;
        border-radius:20px;
    }

    .gmb-benefit-icon{
        width:65px;
        height:65px;
        font-size:24px;
    }

    .gmb-benefit-card h5{
        font-size:18px;
    }

}

@media(max-width:575px){

    .gmb-process-main-title,
    .gmb-benefit-main-title{
        font-size:24px;
    }

    .gmb-process-step-box{
        padding:0 5px;
    }

    .gmb-process-step-box h4{
        font-size:18px;
    }

    .gmb-process-step-box p{
        font-size:14px;
        line-height:1.7;
    }

    .gmb-benefit-card{
        padding:24px 18px;
    }

    .gmb-benefit-card h5{
        font-size:17px;
    }

    .gmb-benefit-card p{
        font-size:14px;
    }

}
/* ===================================================== */
/* GOOGLE CTA SECTION */
/* ===================================================== */

.gmb-cta-wrapper-sec{
    padding:30px 0;
    background:#ffffff;
    overflow:hidden;
}

/* ===================================================== */
/* MAIN BOX */
/* ===================================================== */

.gmb-cta-main-box{
    background:linear-gradient(90deg,#040421 0%,#13003f 40%,#25005f 100%);
    border-radius:47px;
    padding:0px 42px;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* ===================================================== */
/* LEFT CONTENT */
/* ===================================================== */

.gmb-cta-left-content{
    position:relative;
    z-index:2;
}

.gmb-cta-left-content h2{
    font-size:25px;
    font-weight:800;
    color:#ffffff;
    line-height:1.3;
    margin-bottom:16px;
}

.gmb-cta-left-content p{
    font-size:18px;
    color:#d7d7e5;
    line-height:1.8;
    margin-bottom:32px;
    max-width:520px;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.gmb-cta-main-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg,#ff7a00,#ff5100);
    color:#ffffff;
    text-decoration:none;
    padding:16px 32px;
    border-radius:14px;
    font-size:17px;
    font-weight:700;
    transition:0.4s ease;
    border:2px solid transparent;
}

.gmb-cta-main-btn:hover{
    background:#ffffff;
    color:#ff5a00;
    transform:translateY(-4px);
}

.gmb-cta-main-btn i{
    font-size:18px;
}

/* ===================================================== */
/* IMAGE */
/* ===================================================== */

.gmb-cta-image-box{
    text-align:right;
    position:relative;
}

.gmb-cta-image-box img{
    max-width:100%;
    width:520px;
    object-fit:contain;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1199px){

    .gmb-cta-left-content h2{
        font-size:40px;
    }

    .gmb-cta-image-box img{
        width:460px;
    }

}

@media(max-width:991px){

    .gmb-cta-main-box{
        padding:50px 40px;
        text-align:center;
    }

    .gmb-cta-left-content{
        margin-bottom:40px;
    }

    .gmb-cta-left-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .gmb-cta-image-box{
        text-align:center;
    }

    .gmb-cta-image-box img{
        width:420px;
    }

}

@media(max-width:767px){

    .gmb-cta-wrapper-sec{
        padding:70px 0;
    }

    .gmb-cta-main-box{
        padding:40px 25px;
        border-radius:20px;
    }

    .gmb-cta-left-content h2{
        font-size:32px;
        line-height:1.4;
    }

    .gmb-cta-left-content p{
        font-size:16px;
        line-height:1.7;
        margin-bottom:28px;
    }

    .gmb-cta-main-btn{
        padding:14px 26px;
        font-size:15px;
    }

    .gmb-cta-image-box img{
        width:100%;
        max-width:360px;
    }

}

@media(max-width:575px){

    .gmb-cta-main-box{
        padding:35px 20px;
    }

    .gmb-cta-left-content h2{
        font-size:27px;
    }

    .gmb-cta-left-content p{
        font-size:15px;
    }

    .gmb-cta-main-btn{
        width:100%;
        justify-content:center;
        padding:14px 20px;
        font-size:15px;
    }

    .gmb-cta-image-box{
        margin-top:25px;
    }

    .gmb-cta-image-box img{
        max-width:100%;
        width:100%;
    }

}
/* ===================================================== */
/* NXQ LOGO BRANDING HERO */
/* ===================================================== */

.nxq-branding-hero-sec{

    background:
    radial-gradient(circle at top right,
    rgba(120,0,255,0.35),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(255,102,0,0.15),
    transparent 30%),

    #030817;

    padding:40px 0 70px;

    overflow:hidden;

    position:relative;
}

/* ===================================================== */
/* BREADCRUMB */
/* ===================================================== */

.nxq-branding-breadcrumb{
    padding-top: 85px;
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:50px;

    flex-wrap:wrap;
    
}

.nxq-branding-breadcrumb a,
.nxq-branding-breadcrumb p,
.nxq-branding-breadcrumb span{

    margin:0;

    color:#d8d8d8;

    font-size:14px;

    text-decoration:none;
}

.nxq-branding-breadcrumb span{

    font-size:11px;
}

/* ===================================================== */
/* LEFT */
/* ===================================================== */

.nxq-branding-left{

    position:relative;
    z-index:5;
}

.nxq-branding-mini-title{

    color:#bb4dff;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    display:inline-block;

    margin-bottom:18px;
}

.nxq-branding-left h1{

    color:#ffffff;

    font-size:40px;

    line-height:1.08;

    font-weight:800;

    margin-bottom:25px;
}

.nxq-branding-left h1 span{

    display:block;

    color:#ff6a00;
}

.nxq-branding-left p{

    color:#d5d5d5;

    font-size:16px;

    line-height:1.9;

    margin-bottom:45px;

    max-width:620px;
}

/* ===================================================== */
/* FEATURES */
/* ===================================================== */

.nxq-branding-feature-wrap{

    display:flex;

    align-items:flex-start;

    gap:28px;

    margin-bottom:45px;

    flex-wrap:nowrap;
}

.nxq-branding-feature-item{

    display:flex;

    align-items:flex-start;

    gap:14px;
}

.nxq-branding-feature-item h6{

    color:#ffffff;

    font-size:15px;

    font-weight:700;

    margin-bottom:5px;
}

.nxq-branding-feature-item p{

    margin:0;

    color:#c8c8c8;

    font-size:13px;

    line-height:1.5;
}

/* ===================================================== */
/* ICON */
/* ===================================================== */

.nxq-branding-icon{

    width:52px;
    height:52px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    font-size:20px;

    border:2px solid;
}

.nxq-purple-border{

    color:#b84cff;
    border-color:#b84cff;
}

.nxq-orange-border{

    color:#ff6a00;
    border-color:#ff6a00;
}

.nxq-blue-border{

    color:#00a2ff;
    border-color:#00a2ff;
}

.nxq-green-border{

    color:#00ff84;
    border-color:#00ff84;
}

/* ===================================================== */
/* BUTTONS */
/* ===================================================== */

.nxq-branding-btn-group{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

.nxq-branding-main-btn,
.nxq-branding-outline-btn{

    padding:16px 28px;

    border-radius:10px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    transition:0.4s ease;

    font-size:15px;

    font-weight:700;
}

.nxq-branding-main-btn{

    background:linear-gradient(90deg,#ff6a00,#ff8c1a);

    color:#ffffff;
}

.nxq-branding-main-btn:hover{

    color:#ffffff;

    transform:translateY(-3px);
}

.nxq-branding-outline-btn{

    border:1px solid rgba(255,255,255,0.3);

    color:#ffffff;
}

.nxq-branding-outline-btn:hover{

    background:#ffffff;

    color:#000000;
}

/* ===================================================== */
/* IMAGE */
/* ===================================================== */

.nxq-branding-right-img{

    position:relative;

    text-align:center;
}

.nxq-branding-right-img img{

    width:100%;

    max-width:100%;

    object-fit:contain;
}

/* ===================================================== */
/* LARGE DEVICES */
/* ===================================================== */

@media(max-width:1399px){

    .nxq-branding-left h1{

        font-size:60px;
    }

    .nxq-branding-feature-wrap{

        gap:20px;
    }

}

/* ===================================================== */
/* LAPTOP */
/* ===================================================== */

@media(max-width:1199px){

    .nxq-branding-left h1{

        font-size:54px;
    }

    .nxq-branding-feature-wrap{

        flex-wrap:wrap;
    }

}

/* ===================================================== */
/* TABLET */
/* ===================================================== */

@media(max-width:991px){

    .nxq-branding-hero-sec{

        padding:40px 0 60px;
    }

    .nxq-branding-left{

        text-align:center;
    }

    .nxq-branding-left p{

        margin-left:auto;
        margin-right:auto;
    }

    .nxq-branding-feature-wrap{

        justify-content:center;

        gap:25px;
    }

    .nxq-branding-btn-group{

        justify-content:center;
    }

    .nxq-branding-right-img{

        margin-top:20px;
    }
    .nxq-branding-breadcrumb{
        width:100%;
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:8px;
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }

}
    





/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media(max-width:767px){

    .nxq-branding-hero-sec{

        padding:35px 0 50px;
    }

    .nxq-branding-breadcrumb{

        margin-bottom:35px;
    }

    .nxq-branding-left h1{

        font-size:42px;
    }

    .nxq-branding-left p{

        font-size:16px;

        line-height:1.8;

        margin-bottom:35px;
    }

    /* IMPORTANT */

    /* ONE BY ONE MOBILE */

    .nxq-branding-feature-wrap{

        flex-direction:column;

        align-items:flex-start;

        gap:22px;
    }

    .nxq-branding-feature-item{

        width:100%;
    }

    .nxq-branding-btn-group{

        flex-direction:column;

        width:100%;
    }

    .nxq-branding-main-btn,
    .nxq-branding-outline-btn{

        width:100%;
    }

}

/* ===================================================== */
/* SMALL MOBILE */
/* ===================================================== */

@media(max-width:575px){

    .nxq-branding-left h1{

        font-size:36px;
    }

    .nxq-branding-left p{

        font-size:15px;
    }

    .nxq-branding-icon{

        width:48px;
        height:48px;

        font-size:18px;
    }

    .nxq-branding-feature-item h6{

        font-size:14px;
    }

    .nxq-branding-feature-item p{

        font-size:12px;
    }

    .nxq-branding-main-btn,
    .nxq-branding-outline-btn{

        padding:15px 20px;

        font-size:14px;
    }

}
/* ===================================================== */
/* NXM BRANDING SERVICE SECTION */
/* ===================================================== */

.nxm-branding-service-area{

    padding:54px 0 61px;

    background:#ffffff;

    overflow:hidden;
}

/* ===================================================== */
/* TITLE */
/* ===================================================== */

.nxm-branding-service-title span,
.nxm-branding-process-title span{

    color:#8a3dff;

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

    display:inline-block;

    margin-bottom:12px;
}

.nxm-branding-service-title h2,
.nxm-branding-process-title h2{

    color:#111111;

    font-size:35px;

    font-weight:800;

    line-height:1.3;

    margin:0;
}

.nxm-branding-service-title h2 strong{

    color:#ff6a00;
}

.nxm-branding-service-title{

    margin-bottom:60px;
}

/* ===================================================== */
/* SERVICE CARD */
/* ===================================================== */

.nxm-branding-service-card{

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:35px 22px;

    text-align:center;

    height:100%;

    transition:0.4s ease;

    position:relative;
}

.nxm-branding-service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.nxm-branding-service-icon{

    width:78px;
    height:78px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    font-size:28px;
}

.nxm-branding-service-card h4{

    font-size:22px;

    font-weight:700;

    color:#121212;

    line-height:1.4;

    margin-bottom:15px;
}

.nxm-branding-service-card p{

    font-size:15px;

    color:#666666;

    line-height:1.9;

    margin:0;
}

/* ===================================================== */
/* ICON COLORS */
/* ===================================================== */

.nxm-purple-bg{

    background:#f3e7ff;

    color:#8f37ff;
}

.nxm-orange-bg{

    background:#fff0e6;

    color:#ff6a00;
}

.nxm-blue-bg{

    background:#eaf2ff;

    color:#2b6dff;
}

.nxm-green-bg{

    background:#e8fff0;

    color:#19b85b;
}

.nxm-pink-bg{

    background:#ffeaf5;

    color:#ff3d9a;
}

.nxm-light-orange-bg{

    background:#fff2eb;

    color:#ff7b38;
}

/* ===================================================== */
/* PROCESS */
/* ===================================================== */

.nxm-branding-process-title{

    margin-top:52px;

    margin-bottom:70px;
}

.nxm-branding-process-wrap{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:20px;

    flex-wrap:nowrap;
}

.nxm-branding-process-box{

    width:100%;

    text-align:center;

    position:relative;
}

.nxm-branding-process-icon{

    width:100px;
    height:100px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 28px;

    font-size:36px;

    border:3px solid;
}

.nxm-branding-process-box h4{

    color:#111111;

    font-size:24px;

    font-weight:800;

    margin-bottom:12px;
}

.nxm-branding-process-box h5{

    color:#111111;

    font-size:22px;

    font-weight:700;

    margin-bottom:14px;

    line-height:1.4;
}

.nxm-branding-process-box p{

    color:#666666;

    font-size:15px;

    line-height:1.8;

    margin:0 auto;

    max-width:250px;
}

/* ===================================================== */
/* PROCESS COLORS */
/* ===================================================== */

.nxm-process-purple{

    color:#9a42ff;

    border-color:#9a42ff;
}

.nxm-process-orange{

    color:#ff6a00;

    border-color:#ff6a00;
}

.nxm-process-blue{

    color:#2b6dff;

    border-color:#2b6dff;
}

.nxm-process-green{

    color:#1ac45d;

    border-color:#1ac45d;
}

.nxm-process-pink{

    color:#ff3ca6;

    border-color:#ff3ca6;
}

/* ===================================================== */
/* ARROW */
/* ===================================================== */

.nxm-branding-process-arrow{

    display:flex;

    align-items:center;

    justify-content:center;

    color:#999999;

    font-size:26px;

    margin-top:38px;

    flex-shrink:0;
}

/* ===================================================== */
/* LARGE DEVICES */
/* ===================================================== */

@media(max-width:1399px){

    .nxm-branding-service-title h2,
    .nxm-branding-process-title h2{

        font-size:38px;
    }

}

/* ===================================================== */
/* LAPTOP */
/* ===================================================== */

@media(max-width:1199px){

    .nxm-branding-process-wrap{

        gap:15px;
    }

    .nxm-branding-process-box h5{

        font-size:19px;
    }

}

/* ===================================================== */
/* TABLET */
/* ===================================================== */

@media(max-width:991px){

    .nxm-branding-service-area{

        padding:70px 0 80px;
    }

    .nxm-branding-service-title h2,
    .nxm-branding-process-title h2{

        font-size:34px;
    }

    .nxm-branding-process-wrap{

        flex-wrap:wrap;

        justify-content:center;
    }

    .nxm-branding-process-box{

        width:45%;
    }

    .nxm-branding-process-arrow{

        display:none;
    }

}

/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media(max-width:767px){

    .nxm-branding-service-title{

        margin-bottom:45px;
    }

    .nxm-branding-process-title{

        margin-top:70px;

        margin-bottom:50px;
    }

    .nxm-branding-service-title h2,
    .nxm-branding-process-title h2{

        font-size:28px;

        line-height:1.4;
    }

    /* IMPORTANT */

    /* ONE BY ONE BELOW */

    .nxm-branding-process-wrap{

        flex-direction:column;

        align-items:center;

        gap:35px;
    }

    .nxm-branding-process-box{

        width:100%;
    }

    .nxm-branding-service-card{

        padding:32px 20px;
    }

    .nxm-branding-service-card h4{

        font-size:20px;
    }

    .nxm-branding-service-card p{

        font-size:14px;
    }

    .nxm-branding-process-box h5{

        font-size:20px;
    }

}

/* ===================================================== */
/* SMALL MOBILE */
/* ===================================================== */

@media(max-width:575px){

    .nxm-branding-service-area{

        padding:60px 0 70px;
    }

    .nxm-branding-service-title h2,
    .nxm-branding-process-title h2{

        font-size:24px;
    }

    .nxm-branding-service-icon{

        width:68px;
        height:68px;

        font-size:24px;
    }

    .nxm-branding-process-icon{

        width:85px;
        height:85px;

        font-size:30px;
    }

    .nxm-branding-process-box h4{

        font-size:21px;
    }

    .nxm-branding-process-box h5{

        font-size:18px;
    }

    .nxm-branding-process-box p{

        font-size:14px;
    }

}

/* ========================================================= */
/* ZYNO BRANDING EXTRA SECTION */
/* ========================================================= */

.zyno-branding-extra-section{

    padding:0px 0px 80px;

    background:#ffffff;

    overflow:hidden;
}

/* ========================================================= */
/* HEADINGS */
/* ========================================================= */

.zyno-brand-benefit-heading span,
.zyno-brand-tools-heading span{

    display:inline-block;

    color:#8a3dff;

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:12px;
}

.zyno-brand-benefit-heading h2,
.zyno-brand-tools-heading h2{

    font-size:35px;

    color:#101010;

    font-weight:800;

    line-height:1.3;

    margin:0;
}

.zyno-brand-benefit-heading{

    margin-bottom:60px;
}

.zyno-brand-tools-heading{

    margin-top:44px;

    margin-bottom:55px;
}

/* ========================================================= */
/* BENEFIT CARD */
/* ========================================================= */

.zyno-brand-benefit-card{

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:0.4s ease;

    height:100%;
}

.zyno-brand-benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.zyno-brand-benefit-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    font-size:28px;
}

.zyno-brand-benefit-card h4{

    font-size:21px;

    font-weight:700;

    line-height:1.5;

    color:#101010;

    margin-bottom:15px;
}

.zyno-brand-benefit-card p{

    font-size:15px;

    line-height:1.8;

    color:#666666;

    margin:0;
}

/* ========================================================= */
/* ICON COLORS */
/* ========================================================= */

.zyno-purple-light{

    background:#f4eaff;

    color:#9d42ff;
}

.zyno-orange-light{

    background:#fff1e8;

    color:#ff6a00;
}

.zyno-star-light{

    background:#fff2ea;

    color:#ff7a00;
}

.zyno-green-light{

    background:#eafff1;

    color:#1ab85b;
}

.zyno-blue-light{

    background:#edf4ff;

    color:#2d6dff;
}

.zyno-pink-light{

    background:#ffeaf6;

    color:#ff46a3;
}

/* ========================================================= */
/* TOOLS */
/* ========================================================= */

.zyno-brand-tool-box{

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:22px 18px;

    display:flex;

    align-items:center;

    gap:15px;

    transition:0.4s ease;

    height:100%;
}

.zyno-brand-tool-box:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.zyno-brand-tool-box img{

    width:42px;

    height:42px;

    object-fit:contain;

    flex-shrink:0;
}

.zyno-brand-tool-box h5{

    font-size:17px;

    font-weight:700;

    color:#111111;

    margin-bottom:3px;
}

.zyno-brand-tool-box p{

    font-size:14px;

    color:#666666;

    margin:0;
}

/* ========================================================= */
/* CTA */
/* ========================================================= */

.zyno-brand-cta-wrapper{

    margin-top:90px;

    background:linear-gradient(90deg,#7027ff 0%, #b12cff 40%, #ff5e00 100%);

    border-radius:28px;

    padding:12px 63px;

    overflow:hidden;

    position:relative;
}

.zyno-brand-cta-content h2{

    font-size:25px;

    font-weight:800;

    color:#ffffff;

    line-height:1.3;

    margin-bottom:5px;
}

.zyno-brand-cta-content p{

    font-size:17px;

    color:#ffffff;

    line-height:1.9;

    margin-bottom:10px;

    max-width:520px;
}

.zyno-brand-cta-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#ff6a00;

    color:#ffffff;

    text-decoration:none;

    padding:10px 10px;

    border-radius:14px;

    font-size:16px;

    font-weight:700;

    transition:0.4s ease;
}

.zyno-brand-cta-btn:hover{

    background:#111111;

    color:#ffffff;
}

.zyno-brand-cta-image{

    text-align:right;
}

.zyno-brand-cta-image img{

    max-width:69%;

    height:auto;

    object-fit:contain;
}

/* ========================================================= */
/* LAPTOP */
/* ========================================================= */

@media(max-width:1199px){

    .zyno-brand-benefit-heading h2,
    .zyno-brand-tools-heading h2{

        font-size:36px;
    }

    .zyno-brand-cta-content h2{

        font-size:34px;
    }

}

/* ========================================================= */
/* TABLET */
/* ========================================================= */

@media(max-width:991px){

    .zyno-branding-extra-section{

        padding:70px 0;
    }

    .zyno-brand-benefit-heading h2,
    .zyno-brand-tools-heading h2{

        font-size:32px;
    }

    .zyno-brand-cta-wrapper{

        padding:45px 35px;
    }

    .zyno-brand-cta-content{

        text-align:center;

        margin-bottom:40px;
    }

    .zyno-brand-cta-image{

        text-align:center;
    }

}

/* ========================================================= */
/* MOBILE */
/* ========================================================= */

@media(max-width:767px){

    .zyno-brand-benefit-heading{

        margin-bottom:45px;
    }

    .zyno-brand-tools-heading{

        margin-top:70px;

        margin-bottom:40px;
    }

    .zyno-brand-benefit-heading h2,
    .zyno-brand-tools-heading h2{

        font-size:27px;

        line-height:1.4;
    }

    /* IMPORTANT */

    /* ONE BY ONE BELOW */

    .zyno-brand-benefit-card,
    .zyno-brand-tool-box{

        margin-bottom:0;
    }

    .zyno-brand-cta-wrapper{

        margin-top:70px;

        padding:40px 25px;

        border-radius:24px;
    }

    .zyno-brand-cta-content h2{

        font-size:28px;
    }

    .zyno-brand-cta-content p{

        font-size:15px;
    }

    .zyno-brand-cta-btn{

        width:100%;

        justify-content:center;
    }

}

/* ========================================================= */
/* SMALL MOBILE */
/* ========================================================= */

@media(max-width:575px){

    .zyno-branding-extra-section{

        padding:60px 0;
    }

    .zyno-brand-benefit-heading h2,
    .zyno-brand-tools-heading h2{

        font-size:24px;
    }

    .zyno-brand-benefit-card{

        padding:30px 18px;
    }

    .zyno-brand-benefit-icon{

        width:62px;
        height:62px;

        font-size:24px;
    }

    .zyno-brand-benefit-card h4{

        font-size:18px;
    }

    .zyno-brand-benefit-card p{

        font-size:14px;
    }

    .zyno-brand-tool-box{

        padding:18px;
    }

    .zyno-brand-cta-content h2{

        font-size:24px;
    }

}


 body {
      margin: 0;
      font-family: 'Outfit', sans-serif;
      background: #ffffff;
      color: #071426;
    }

    .nxm-branding-service-area {
      padding: 90px 0;
      background:
        radial-gradient(circle at 10% 15%, rgba(255, 107, 0, 0.08), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(93, 61, 255, 0.08), transparent 28%),
        #ffffff;
      overflow: hidden;
    }

    .nxm-branding-service-title {
      margin-bottom: 45px;
    }

    .nxm-branding-service-title span,
    .nxm-branding-process-title span {
      display: inline-block;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1px;
      color: #ff6b00;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .nxm-branding-service-title h2,
    .nxm-branding-process-title h2 {
      font-size: 40px;
      font-weight: 800;
      color: #071426;
      margin: 0;
      line-height: 1.2;
    }

    .nxm-branding-service-title h2 strong {
      color: #ff6b00;
    }

    .nxm-branding-service-card {
      height: 100%;
      min-height: 305px;
      padding: 30px 18px 26px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid #e8edf5;
      border-radius: 24px;
      text-align: center;
      box-shadow: 0 18px 45px rgba(7, 20, 38, 0.08);
      transition: 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .nxm-branding-service-card::before {
      content: "";
      position: absolute;
      top: -70px;
      right: -70px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(255, 107, 0, 0.08);
      transition: 0.35s ease;
    }

    .nxm-branding-service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 65px rgba(7, 20, 38, 0.14);
      border-color: rgba(255, 107, 0, 0.35);
    }

    .nxm-branding-service-card:hover::before {
      transform: scale(1.3);
    }

    .nxm-branding-service-icon {
      width: 96px;
      height: 96px;
      margin: 0 auto 22px;
      border-radius: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow:
        inset 0 -8px 14px rgba(255, 255, 255, 0.7),
        0 14px 28px rgba(7, 20, 38, 0.12);
      z-index: 1;
    }

    .nxm-branding-service-icon img {
      width: 70px;
      height: 70px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 10px 12px rgba(7, 20, 38, 0.18));
      transition: 0.35s ease;
    }

    .nxm-branding-service-card:hover .nxm-branding-service-icon img {
      transform: scale(1.08) rotate(-4deg);
    }

    .nxm-purple-bg {
      background: linear-gradient(145deg, #f0e8ff, #ffffff);
    }

    .nxm-orange-bg {
      background: linear-gradient(145deg, #fff0df, #ffffff);
    }

    .nxm-blue-bg {
      background: linear-gradient(145deg, #e8f3ff, #ffffff);
    }

    .nxm-green-bg {
      background: linear-gradient(145deg, #e9fff2, #ffffff);
    }

    .nxm-pink-bg {
      background: linear-gradient(145deg, #ffeaf5, #ffffff);
    }

    .nxm-light-orange-bg {
      background: linear-gradient(145deg, #fff5e8, #ffffff);
    }

    .nxm-branding-service-card h4 {
      font-size: 18px;
      font-weight: 800;
      color: #071426;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .nxm-branding-service-card p {
      font-size: 14px;
      line-height: 1.6;
      font-weight: 500;
      color: #607086;
      margin: 0;
      position: relative;
      z-index: 1;
    }

    .nxm-branding-process-title {
      margin: 80px 0 40px;
    }

    .nxm-branding-process-wrap {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 16px;
      flex-wrap: nowrap;
    }

    .nxm-branding-process-box {
      width: 190px;
      padding: 26px 16px;
      background: #ffffff;
      border: 1px solid #e8edf5;
      border-radius: 24px;
      text-align: center;
      box-shadow: 0 18px 45px rgba(7, 20, 38, 0.08);
      transition: 0.35s ease;
    }

    .nxm-branding-process-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(7, 20, 38, 0.13);
    }

    .nxm-branding-process-icon {
      width: 78px;
      height: 78px;
      border-radius: 24px;
      margin: 0 auto 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        inset 0 -8px 14px rgba(255, 255, 255, 0.7),
        0 12px 24px rgba(7, 20, 38, 0.12);
    }

    .nxm-branding-process-icon img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 8px 10px rgba(7, 20, 38, 0.18));
    }

    .nxm-process-purple {
      background: linear-gradient(145deg, #f0e8ff, #ffffff);
    }

    .nxm-process-orange {
      background: linear-gradient(145deg, #fff0df, #ffffff);
    }

    .nxm-process-blue {
      background: linear-gradient(145deg, #e8f3ff, #ffffff);
    }

    .nxm-process-green {
      background: linear-gradient(145deg, #e9fff2, #ffffff);
    }

    .nxm-process-pink {
      background: linear-gradient(145deg, #ffeaf5, #ffffff);
    }

    .nxm-branding-process-box h4 {
      font-size: 24px;
      font-weight: 800;
      color: #ff6b00;
      margin-bottom: 8px;
    }

    .nxm-branding-process-box h5 {
      font-size: 16px;
      font-weight: 800;
      color: #071426;
      margin-bottom: 10px;
    }

    .nxm-branding-process-box p {
      font-size: 13px;
      line-height: 1.5;
      font-weight: 500;
      color: #607086;
      margin: 0;
    }

    .nxm-branding-process-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ff6b00;
      font-size: 26px;
      font-weight: 800;
    }

    .nxm-branding-process-arrow span {
      display: inline-flex;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: #fff1e8;
      color: #ff6b00;
    }

    @media (max-width: 1199px) {
      .nxm-branding-process-wrap {
        flex-wrap: wrap;
      }

      .nxm-branding-process-arrow {
        display: none;
      }

      .nxm-branding-process-box {
        width: calc(33.333% - 16px);
      }
    }

    @media (max-width: 991px) {
      .nxm-branding-service-area {
        padding: 70px 0;
      }

      .nxm-branding-service-title h2,
      .nxm-branding-process-title h2 {
        font-size: 32px;
      }

      .nxm-branding-process-box {
        width: calc(50% - 16px);
      }
    }

    @media (max-width: 575px) {
      .nxm-branding-service-area {
        padding: 55px 0;
      }

      .nxm-branding-service-title h2,
      .nxm-branding-process-title h2 {
        font-size: 27px;
      }

      .nxm-branding-service-card {
        min-height: auto;
      }

      .nxm-branding-process-box {
        width: 100%;
      }
    }



    

.ds-icon-img{
    width:245px;
    height:238px;
    object-fit:contain;
    display:block;
    margin:auto;
}


 /* =============================================
       OB SQUARE — GROW YOUR BUSINESS SECTION CSS
       Paste this into your existing CSS file
    ============================================= */
 
    :root {
      --obs-orange:      #F26522;
      --obs-orange-dark: #d44e15;
      --obs-purple:      #7B2FBE;
      --obs-red:         #e8401a;
    }
 
    /* ---------- Section Wrapper ---------- */
    .obs-section {
      background: #ffffff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
 
    /* Warm dot background texture */
    .obs-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(242,101,34,.052) 1px, transparent 1px);
      background-size: 26px 26px;
      pointer-events: none;
    }
 
    /* Top-right blush glow — matches your reference screenshot */
    .obs-section::after {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 460px;
      height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,200,150,.16) 0%, transparent 68%);
      pointer-events: none;
    }
 
    .obs-section .container {
      position: relative;
      z-index: 1;
    }
 
    /* ---------- LEFT COLUMN ---------- */
    .obs-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 24px;
    }
 
    /* Badge pill — exactly as in screenshot */
    .obs-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(242,101,34,.08);
      border: 1.5px solid rgba(242,101,34,.22);
      border-radius: 50px;
      padding: 7px 20px;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--obs-orange);
      margin-bottom: 28px;
      width: fit-content;
    }
 
    /* Big rotating word headline */
    .obs-headline {
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: clamp(46px, 5.5vw, 68px);
      line-height: 1.08;
      margin-bottom: 24px;
      display: flex;
      align-items: baseline;
      white-space: nowrap;
    }
 
    /* Slot-machine word container */
    .obs-word-slot {
      display: inline-block;
      overflow: hidden;
      height: 1.08em;
      vertical-align: bottom;
    }
 
    .obs-word-track {
      display: flex;
      flex-direction: column;
    }
 
    .obs-word-track .obs-w {
      display: block;
      line-height: 1.08;
    }
 
    .obs-dot {
      color: var(--obs-orange);
    }
 
    /* One-line description */
    .obs-desc {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.7;
      color: #777777;
      margin: 0;
      max-width: 430px;
    }
 
    /* ---------- RIGHT COLUMN — Rocket Scene ---------- */
    .obs-right {
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    #obs-scene {
      width: 100%;
      max-width: 500px;
      height: 500px;
      background: #ffffff;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(242,101,34,.13);
      box-shadow:
        0 4px 48px rgba(242,101,34,.09),
        0 1px 0 rgba(255,255,255,.9) inset,
        0 24px 60px rgba(0,0,0,.05);
    }
 
    /* Inner dot texture */
    #obs-scene::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(242,101,34,.046) 1px, transparent 1px);
      background-size: 22px 22px;
      pointer-events: none;
      z-index: 0;
    }
 
    /* Atmosphere layers */
    .sc-topwash {
      position: absolute; top: 0; left: 0; right: 0; height: 150px;
      background: linear-gradient(180deg, rgba(255,248,243,.9) 0%, transparent 100%);
      pointer-events: none; z-index: 0;
    }
    .sc-horizon {
      position: absolute; bottom: 0; left: 0; right: 0; height: 155px;
      background: linear-gradient(0deg, rgba(255,236,218,.5) 0%, transparent 100%);
      pointer-events: none; z-index: 0;
    }
    .sc-grid {
      position: absolute; bottom: 0; left: 0; right: 0; height: 145px;
      background:
        linear-gradient(rgba(242,101,34,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242,101,34,.05) 1px, transparent 1px);
      background-size: 30px 30px;
      -webkit-mask: linear-gradient(to top, rgba(0,0,0,.52) 0%, transparent 100%);
      mask: linear-gradient(to top, rgba(0,0,0,.52) 0%, transparent 100%);
      z-index: 1;
    }
 
    /* Corner brackets */
    .sc-corner {
      position: absolute; width: 12px; height: 12px;
      z-index: 8; pointer-events: none;
    }
    .sc-corner.tl { top:13px; left:13px;
      border-top:  1.5px solid rgba(242,101,34,.25);
      border-left: 1.5px solid rgba(242,101,34,.25); }
    .sc-corner.tr { top:13px; right:13px;
      border-top:   1.5px solid rgba(242,101,34,.25);
      border-right: 1.5px solid rgba(242,101,34,.25); }
    .sc-corner.bl { bottom:13px; left:13px;
      border-bottom: 1.5px solid rgba(242,101,34,.25);
      border-left:   1.5px solid rgba(242,101,34,.25); }
    .sc-corner.br { bottom:13px; right:13px;
      border-bottom: 1.5px solid rgba(242,101,34,.25);
      border-right:  1.5px solid rgba(242,101,34,.25); }
 
    /* HUD panels */
    .sc-hud {
      position: absolute;
      font-family: 'Rajdhani', sans-serif;
      font-size: 10px; line-height: 2;
      letter-spacing: 1.2px;
      color: #c09878;
      pointer-events: none; z-index: 8;
    }
    .sc-hud-l {
      top: 16px; left: 16px;
      border-left: 2px solid rgba(242,101,34,.16);
      padding-left: 9px;
    }
    .sc-hud-r {
      top: 16px; right: 16px;
      border-right: 2px solid rgba(242,101,34,.16);
      padding-right: 9px;
      text-align: right;
    }
    .sc-hud b { color: #F26522; font-weight: 700; }
    .sc-hud-bar {
      width: 60px; height: 2.5px;
      background: rgba(242,101,34,.1);
      border-radius: 2px; margin-top: 2px; overflow: hidden;
    }
    .sc-hud-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #e05010, #F26522, #ffaa44);
      border-radius: 2px;
      animation: obs-hbf 2.5s ease-in-out infinite;
    }
    @keyframes obs-hbf {
      0%,100% { width: 20%; }
      50%      { width: 100%; }
    }
 
    /* Launch platform */
    #sc-plat {
      position: absolute; bottom: 74px; left: 50%;
      transform: translateX(-50%);
      width: 190px; z-index: 3;
    }
    .sc-plat-lights {
      display: flex; justify-content: space-around;
      padding: 0 10px; margin-bottom: 3px;
    }
    .sc-plt-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: #F26522;
      box-shadow: 0 0 6px rgba(242,101,34,.55);
      animation: obs-pltb var(--b, .7s) ease-in-out infinite alternate;
    }
    @keyframes obs-pltb {
      from { opacity: .18; box-shadow: none; }
      to   { opacity: 1;   box-shadow: 0 0 10px rgba(242,101,34,.85); }
    }
    .sc-plat-top {
      height: 11px;
      background: linear-gradient(180deg, #fff8f4, #f0e0d0);
      border-radius: 4px;
      border: 1px solid rgba(242,101,34,.17);
      box-shadow: 0 2px 10px rgba(242,101,34,.08), 0 1px 0 rgba(255,255,255,.8) inset;
    }
    .sc-plat-arms {
      display: flex; justify-content: space-between;
      padding: 0 16px;
    }
    .sc-plat-arm {
      width: 5px; height: 23px;
      background: linear-gradient(180deg, #e8d0c0, #c8a890);
      border-radius: 0 0 2px 2px;
    }
    .sc-plat-shadow {
      position: absolute; bottom: 70px; left: 50%;
      transform: translateX(-50%);
      width: 205px; height: 11px;
      background: radial-gradient(ellipse, rgba(242,101,34,.11) 0%, transparent 70%);
      pointer-events: none; z-index: 2;
    }
 
    /* Exhaust trail */
    #sc-trail {
      position: absolute; bottom: 85px; left: 50%;
      transform: translateX(-50%);
      width: 6px; height: 0; border-radius: 4px;
      background: linear-gradient(0deg, transparent, rgba(255,175,75,.18), rgba(242,101,34,.5));
      pointer-events: none; z-index: 3;
      transform-origin: bottom center;
    }
    #sc-trail.active {
      animation: obs-trail 2.9s ease-in forwards;
    }
    @keyframes obs-trail {
      0%   { height: 0;   opacity: .9; }
      100% { height: 74%; opacity: .07; }
    }
 
    /* Rocket wrapper */
    #sc-rw {
      position: absolute; bottom: 85px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center;
      pointer-events: none; z-index: 6;
    }
    #sc-rw.obs-launch {
      animation: obs-rkup 2.9s cubic-bezier(.38,0,.14,1) forwards;
    }
    @keyframes obs-rkup {
      0%   { bottom: 85px;  opacity: 1; }
      11%  { bottom: 65px; }
      18%  { bottom: 108px; }
      100% { bottom: 116%;  opacity: 1; }
    }
 
    /* Flame canvas */
    #sc-fc { margin-top: -6px; display: none; }
 
    /* Explosion shards */
    #sc-expl {
      position: absolute; top: 26%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none; z-index: 12; display: none;
    }
    .sc-shard {
      position: absolute; transform-origin: center;
      animation: obs-shard var(--dur, .6s) cubic-bezier(.1,.8,.3,1) forwards;
    }
    @keyframes obs-shard {
      0%   { transform: translate(-50%,-50%) scale(1) rotate(0deg); opacity: 1; }
      100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty)))
                         scale(0) rotate(var(--rot)); opacity: 0; }
    }
 
    /* Shockwave ring */
    #sc-sw {
      position: absolute; top: 26%; left: 50%;
      transform: translate(-50%, -50%);
      width: 10px; height: 10px; border-radius: 50%;
      pointer-events: none; z-index: 11; display: none;
    }
    #sc-sw.pop {
      display: block;
      animation: obs-sw .82s ease-out forwards;
    }
    @keyframes obs-sw {
      0%   { width:10px;  height:10px;  opacity:1; border:2.5px solid rgba(242,101,34,.9); margin:0; }
      100% { width:340px; height:340px; margin:-165px; opacity:0; border:1.5px solid rgba(242,101,34,0); }
    }
 
    /* Success message */
    #sc-msg {
      position: absolute; top: 32%; left: 50%;
      transform: translate(-50%, -50%);
      text-align: center; opacity: 0;
      pointer-events: none; z-index: 15; width: 90%;
    }
    #sc-msg.show {
      animation: obs-msgin 1.1s cubic-bezier(.34,1.4,.64,1) forwards;
    }
    @keyframes obs-msgin {
      0%   { opacity:0; transform:translate(-50%,-50%) scale(.5) translateY(28px); }
      65%  { transform:translate(-50%,-50%) scale(1.04) translateY(-5px); }
      100% { opacity:1; transform:translate(-50%,-50%) scale(1) translateY(0); }
    }
    #sc-msg h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: clamp(17px, 3vw, 24px);
      color: #2a1a0a; line-height: 1.32; margin: 0;
    }
    #sc-msg h3 em { font-style: normal; color: #F26522; }
    #sc-msg .obs-msgline {
      width: 52px; height: 2px;
      background: linear-gradient(90deg, transparent, #F26522, transparent);
      margin: 12px auto;
    }
    #sc-msg p {
      font-family: 'Rajdhani', sans-serif;
      font-size: 11.5px; letter-spacing: 3px;
      color: #c07040; font-weight: 600; margin: 0;
    }
 
    /* Countdown */
    #sc-cdr {
      position: absolute; bottom: 178px; left: 50%;
      transform: translateX(-50%);
      display: none; flex-direction: column; align-items: center; z-index: 20;
    }
    #sc-cdr.show { display: flex; }
    #sc-cdn {
      font-family: 'Exo 2', sans-serif;
      font-size: 72px; font-weight: 900; color: #F26522;
      line-height: 1;
      text-shadow: 0 4px 24px rgba(242,101,34,.2);
      animation: obs-cdpop .5s cubic-bezier(.34,1.56,.64,1);
    }
    @keyframes obs-cdpop {
      from { transform: scale(.28); opacity: 0; }
      to   { transform: scale(1);   opacity: 1; }
    }
    #sc-cdl {
      font-family: 'Rajdhani', sans-serif;
      font-size: 10px; letter-spacing: 3.5px; color: #d08050;
      margin-top: 5px;
    }
 
    /* Launch button */
    #sc-btn {
      font-family: 'Poppins', sans-serif;
      font-weight: 700; font-size: 13px;
      letter-spacing: 2px; color: #ffffff;
      background: linear-gradient(135deg, #d44e15 0%, #F26522 55%, #ff8c42 100%);
      border: none; padding: 15px 44px; border-radius: 6px;
      cursor: pointer; position: relative; overflow: hidden; z-index: 10;
      box-shadow: 0 6px 28px rgba(242,101,34,.36), 0 1px 0 rgba(255,255,255,.2) inset;
      transition: transform .2s, box-shadow .25s;
    }
    #sc-btn::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.16) 0%, transparent 60%);
      pointer-events: none;
    }
    #sc-btn:hover  { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(242,101,34,.5); }
    #sc-btn:active { transform: scale(.97); }
 
    /* Bottom status label */
    #sc-sb {
      position: absolute; bottom: 12px; left: 50%;
      transform: translateX(-50%);
      font-family: 'Rajdhani', sans-serif;
      font-size: 9px; letter-spacing: 2px;
      color: rgba(200,120,60,.30);
      white-space: nowrap; pointer-events: none; z-index: 6;
    }
 
    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 991px) {
      .obs-left    { padding-right: 0; margin-bottom: 48px; }
      .obs-headline{ font-size: clamp(38px, 9vw, 54px); }
      #obs-scene   { height: 440px; }
    }
    @media (max-width: 575px) {
      .obs-section  { padding: 64px 0; }
      .obs-headline { font-size: 40px; white-space: normal; }
      #obs-scene    { height: 380px; }
    }

    .custom-v-logo{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff004f,#ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(255,0,79,0.35);
}

.custom-v-logo:hover{
    transform: translateY(-5px) scale(1.08);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255,0,79,0.5);
}

/* =========================================
   STUDIO HERO SECTION
========================================= */

.studio-hero-section{
    background: #020817;
    overflow: hidden;
}

/* LEFT SIDE */

.studio-content{
    height: 100%;
    padding: 60px 40px;
    background:
    linear-gradient(
        90deg,
        rgba(2,8,23,1) 0%,
        rgba(3,11,30,0.96) 60%,
        rgba(2,8,23,0.88) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-breadcrumb{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
}

.studio-breadcrumb a{
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

.studio-breadcrumb span{
    color: #ffffff;
    opacity: 0.8;
}

.studio-content h1{
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.studio-content h1 span{
    color: #ff7a00;
}

.studio-content h5{
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.studio-content p{
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 35px;
}

/* FEATURES */

.studio-features{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.feature-box{
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 210px;
    transition: 0.4s ease;
}

.feature-box:hover{
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.12);
}

.feature-icon{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-box h6{
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 700;
}

.feature-box span{
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

/* ICON COLORS */

.orange{
    background: rgba(255,122,0,0);
    color: #ff7a00;
}

.purple{
    background: rgba(162,89,255,0.12);
    color: #a259ff;
}

.blue{
    background: rgba(0,140,255,0.12);
    color: #008cff;
}

.green{
    background: rgba(0,255,132,0.12);
    color: #00ff84;
}

/* RIGHT IMAGE */

.studio-image{
    height: 100%;
    position: relative;
}

.studio-image img{
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    border-radius: 10px;
    /* min-height: 650px; */
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px){

    .studio-content{
        padding: 50px 25px;
    }

    .studio-content h1{
        font-size: 42px;
    }

    .studio-content h5{
        font-size: 20px;
    }

    .studio-image img{
        min-height: 500px;
    }

    .feature-box{
        min-width: 48%;
    }
}

@media (max-width: 767px){

    .studio-content{
        padding: 40px 20px;
    }

    .studio-content h1{
        font-size: 34px;
    }

    .studio-content h5{
        font-size: 18px;
        line-height: 1.6;
    }

    .studio-content p{
        font-size: 15px;
    }

    .studio-features{
        flex-direction: column;
    }

    .feature-box{
        width: 100%;
        min-width: 100%;
    }

    .studio-image img{
        min-height: 350px;
    }
}


/* ===================================
   OBS CREATIVE SECTION
=================================== */

.obs-creative-zone{
    background: #020817;
    padding: 31px 0;
    overflow: hidden;
}

/* BOX */

.obs-studio-box{
    background:
    linear-gradient(
        90deg,
        #020b1f 0%,
        #03132f 50%,
        #020b1f 100%
    );

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;

    box-shadow:
    0 0 20px rgba(0,0,0,0.5),
    inset 0 0 20px rgba(255,255,255,0.02);
}

/* IMAGE */

.obs-media-frame{
    height: 100%;
    overflow: hidden;
    position: relative;
}

.obs-media-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
    transition: 0.6s ease;
}

.obs-studio-box:hover .obs-media-frame img{
    transform: scale(1.06);
}

/* CONTENT */

.obs-content-wrap{
    padding: 42px;
}

.obs-title{
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 14px;
}

.obs-subtitle{
    color: #ff7a00;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
}

.obs-description{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* LIST */

.obs-feature-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.obs-list-item{
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;

    opacity: 0;
    transform: translateX(40px);
    animation: obsListReveal 0.8s ease forwards;
}

.obs-list-item:nth-child(1){
    animation-delay: 1s;
}

.obs-list-item:nth-child(2){
    animation-delay: 1.2s;
}

.obs-list-item:nth-child(3){
    animation-delay: 1.4s;
}

.obs-list-item:nth-child(4){
    animation-delay: 1.6s;
}

.obs-feature-list i{
    color: #ff7a00;
    font-size: 16px;
}

.obs-purple-theme i{
    color: #9f5cff;
}

/* ===================================
   SLIDE ANIMATION
=================================== */

.obs-slide-left{
    opacity: 0;
    transform: translateX(-120px);
    animation: obsLeft 1.2s ease forwards;
}

.obs-slide-right{
    opacity: 0;
    transform: translateX(120px);
    animation: obsRight 1.2s ease forwards;
}

@keyframes obsLeft{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes obsRight{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   TYPING EFFECT
=================================== */

.obs-type-1,
.obs-type-2,
.obs-type-3{
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: obsTyping 2s steps(40,end) forwards;
}

.obs-type-1{
    animation-delay: 0.4s;
}

.obs-type-2{
    animation-delay: 1s;
}

.obs-type-3{
    animation-delay: 1.7s;
}

@keyframes obsTyping{
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}

/* ===================================
   LIST REVEAL
=================================== */

@keyframes obsListReveal{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   SHINE EFFECT
=================================== */

.obs-studio-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.05),
        transparent
    );

    transform: translateX(-100%);
    transition: 0.9s;
}

.obs-studio-box:hover::before{
    transform: translateX(100%);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .obs-content-wrap{
        padding: 34px 28px;
    }

    .obs-title{
        font-size: 34px;
    }

    .obs-subtitle{
        font-size: 17px;
    }

    .obs-media-frame img{
        min-height: 300px;
    }
}

@media(max-width:767px){

    .obs-creative-zone{
        padding: 40px 0;
    }

    .obs-content-wrap{
        padding: 28px 20px;
    }

    .obs-title{
        font-size: 28px;
        white-space: normal;
    }

    .obs-subtitle{
        font-size: 15px;
        white-space: normal;
        line-height: 1.6;
    }

    .obs-description{
        font-size: 14px;
    }

    .obs-list-item{
        font-size: 14px;
        align-items: flex-start;
    }

    .obs-type-1,
    .obs-type-2,
    .obs-type-3{
        width: 100%;
        white-space: normal;
        opacity: 0;
        animation: obsFadeUp 1s ease forwards;
    }

    .obs-type-1{
        animation-delay: 0.3s;
    }

    .obs-type-2{
        animation-delay: 0.7s;
    }

    .obs-type-3{
        animation-delay: 1.1s;
    }

    @keyframes obsFadeUp{
        from{
            opacity: 0;
            transform: translateY(20px);
        }
        to{
            opacity: 1;
            transform: translateY(0);
        }
    }
}



/* ======================================
   NX STUDIO SECTION
====================================== */

.nx-studio-highlight-area{
    background: #020817;
    padding: 0px 0;
    overflow: hidden;
}

/* PANEL */

.nx-feature-panel{
    background:
    linear-gradient(
        90deg,
        #020b1e 0%,
        #04142d 50%,
        #020b1e 100%
    );

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;

    box-shadow:
    0 0 25px rgba(0,0,0,0.5),
    inset 0 0 15px rgba(255,255,255,0.03);
}

/* IMAGE */

.nx-visual-box{
    overflow: hidden;
    height: 100%;
    position: relative;
}

.nx-visual-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: 0.7s ease;
}

.nx-feature-panel:hover .nx-visual-box img{
    transform: scale(1.05);
}

/* CONTENT */

.nx-content-box{
    padding: 42px;
}

.nx-heading{
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.nx-subheading{
    color: #ff7a00;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
}

.nx-text{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* LIST */

.nx-points-list{
    list-style: none;
    margin: 0;
    padding: 0;
}

.nx-points-list li{
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nx-points-list i{
    color: #4d7cff;
    font-size: 16px;
}

.nx-green-style i{
    color: #1ddc73;
}

/* ======================================
   SLIDE ANIMATION
====================================== */

.nx-animate-left{
    opacity: 0;
    transform: translateX(-120px);
    animation: nxLeftMove 1.2s ease forwards;
}

.nx-animate-right{
    opacity: 0;
    transform: translateX(120px);
    animation: nxRightMove 1.2s ease forwards;
}

@keyframes nxLeftMove{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nxRightMove{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* ======================================
   TYPING EFFECT
====================================== */

.nx-type-one,
.nx-type-two,
.nx-type-three{
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: nxTyping 2s steps(40,end) forwards;
}

.nx-type-one{
    animation-delay: 0.5s;
}

.nx-type-two{
    animation-delay: 1s;
}

.nx-type-three{
    animation-delay: 1.7s;
}

@keyframes nxTyping{
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}

/* ======================================
   LIST REVEAL
====================================== */

.nx-list-reveal{
    opacity: 0;
    transform: translateX(40px);
    animation: nxListFade 0.8s ease forwards;
}

.nx-list-reveal:nth-child(1){
    animation-delay: 2s;
}

.nx-list-reveal:nth-child(2){
    animation-delay: 2.2s;
}

.nx-list-reveal:nth-child(3){
    animation-delay: 2.4s;
}

.nx-list-reveal:nth-child(4){
    animation-delay: 2.6s;
}

@keyframes nxListFade{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* ======================================
   GLOW EFFECT
====================================== */

.nx-feature-panel::before{
    content: "";
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.05),
        transparent
    );

    transform: translateX(-100%);
    transition: 0.8s ease;
}

.nx-feature-panel:hover::before{
    transform: translateX(100%);
}

/* ======================================
   RESPONSIVE
====================================== */

@media(max-width:991px){

    .nx-content-box{
        padding: 34px 28px;
    }

    .nx-heading{
        font-size: 34px;
    }

    .nx-subheading{
        font-size: 17px;
    }

    .nx-visual-box img{
        min-height: 300px;
    }
}

@media(max-width:767px){

    .nx-studio-highlight-area{
        padding: 40px 0;
    }

    .nx-content-box{
        padding: 28px 20px;
    }

    .nx-heading{
        font-size: 28px;
        white-space: normal;
    }

    .nx-subheading{
        font-size: 15px;
        line-height: 1.6;
        white-space: normal;
    }

    .nx-text{
        font-size: 14px;
    }

    .nx-points-list li{
        font-size: 14px;
        align-items: flex-start;
    }

    .nx-type-one,
    .nx-type-two,
    .nx-type-three{
        width: 100%;
        white-space: normal;
        opacity: 0;
        animation: nxMobileFade 1s ease forwards;
    }

    .nx-type-one{
        animation-delay: 0.3s;
    }

    .nx-type-two{
        animation-delay: 0.8s;
    }

    .nx-type-three{
        animation-delay: 1.2s;
    }

    @keyframes nxMobileFade{
        from{
            opacity: 0;
            transform: translateY(20px);
        }
        to{
            opacity: 1;
            transform: translateY(0);
        }
    }
}



/* =====================================
   ZR CTA STUDIO SECTION
===================================== */

.zr-cta-studio-wrap{
    background: #020817;
    padding: 40px 0;
    overflow: hidden;
}

/* MAIN BOX */

.zr-cta-box{
    background:
    linear-gradient(
        90deg,
        #030b22 0%,
        #24104d 45%,
        #5c1c86 100%
    );

    border-radius: 24px;
    padding: 8px 60px;
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 0 30px rgba(0,0,0,0.45),
    inset 0 0 30px rgba(255,255,255,0.02);
}

/* CONTENT */

.zr-cta-content{
    position: relative;
    z-index: 2;
}

.zr-title{
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.zr-description{
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 30px;
}

/* BUTTON */

.zr-cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: linear-gradient(90deg,#ff6a00,#ff8c2a);
    color: #ffffff;
    text-decoration: none;

    padding: 16px 28px;
    border-radius: 14px;

    font-size: 16px;
    font-weight: 700;

    transition: 0.4s ease;

    box-shadow:
    0 10px 25px rgba(255,106,0,0.35);
}

.zr-cta-btn i{
    font-size: 18px;
    transition: 0.4s ease;
}

.zr-cta-btn:hover{
    transform: translateY(-5px);
    color: #ffffff;
}

.zr-cta-btn:hover i{
    transform: translateX(6px);
}

/* IMAGE AREA */

.zr-visual-area{
    position: relative;
    text-align: center;
}

.zr-visual-area img{
    max-width: 100%;
    width: 460px;
    animation: zrFloatImage 4s ease-in-out infinite;
}

/* FLOATING ICONS */

.zr-floating-icon{
    position: absolute;

    width: 70px;
    height: 70px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #ffffff;

    box-shadow:
    0 12px 30px rgba(0,0,0,0.3);

    animation: zrFloating 3s ease-in-out infinite;
}

.zr-icon-one{
    top: 10%;
    right: 18%;

    background: linear-gradient(180deg,#4d9cff,#256dff);
}

.zr-icon-two{
    top: 35%;
    right: 0;

    background: linear-gradient(180deg,#ff6584,#ff2d55);

    animation-delay: 1s;
}

.zr-icon-three{
    bottom: 12%;
    right: 28%;

    background: linear-gradient(180deg,#ff9d2f,#ff6a00);

    animation-delay: 2s;
}

/* =====================================
   SLIDE ANIMATION
===================================== */

.zr-slide-left{
    opacity: 0;
    transform: translateX(-120px);
    animation: zrLeftMove 1.2s ease forwards;
}

.zr-slide-right{
    opacity: 0;
    transform: translateX(120px);
    animation: zrRightMove 1.2s ease forwards;
}

@keyframes zrLeftMove{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zrRightMove{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================================
   TYPING EFFECT
===================================== */

.zr-type-one,
.zr-type-two{
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: zrTyping 2s steps(40,end) forwards;
}

.zr-type-one{
    animation-delay: 0.5s;
}

.zr-type-two{
    animation-delay: 1.3s;
}

@keyframes zrTyping{
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}

/* =====================================
   FLOATING ANIMATIONS
===================================== */

@keyframes zrFloating{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-12px);
    }
    100%{
        transform: translateY(0px);
    }
}

@keyframes zrFloatImage{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =====================================
   BUTTON GLOW
===================================== */

.zr-btn-animate{
    position: relative;
    overflow: hidden;
}

.zr-btn-animate::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transition: 0.7s ease;
}

.zr-btn-animate:hover::before{
    left: 120%;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px){

    .zr-cta-box{
        padding: 45px 35px;
    }

    .zr-title{
        font-size: 40px;
    }

    .zr-description{
        font-size: 16px;
    }

    .zr-visual-area{
        margin-top: 40px;
    }

    .zr-visual-area img{
        width: 360px;
    }
}

@media(max-width:767px){

    .zr-cta-studio-wrap{
        padding: 40px 0;
    }

    .zr-cta-box{
        padding: 35px 22px;
        border-radius: 18px;
    }

    .zr-title{
        font-size: 30px;
        white-space: normal;
    }

    .zr-description{
        font-size: 14px;
        white-space: normal;
        line-height: 1.8;
    }

    .zr-type-one,
    .zr-type-two{
        width: 100%;
        white-space: normal;
        opacity: 0;
        animation: zrMobileFade 1s ease forwards;
    }

    .zr-type-one{
        animation-delay: 0.3s;
    }

    .zr-type-two{
        animation-delay: 0.8s;
    }

    @keyframes zrMobileFade{
        from{
            opacity: 0;
            transform: translateY(20px);
        }
        to{
            opacity: 1;
            transform: translateY(0);
        }
    }

    .zr-cta-btn{
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 15px 20px;
    }

    .zr-visual-area img{
        width: 100%;
    }

    .zr-floating-icon{
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .zr-icon-one{
        right: 10%;
    }

    .zr-icon-two{
        right: -2%;
    }

    .zr-icon-three{
        right: 20%;
    }
}

/* MAIN SECTION */

.zx-interview-section{
    margin-top:0px;
    background: #020817;
}

/* CARD */

.zx-content-card{

    background:linear-gradient(
        135deg,
        #06101d 0%,
        #09182a 100%
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    overflow:hidden;

    transition:.4s ease;
}

.zx-content-card:hover{

    transform:translateY(-6px);

    border-color:#2f7cff;

    box-shadow:
    0 0 30px rgba(47,124,255,.15);
}

/* IMAGE */

.zx-image-container{
    height:100%;
}

.zx-image-container img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;
}

/* CONTENT */

.zx-text-container{

    padding:35px;
}

.zx-title{

    font-size:42px;

    color:#fff;

    font-weight:700;

    margin-bottom:10px;
}

.zx-tagline{

    font-size:18px;

    color:#2f7cff;

    font-weight:600;

    margin-bottom:20px;
}

.zx-description{

    color:#cfd6df;

    line-height:1.9;

    font-size:15px;

    margin-bottom:25px;
}

/* LIST */

.zx-benefit-list{

    list-style:none;

    padding:0;

    margin:0;
}

.zx-benefit-item{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#fff;

    margin-bottom:14px;

    font-size:15px;
}

.zx-benefit-item i{

    color:#2f7cff;

    font-size:18px;

    margin-top:2px;
}

/* ANIMATION */

.zx-slide-left{
    animation:zxLeft .8s ease;
}

.zx-slide-right{
    animation:zxRight .8s ease;
}

@keyframes zxLeft{

    from{
        opacity:0;
        transform:translateX(-40px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes zxRight{

    from{
        opacity:0;
        transform:translateX(40px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* TABLET */

@media(max-width:991px){

    .zx-text-container{
        padding:30px;
    }

    .zx-title{
        font-size:34px;
    }

}

/* MOBILE */

@media(max-width:767px){

    .zx-text-container{
        padding:25px 20px;
    }

    .zx-title{
        font-size:28px;
    }

    .zx-tagline{
        font-size:16px;
    }

    .zx-description{
        font-size:14px;
    }

    .zx-benefit-item{
        font-size:14px;
    }
}

.aurora-pricing-zone{
    background:#050a17;
    border:1px solid rgba(255,255,255,.08);
    border-radius:0px;
    padding:50px 40px;
    margin-top:0px;
    overflow:hidden;
}

/* LEFT */

.nova-content-panel h6{
    color:#fff;
    font-size:18px;
    margin-bottom:15px;
}

.nova-content-panel h2{
    color:#fff;
    font-size:35px;
    font-weight:700;
    line-height:1.2;
}

.nova-content-panel h2 span{
    color:#ff6a00;
}

.nova-content-panel p{
    color:#cfcfcf;
    margin:20px 0;
    line-height:1.8;
}

.nova-feature-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.nova-mini-feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:14px;
}

.green i{color:#00d26a;}
.purple i{color:#9c5fff;}
.red i{color:#ff4040;}
.orange i{color:#e08a04;}

.nova-book-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    text-decoration:none;
    color:#fff;
    padding:14px 25px;
    border:1px solid #ff6a00;
    border-radius:50px;
    transition:.4s;
}

.nova-book-btn:hover{
    background:#ff6a00;
    color:#fff;
}

/* PRICE */

.orbit-price-wrapper{
    position:relative;
    width:300px;
    height:300px;
    margin:auto;
}

.orbit-ring{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:4px solid #ff6a00;
    box-shadow:
    0 0 20px #ff6a00,
    0 0 50px #ff6a00;
}

.orbit-ring-two{
    inset:18px;
    opacity:.4;
}

.orbit-price-box{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.orbit-price-box span{
    color:#ff6a00;
    font-size:14px;
    letter-spacing:2px;
}

.orbit-price-box h1{
    color:#fff;
    font-size:70px;
    font-weight:800;
}

.orbit-price-box p{
    color:#ff8a00;
    font-size:22px;
}

/* INCLUDED */

.cosmic-included-box{
    background:#101827;
    border-radius:18px;
    padding:30px;
}

.cosmic-included-box h4{
    color:#fff;
    margin-bottom:25px;
}

.cosmic-included-box ul{
    list-style:none;
    padding:0;
}

.cosmic-included-box li{
    color:#d8d8d8;
    margin-bottom:14px;
}

.cosmic-included-box i{
    color:#ff6a00;
    margin-right:10px;
}

/* BOTTOM */

.stellar-bottom-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:30px;
}

.stellar-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.stellar-item i{
    color:#ff6a00;
    font-size:24px;
}

.stellar-item h6{
    color:#fff;
    margin:0;
}

.stellar-item p{
    color:#bfbfbf;
    margin:0;
    font-size:14px;
}

/* MOBILE */

@media(max-width:991px){

    .orbit-price-wrapper{
        width:250px;
        height:250px;
        margin:30px auto;
    }

    .stellar-bottom-strip{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:767px){

    .nova-content-panel h2{
        font-size:34px;
    }

    .orbit-price-box h1{
        font-size:50px;
    }

    .nova-feature-row{
        grid-template-columns:1fr;
    }

    .stellar-bottom-strip{
        grid-template-columns:1fr;
    }

}

/* ============================= */
/* STATS CARD PROPER SIZE FIX */
/* ============================= */

.stats-row {
  margin-top: 25px;
}

.stats-card {
  width: 100%;
  min-height: 115px;
  padding: 22px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.stats-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-icon i {
  font-size: 20px;
}

.stats-card h3 {
  font-size: 26px;
  line-height: 1;
  margin: 0 0 8px;
  font-weight: 800;
  color: #020617;
}

.stats-card p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: #475569;
}

/* iPad Pro / Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  .stats-row > div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .stats-card {
    min-height: 125px;
    padding: 24px 22px;
  }

  .stats-card h3 {
    font-size: 36px;
  }

  .stats-card p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .stats-row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stats-card {
    min-height: 105px;
    padding: 20px 18px;
  }

  .stats-card h3 {
    font-size: 30px;
  }
}







































































































































































































































































































