﻿
/* =========================
   GLOBAL RESET
========================= */


/* =========================
   HERO SECTION
========================= */

.theme__big--title
{
    text-transform:capitalize;
}
.ig-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* 🔥 ANIMATED DARK BLUE GRADIENT */
    background: linear-gradient(-45deg, #222c38, #141a22, #0d0f11, #191b1d);
    background-size: 400% 400%;
    animation: igGradient 15s ease infinite;
}
@keyframes igGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.ig-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .22;
    animation: igFloatGlow 12s ease-in-out infinite;
    pointer-events: none;
    transition: transform .25s linear;
    will-change: transform;
}

.ig-glow1 {
    width: 280px;
    height: 280px;
    background: #ff6b00;
    top: -80px;
    left: -80px;
}

.ig-glow2 {
    width: 320px;
    height: 320px;
    background: #0066ff;
    bottom: -120px;
    right: -120px;
    animation-delay: 4s;
}

@keyframes igFloatGlow {

    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-30px) translateX(25px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}


@keyframes igFloatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}
/* =========================
   BACKGROUND OVERLAY IMAGE
========================= */

.ig-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .ig-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.40;
        filter: blur(0.5px);
    }

/* =========================
   FLOATING GLOW EFFECTS
========================= */

.ig-hero::before,
.ig-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
    animation: floatGlow 8s ease-in-out infinite;
}
.ig-expertise {
    margin: 20px 0 30px 0px;
}

.ig-expertise-title {
    display: block;
    color: #ff6b00;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ig-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .ig-tags span {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 50px;
        color: #fff;
        font-size: 14px;
        transition: .35s;
        backdrop-filter: blur(10px);
    }

        .ig-tags span i {
            color: #ff6b00;
            font-size: 15px;
        }

        .ig-tags span:hover {
            background: #ff6b00;
            color: #fff;
            transform: translateY(-3px);
            border-color: #ff6b00;
        }

            .ig-tags span:hover i {
                color: #fff;
            }
/* ORANGE GLOW */
.ig-hero::before {
    top: 10%;
    left: 10%;
    background: #ff6b00;
}

/* BLUE GLOW */
.ig-hero::after {
    bottom: 10%;
    right: 10%;
    background: #3b82f6;
}

/* =========================
   CONTAINER
========================= */

