:root {
    --header-height: 33px;
    --brand-gradient: linear-gradient(135deg, #ffb703, #ff7a00);
}
html{
    scroll-behavior:smooth;
}
.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    background: #0f172a;
    color: #fff;
}

/* DEFAULT HEADER */
#siteHeader{
    background: transparent;
}

/* AFTER SCROLL */
#siteHeader.scrolled{
    background:#ffffff;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

/* change nav color when white */
#siteHeader.scrolled .nav-link{
    color:#020617;
}

#siteHeader.scrolled span{
    background:#020617;
}
.nav-link{
    color:#fff;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    background: linear-gradient(135deg,#ffb703,#ff7a00);
    background-clip:text;
    -webkit-text-fill-color:transparent;
}
.hamburger-line{
    display:block;
    width:28px;
    height:5px;
    background:#ffffff;
    transition:background .3s ease;
}
#mobileMenu{
    transition: right .35s ease;
}
#siteHeader.scrolled .hamburger-line{
    background:#020617;
    display: block;
  width: 28px;
  height: 5px;

  transition: background .3s ease;
}
#siteHeader.scrolled #menuBtn{
    transform:scale(.95);
}

.mobile-link{
    color:#fff;
    font-size:20px;
    transition:.3s;
    text-decoration:none;
}

.mobile-link:hover{
    color:#ffb703;
}
/* ACTIVE LINK */
.nav-link.active{
    background: linear-gradient(135deg,#ffb703,#ff7a00);
    background-clip:text;
    -webkit-text-fill-color:transparent;
    font-weight:600;
}

/* mobile */
.mobile-link.active{
    color:#ffb703;
}
.hero-section {
    background: 
        linear-gradient(
            rgba(2, 6, 23, 0.85),
            rgba(2, 6, 23, 0.85)
        ),
        url("/images/hero-bg.jpg") center / cover no-repeat;

    color: #fff;
    padding-top: 80px; /* header offset */
     position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}
/* HERO IMAGE FLOAT */
.hero-image {
    animation: heroFloat 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

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

/* Slight interaction on hover */
.hero-image:hover {
    transform: scale(1.02) translateY(-6px);
}


/* TEXT */
.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    font-family: 'Jost', sans-serif;
}
.hero-title span {
    color: #38bdf8;
}
.hero-subtitle {
    font-size: 18px;
    color: #cbd5f5;
    margin-top: 20px;
    max-width: 520px;
}
.hero-cta {
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    color: #020617;
    background: var(--brand-gradient);
    border: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255, 122, 0, 0.35);
    filter: brightness(1.05);
}
.hero-cta::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: var(--brand-gradient);
    opacity: 0.25;
    filter: blur(20px);
    z-index: -1;
}

/* IMAGE */
.hero-image {
    max-width: 90%;
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-image {
        margin-bottom: 40px;
    }
}
/* BASE */
.hero-decor {
    position: absolute;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: roam 20s linear infinite;
}

/* DOT */
.decor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-gradient);
}

/* RING */
.decor-ring {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-gradient);
    mask: radial-gradient(circle at center, transparent 55%, black 56%);
    -webkit-mask: radial-gradient(circle at center, transparent 55%, black 56%);
    box-shadow: 0 0 14px rgba(255, 122, 0, 0.5);
}

/* SOFT GLOW */
.decor-soft {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 167, 38, 0.35),
        rgba(255, 122, 0, 0.15),
        transparent 70%
    );
    filter: blur(8px);
}

/* POSITIONS */
.decor-1 { top: 20%; left: 10%; animation-duration: 26s; }
.decor-2 { top: 60%; left: 15%; animation-duration: 22s; }
.decor-3 { top: 30%; left: 80%; animation-duration: 24s; }
.decor-4 { top: 70%; left: 70%; animation-duration: 28s; }
.decor-5 { top: 15%; left: 55%; animation-duration: 30s; }
.decor-6 { top: 50%; left: 40%; animation-duration: 35s; }

/* ROAMING */
@keyframes roam {
    0% { transform: translate(0,0); }
    25% { transform: translate(40px,-30px); }
    50% { transform: translate(-30px,40px); }
    75% { transform: translate(30px,20px); }
    100% { transform: translate(0,0); }
}

/* HOVER INTERACTION */
.hero-decor:hover {
    transform: scale(1.6);
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
}


.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-decor::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, rgba(56,189,248,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 50%;
    left: 100%;
}

.hero-decor:hover::after {
    opacity: 1;
}



.services-section {
    background: #f5f5f5;
    padding: 90px 0;
    color: #fff;

}

/* LEFT */
.services-left {
    max-width: 360px;
}

.services-caption {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #ffb703;
    margin-bottom: 12px;
}

