 :root {
    --bg-deep: #030712;
    --bg-card: rgba(17, 24, 39, 0.7);
    --parrot-green: #2ed573;
    --parrot-glow: rgba(46, 213, 115, 0.3);
    --sky-blue: #3b82f6;
    --text-main: #f3f4f6;
    --text-dim: #9ca3af;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.green{color: var(--parrot-green);}
.blue{color: var(--sky-blue);}
.max-90{max-width: 90%;}
img{max-width: 100%;height: auto;}
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; 
} */
p{margin-bottom: 20px;}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-deep);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
     font-size: clamp(14px,0.938vw,25px);
}

html { scroll-behavior: smooth; }
a,a::after,img,a::before,.btn-theme,.overly{
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
a{
    display: inline-block;
    text-decoration: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    color: #fff;
    position: relative;
}
a:hover,a:focus,a:active{
    text-decoration: none;
    outline: none;
    color:var(--parrot-green);
}
.container{
    max-width: 80vw;
    width: 100%;
    /* margin-left: auto; */
    /* margin-right: auto; */
    /* padding-left: 20px; */
    /* padding-right: 20px; */
}
/* --- Custom Cursor --- */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--parrot-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}
.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--parrot-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, top 0.2s ease, left 0.2s ease;
    opacity: 0.5;
}

/* --- Background Elements --- */
.glow-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--parrot-glow) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.maninHead{
    z-index: 1000;
    /* background: rgba(3, 7, 18, 0.8); */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    
}

.maninHead.sticky{
    backdrop-filter: blur(25px);
    position: fixed;
    padding: 7px 0;
    animation: stickyMenuAnimation 0.7s;
    -wekit-animation: stickyMenuAnimation 0.7s;
    
}
@keyframes stickyMenuAnimation {
    from {top: -200px;}
    to {top: 0px;}
}
.brand-logo{
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--parrot-green), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.brand-logo img{
    max-width: 200px;
}
.maninHead.sticky .brand-logo img{max-width: 180px;}
.menuNav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li{
    margin:0 15px; 
}
.nav-menu li a{
    color: var(--text-dim);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
    /* text-transform: uppercase; */
}
.nav-menu li a::before{
    content: "";
    height: 1.5px;
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--parrot-green);   
}
.nav-menu li a:hover::before{
    width: 100%;
}
.nav-menu li a:hover{
    color: var(--parrot-green);   
}
.btn-theme,
.btn-outline{
    font-size: 16px;
    padding: 12px 28px;
    background: var(--parrot-green);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px var(--parrot-glow);
}
.btn-theme:hover,.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--parrot-glow);
   color: #000;
}
.btn-outline{
    background: transparent;
    border: 1px solid var(--text-dim);
    color: var(--text-main);
    text-decoration: none;
}
.btn-outline:hover{color: var(--white);}
section{
    padding: 100px 0;
    position: relative;
}
 .moving-text-bg {
            position: absolute;
            bottom: 10%;
            left: 0;
            font-size: 18rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.02);
            white-space: nowrap;
            z-index: 0;
            pointer-events: none;
            animation: marquee 80s linear infinite;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
/*  */
.sub-heading{
    color: var(--parrot-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}
h1{
    font-size: clamp(30px,4.688vw,95px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}
h2,.f-70{
    font-size: clamp(30px,3.646vw,70px);
   
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}
h3,.f-50{
    font-size: clamp(25px,2.604vw,50px);

    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}
h4,.f-40{
    font-size: clamp(25px,2.083vw,50px);

    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}
h5,.f-30{
    font-size: clamp(20px,1.563vw,30px);

    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}
h6,.f-25{
    font-size: clamp(18px,1.302vw,30px);

    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}
.f-14{font-size: 14px;}
/*  */
.hero{width: 100%;overflow: hidden;}
.hero-typewriter{
    min-height: 70px;
}
._cursor {
  display: inline-block;
  margin-left: 4px;
  animation: blink 1s infinite;
  color: var(--parrot-green);
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.fImage{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%) contrast(1.1); */
    /* mix-blend-mode: luminosity; */
    /* background: var(--bg-card); */
    border-radius: 40px;
    border: 2px solid rgba(46, 213, 115, 0.2);
    /* backdrop-filter: blur(10px); */
    /* overflow: hidden; */
    transition: var(--transition);
}
.fImage:hover{
    border-color: var(--parrot-green);
    transform: scale(1.02);
}

.hero{
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
 /* Tech Icons */
    .tech-icon-float {
        position: absolute;
        color: var(--parrot-green);
        opacity: 0.2;
        font-size: 3rem;
        filter: drop-shadow(0 0 10px var(--parrot-green));
        animation: float 8s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-30px) scale(1.1); }
    }


/*  */
.social-fixed-bar {
    position: fixed;
    left: 15px;
    bottom: 30px;
    /* top: 30%; */
    /* transform: translateY(-50%); */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Vertical Text */
.social-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: var(--transition);
}

/* Vertical Line */
.social-line {
    width: 1px;
    height: 64px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--parrot-green),
        transparent
    );
    opacity: 0.6;
}