.ig-container {
    width: 95%;
    max-width: 1280px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* =========================
   HERO WRAPPER
========================= */

.ig-hero-wrapper {
    display: flex;
    align-items: center;
}
.ig-left > * {
    opacity: 0;
    transform: translateY(40px);
    animation: igFadeUp .8s forwards;
}

    .ig-left > *:nth-child(1) {
        animation-delay: .2s;
    }

    .ig-left > *:nth-child(2) {
        animation-delay: .4s;
    }

    .ig-left > *:nth-child(3) {
        animation-delay: .6s;
    }

    .ig-left > *:nth-child(4) {
        animation-delay: .8s;
    }

    .ig-left > *:nth-child(5) {
        animation-delay: 1s;
    }

    .ig-left > *:nth-child(6) {
        animation-delay: 1.2s;
    }

@keyframes igFadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ig-right img {
    animation: igFloatImage 6s ease-in-out infinite;
}
/* LEFT SIDE */
.ig-left {
    max-width: 650px;
}

/* BADGE */
.ig-badge {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* TITLE */
.ig-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 55px;
    margin-bottom: 10px;
    color:#fff;
}
    .ig-title span {
        color: #ff6b00;
    }
    /* SUBTITLE */
    .ig-subtitle {
        font-size: 22px;
        color: #ff6b00;
        margin-bottom: 15px;
    }

/* DESCRIPTION */
.ig-desc {
    font-size: 16px;
    line-height: 28px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* SERVICES TEXT */
.ig-services-text {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 25px;
}

/* BUTTONS */
.ig-buttons {
    display: flex;
    gap: 15px;
}

/* BUTTON BASE */
.ig-btn {
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.ig-title span {
    background: linear-gradient( 90deg, #ff6b00, #e06207, #ff6b00 );
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: igText 5s linear infinite;
}
.ig-circle {
    position: absolute;
    right: 8%;
    top: 0%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
    animation: igRotate 35s linear infinite;
}

    .ig-circle::before {
        content: "";
        position: absolute;
        inset: 25px;
        border-radius: 50%;
        border: 1px dashed rgba(255,107,0,.18);
    }

@keyframes igRotate {

    to {
        transform: rotate(360deg);
    }
}
@keyframes igText {

    to {
        background-position: 200%;
    }
}
/* PRIMARY */
.ig-primary {
    background: #ff6b00;
    border: 2px solid #ff6b00;
    color: #fff;
}
    .ig-primary::before {
        content: "";
        position: absolute;
        left: -120%;
        top: 0;
        width: 70%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    }

    .ig-primary:hover::before {
        animation: igShine .8s;
    }

@keyframes igShine {

    to {
        left: 150%;
    }
}
    .ig-primary:hover {
        background: #e85f00;
        transform: translateY(-2px);
    }

/* OUTLINE */
.ig-outline {
    border: 2px solid #ff6b00;
    color: #ff6b00;
}

    .ig-outline:hover {
        background: #ff6b00;
        color: #fff;
        transform: translateY(-2px);
    }

/* RIGHT SIDE */
.ig-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .18s linear;
    will-change: transform;
}

/* MOCKUP BOX */
.ig-mockup-box {
    position: relative;
    width: 100%;
    max-width: 580px;
}

/* IMAGE */
.ig-mockup-img {
    width: 100%;
   
    animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}
/* =========================
   ANIMATIONS
========================= */

/* Gradient Move */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Glow */
@keyframes floatGlow {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .ig-title {
        font-size: 36px;
        line-height: 46px;
    }

    .ig-hero-wrapper {
        text-align: center;
        justify-content: center;
    }

    .ig-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:1024px) {

    .ig-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .ig-left {
        max-width: 100%;
    }

    .ig-title {
        font-size: 42px;
        line-height: 52px;
    }

    .ig-subtitle {
        font-size: 20px;
    }

    .ig-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ig-mockup-box {
        max-width: 420px;
    }
}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px) {

    .ig-hero {
        padding: 80px 0;
    }

    .ig-title {
        font-size: 32px;
        line-height: 42px;
    }

    .ig-subtitle {
        font-size: 18px;
    }

    .ig-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .ig-services-text {
        font-size: 12px;
        line-height: 20px;
    }

    .ig-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .ig-btn {
        width: 100%;
        text-align: center;
    }

    .ig-mockup-img {
        max-width: 100%;
        transform: rotate(-2deg);
    }
}

/* =========================
   SMALL MOBILE (extra safety)
========================= */

@media(max-width:480px) {
    .ig-tags span {
        padding: 8px 15px;
        font-size: 13px;
    }
    .ig-title {
        font-size: 26px;
        line-height: 36px;
    }

    .ig-subtitle {
        font-size: 16px;
    }

    .ig-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .ig-services-text {
        display: none; /* optional: clean look */
    }
}
.ig-keyword-strip {
    width: 100%;
    overflow: hidden;
    background: #08101f;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    padding: 14px 0;
}

.ig-keyword-track {
    display: flex;
    width: max-content;
    animation: igMarquee 35s linear infinite;
}

.ig-keyword-strip:hover .ig-keyword-track {
    animation-play-state: paused;
}

.ig-keyword-track h1 {
    white-space: nowrap;
    margin-right: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 22px;
    margin-top:.5rem;
}
.ig-keyword-track h2 {
    white-space: nowrap;
    margin-right: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 22px;
    margin-top: .5rem;
}

    .ig-keyword-track h1::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ff6b00;
        transform: translateY(-50%);
        box-shadow: 0 0 10px #ff6b00;
    }
.ig-keyword-track h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b00;
    transform: translateY(-50%);
    box-shadow: 0 0 10px #ff6b00;
}
@keyframes igMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Fade Effect */

.ig-keyword-strip::before,
.ig-keyword-strip::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.ig-keyword-strip::before {
    left: 0;
    background: linear-gradient(to right,#08101f,transparent);
}

.ig-keyword-strip::after {
    right: 0;
    background: linear-gradient(to left,#08101f,transparent);
}

/* Responsive */

@media(max-width:768px) {

    .ig-keyword-strip {
        padding: 10px 0;
    }

    .ig-keyword-track h1 {
        font-size: 13px;
        margin-right: 35px;
    }
    .ig-keyword-track h2 {
        font-size: 13px;
        margin-right: 35px;
    }
}