.services-title {
    font-family: 'Jost', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin: 14px 0;
    color:#020617;
}

.services-text {
    color: #1e1b3a;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
   
    font-size: 17px;
}

/* CARD */
.service-card {
    background: #1e1b3a;
    border-radius: 20px;
    padding: 22px;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Jost', sans-serif;
    font-weight:700;
}

.service-card p {
    font-size: 15px;
    color: #cbd5f5;
}

.service-card a {
    color: #ffb703;
    font-weight: 600;
    text-decoration: none;
}
.services-swiper {
    width: 100%;
    
    overflow: visible;
}
.services-swiper .swiper-slide {
    display: flex;
    height: auto;
}
.services-slider-full {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}
/* SWIPER */

.swiper-wrapper {
    align-items: center;
}
/* MOBILE */
@media (max-width: 991px) {
    .services-left {
        margin-bottom: 40px;
    }

    .services-title {
        font-size: 32px;
    }
}
.drag-hint {
    position: absolute;
    right: 40px;
    top: -40px;
    font-size: 14px;
    color: #cbd5f5;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.drag-hint span {
    display: inline-block;
    animation: dragMove 1.6s ease-in-out infinite;
}

@keyframes dragMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}

/* Hide on mobile (touch users already know) */
@media (max-width: 768px) {
    .drag-hint {
        display: none;
    }
}



.services-pagination {
    margin-top: 30px;
    text-align: center;
}

.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #1e1b3a;
    opacity: 1;
    margin-right: 8px;
}

.services-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #ffb703, #ff7a00);
    transform: scale(1.3);
}

.services-slider-col {
    position: relative;
}

.services-slider-wrap {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; /* ⭐ hides 4th card */
}
@media (max-width: 991px) {
    .services-slider-wrap {
        margin-right: 0;
        padding-right: 0;
    }

    .services-left {
        max-width: 100%;
    }
}


.process-section {
    background: #020617;
    padding: 120px 0;
    color: #fff;
}

/* Caption */
.process-caption {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

/* Title */
.process-title {
    font-family: 'Jost', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin: 14px 0;
}

/* Subtitle */
.process-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: #cbd5f5;
    font-size: 17px;
}

/* Card */
.process-card {
    background: #1e1b3a;
    border-radius: 22px;
    padding: 36px 24px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.15);
}

/* Icon wrapper */
.process-icon {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        rgba(255,183,3,0.15),
        rgba(255,122,0,0.15)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    max-width: 60%;
}

/* Step number */
.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #020617;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card text */
.process-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 991px) {
    .process-title {
        font-size: 34px;
    }
}


.portfolio-section{
    background: #f5f5f5;
  padding: 90px 0;
  
}

.contact-section {
    background: #020617;
    padding: 120px 0;
    color: #fff;
}

/* LEFT IMAGE */
.contact-image-wrap {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    text-align:center;
    
}

.contact-image-wrap img {
    width: 70%;
    height: 100%;
    object-fit: cover;
}

/* CAPTION */
.contact-caption {
    font-family: 'Jost', sans-serif;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

/* TITLE */
.contact-title {
    font-family: 'Jost', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-top: 12px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

/* BUTTON */
.contact-btn {
    background: linear-gradient(135deg, #ffb703, #ff7a00);
    border: none;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    color: #020617;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,122,0,0.4);
}

/* MOBILE */
@media (max-width: 991px) {
    .contact-title {
        font-size: 34px;
    }
}

/* CARD */
.portfolio-card{
    background:#020617;
    border-radius:20px;
    padding:10px 10px 22px;
    transition:.35s ease;
    height:100%;
    text-align: center;
}

.portfolio-card:hover{
    transform:translateY(-8px);
}

/* PREVIEW AREA */
.portfolio-preview{
    background:#f1f5f9;
    border-radius:18px;
    padding: 5px 5px;
    display:flex;
    gap:16px;
    align-items:flex-start;
}

/* MAIN WEBSITE */
.portfolio-main{
    flex:1;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.portfolio-main img{
    width:100%;
    display:block;
    height:240px;
}

/* SIDE IMAGE (mobile / inner pages) */
.portfolio-side{
    
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.portfolio-side img{
    width:100%;
    display:block;
    height:240px;
}

/* INFO */
.portfolio-info{
    margin-top:18px;
}

.portfolio-info h5{
    color:#fff;
    font-size:22px;
    font-weight:600;
}

.visit-link{
    color:#f59e0b;
    font-weight:600;
    text-decoration:none;
}

.portfolio-card:hover img{
    transform:scale(1.03);
    transition:.4s;
}


.site-footer{
    text-align: center;
    padding: 20px 0 10px 0;
}