/* Icons Container */
.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Icon Base */
.social-icons li a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

/* Hover State */
.social-icons li a:hover {
    background: linear-gradient(
        135deg,
        var(--parrot-green),
        var(--sky-blue)
    );
    box-shadow:
        0 0 0 1px var(--parrot-green),
        0 0 18px var(--parrot-glow);
    transform: translateY(-4px);
    color: #fff;
}

/* Hover Text Brighten */
.social-fixed-bar:hover .social-text {
    color: var(--parrot-green);
}
.brands{
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(15px);
    padding: 50px 0;
}
.bg-sec{
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(15px);
}
.brandsMarquee{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brandsTrack{
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brandsTrack:hover{
    animation-play-state: paused; /* Optional */
}

/* Your existing styles (optimized) */
.brandsTrack .item{
    height: 120px;
    width: 250px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
     transition: var(--transition);
}

.brandsTrack .item img{
    max-width: 75%;
    max-height: 55%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.brandsTrack .item:hover{
    border-color: var(--parrot-green);
    transform: scale(1.01);
}
.brandsTrack .item:hover img{
    filter: grayscale(0%);
}

.skill-item{
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    margin-bottom: 30px;
}
.skill-item i{
    color: var(--parrot-green);
    margin-right: 15px;
}
.service-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    margin-bottom: 25px;
}
.service-card:hover {
    background: rgba(46, 213, 115, 0.03);
    border-color: var(--parrot-green);
    transform: translateY(-15px);
}
.service-card i {
    font-size: 50px;
    color: var(--parrot-green);
    margin-bottom: 30px;
    display: block;
}


.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    background: var(--bg-card);
    transition: var(--transition);
}
.portfolio-item:hover{
    background: rgba(46, 213, 115, 0.03);
    border-color: var(--parrot-green);
    transform: translateY(-15px);
}
.port-img {
    height: 350px;
    background: var(--bg-card);
    position: relative;
    background-size:  cover;
    background-position:top center;
    background-repeat: no-repeat;
}
.port-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
}
.port-info p {
    color: var(--text-gray);
    font-size: 14px;
}

.review-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.stars {
    color: var(--parrot-green);
    margin-bottom: 20px;
}
   
.review-text {
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    color: #d1d5db;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, var(--sky-blue), var(--parrot-green));
    border-radius: 50%;
}
._rel{position: relative;}
.cta{
    position: relative;
    text-align: center;
}
.cta .image{
    max-width: 600px;
    max-height: 100vh;
    object-position: center;
    object-fit: contain;
}
.cta .text{
   /*  position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%; */
    /* padding: 100px 50px;

    background: var(--bg-card);
    
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition); */
}

footer{
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 70px;
    position: relative;
}

.cInfo{

}
.cInfo .item{
    margin-bottom: 20px;
}
.cInfo h6{
    font-weight: 400;
    font-size: 16px;
    color: var(--parrot-green);
    margin-bottom: 5px;
}
.cInfo a{
    font-size: 22px;
    color: var(--text-dim);
}
.cInfo a:hover{
    color: var(--parrot-green);
}
.c-form{
    background: var(--bg-card);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}
.c-form input,.c-form textarea,.c-form select{
    height: 50px;
    width: 100%;
    padding: 0px 18px;
    background: #050810;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 14px;
}
.c-form textarea{
    padding: 18px;
    height: 100px;
}
.c-form  p{margin-bottom: 0;}
.c-form .form-group{margin-bottom: 10px;}

.copyrights{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.theme-banner{
    padding-top: 200px;
}
.info-card{
    /* margin-bottom: 20px; */
    padding: 20px;
}
.info-card i{margin-bottom: 15px;font-size: 30px;}
.page-template-page--contact footer{padding-top: 0;}
.page-template-page--contact footer .mainTop{
    display: none;
}
.page-template-page--contact footer .copyrights{
    margin-top: 0;
}
.styele2 textarea{
    height: 250px;
}
.contacthero{
    min-height: calc(100dvh - 60px);
}
.feature-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}
.feature-list li i {
    color: var(--parrot-green);
    font-size: 18px;
}

.detail-visual {
    flex: 1;
    height: 450px;
    background: var(--bg-card);
    border-radius: 30px;
    border: 1px solid rgba(46, 213, 115, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 95%;
}
.detail-visual i {
    font-size: 12rem;
    color: var(--parrot-green);
    opacity: 0.1;
}