@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");


* {
    font-family: 'Sora', sans-serif;
}


a {
    text-decoration: none !important;
}





.ie-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 22px 0;
    transition: .45s ease;
}



.ie-header.ie-scroll {
    padding: 0;
}



.ie-navbar {
    width: min(1400px, 94%);
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 70px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
    padding: 0 34px;
    transition: .45s cubic-bezier(.22, 1, .36, 1);
}



.ie-header.ie-scroll .ie-navbar {
    box-shadow: 0 10px 35px rgba(0, 0, 0, .10);
    height: 80px;
    background: #fff;
    border-radius: 0px;
}




.ie-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.ie-logo img {
    height: 75px;
    transition: .4s;
    padding: 5px;
    background: #ffff;
    border-radius: 20px 20px 20px 20px;
}

.ie-header.ie-scroll .ie-logo img {
    height: 62px;
    padding: 0 0;
}


.ie-header.ie-scroll .ie-active {
    color: #373435;
}



.ie-header.ie-scroll .ie-link {
    color: #373435;
}


.ie-nav {
    display: flex;
    align-items: center;
}



.ie-menu {
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0;
    padding: 0;
    list-style: none;
}


.ie-menu>li {
    position: relative;
}


.ie-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    transition: .35s;
}



.ie-link:hover {
    color: #ffffff;
}


.ie-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #f58634;
    border-radius: 20px;
    transition: .35s;
}


.ie-link:hover::after,
.ie-active::after {
    width: 100%;
}


.ie-active {
    color: #ffffff;
}


.ie-btn {
    height: 52px;
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #B8860B, #E8C766);
    transition: .35s;
    box-shadow: 0 15px 35px rgba(184, 134, 11, .25);
}



.ie-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(184, 134, 11, .35);
}



.ie-right {
    display: flex;
    align-items: center;
    gap: 18px;
}



.ie-toggle {
    width: 54px;
    height: 54px;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}


.ie-toggle i {
    font-size: 28px;
    transition: .35s;
}


.ie-toggle.ie-active {
    background: #C89B3C;
}


.ie-toggle.ie-active i {
    color: #fff;
    transform: rotate(180deg);
    z-index: 9999;
    height: 40px;
    width: 40px;
    background: linear-gradient(135deg, #ffcc29, #f58634);
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.ie-has-dropdown {
    position: relative;
}

.ie-dropdown-toggle i {
    font-size: 12px;
    transition: .35s ease;
}

.ie-has-dropdown:hover .ie-dropdown-toggle i {
    transform: rotate(180deg);
}



.ie-dropdown {
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 290px;
    margin: 0;
    padding: 14px 0;
    list-style: none;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    transition: .45s cubic-bezier(.22, 1, .36, 1);
    z-index: 999;
}



.ie-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, .05);
    border-top: 1px solid rgba(0, 0, 0, .05);
}



.ie-has-dropdown:hover>.ie-dropdown {
    opacity: 1;
    visibility: visible;
}


.ie-dropdown li {
    width: 100%;
}

.ie-dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
    position: relative;
    overflow: hidden;
}



.ie-dropdown li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #f58634;
    transform: scaleY(0);
    transition: .35s;
}



.ie-dropdown li a::after {
    content: "→";
    font-size: 16px;
    opacity: 0;
    transform: translateX(-10px);
    transition: .35s;
    color: #f58634;
}


.ie-dropdown li a:hover {
    background: #FAF7EF;
    color: #373435;
    padding-left: 34px;
}

.ie-dropdown li a:hover::before {
    transform: scaleY(1);
}

.ie-dropdown li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}


.ie-menu>li {
    transition: .3s;
}

.ie-menu>li:hover {
    transform: translateY(-2px);
}



.ie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9990;
}

.ie-overlay.ie-show {
    opacity: 1;
    visibility: visible;

}



.ie-header.ie-scroll .ie-navbar {
    animation: ieNavSlide .45s ease;

}

@keyframes ieNavSlide {

    from {
        opacity: .5;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



@media (max-width:1300px) {

    .ie-menu {
        gap: 28px;
    }

}

@media (max-width:1150px) {
    .ie-menu {
        gap: 22px;
    }

    .ie-link {
        font-size: 14px;
    }

    .ie-btn {
        padding: 0 20px;
    }

}




@media (max-width:991px) {

    .ie-header {
        padding: 12px 0;
    }

    .ie-header.ie-scroll {
        padding: 0;
    }

    .ie-navbar {
        width: 94%;
        height: 74px;
        padding: 0 20px;
        border-radius: 22px;
    }

    .ie-header.ie-scroll .ie-navbar {
        width: 100%;
        height: 68px;
        border-radius: 0;
    }

    .ie-logo img {
        height: 46px;
    }

    .ie-header.ie-scroll .ie-logo img {
        height: 42px;
    }


    .ie-btn {
        display: none;
    }

    .ie-toggle {
        display: flex;
    }





    .ie-nav {
        position: fixed;
        top: 0;
        right: -105%;
        width: 340px;
        max-width: 100%;
        height: 100vh;
        background: #ffffff;
        display: block;
        padding: 95px 30px 40px;
        overflow-y: auto;
        transition: .45s cubic-bezier(.22, 1, .36, 1);
        box-shadow: -18px 0 50px rgba(0, 0, 0, .12);
        z-index: 9999;
    }

    .ie-nav.ie-open {
        right: 0;
    }



    .ie-menu {
        display: block;
        width: 100%;
    }

    .ie-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, .06);
    }

    .ie-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 18px 0;
        font-size: 17px;
    }

    .ie-link::after {
        display: none;
    }



    .ie-dropdown {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #f8f8f8;
        border: none;
        border-radius: 14px;
        box-shadow: none;
        padding: 0;
        margin: 0 0 15px;
    }

    .ie-dropdown::before {
        display: none;
    }

    .ie-has-dropdown.ie-open>.ie-dropdown {
        display: block;
    }

    .ie-dropdown li a {
        padding: 15px 18px;
        font-size: 15px;
    }

    .ie-dropdown li a:hover {
        padding-left: 28px;
    }

    .ie-dropdown-toggle i {
        transition: .35s;
    }

    .ie-has-dropdown.ie-open>.ie-dropdown-toggle i {
        transform: rotate(180deg);
    }

}



@media (max-width:767px) {

    .ie-navbar {
        width: 95%;
        height: 70px;
        padding: 0 18px;
    }

    .ie-logo img {
        height: 40px;
    }

    .ie-toggle {
        width: 52px;
        height: 52px;
    }

    .ie-toggle i {
        font-size: 28px;
    }

    .ie-nav {
        width: 100%;
        padding: 46px 15px 0px;
        height: 450px;
    }


    .ie-link {
        font-size: 16px;
        color: #373435;
    }


    .ie-link:hover {
        color: #373435;
    }


    .ie-logo img {
        height: 54px;
    }

}




@media (max-width:480px) {

    .ie-navbar {
        padding: 0 15px;
    }

    .ie-logo img {
        height: 55px;
    }

    .ie-link {
        font-size: 16px;
    }

}



@keyframes ieAccordion {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.ie-nav-close {
    display: none;
}

@media (max-width:991px) {

    .ie-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 50%;
        background: #f7f7f7;
        cursor: pointer;
        transition: .3s;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    }

    .ie-nav-close i {
        font-size: 22px;
        color: #222;
    }

    .ie-nav-close:hover {
        background: #C89B3C;
        transform: rotate(90deg);
    }

    .ie-nav-close:hover i {
        color: #fff;
    }

}










.ie-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;

}




.ie-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 1.5s ease;
}



.ie-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 8s ease;
}




.ie-hero-slide.ie-active {
    opacity: 1;
}



.ie-hero-slide.ie-active img {
    transform: scale(1);
}



.ie-hero-slide img {
    filter: brightness(.85);
}



.ie-hero-slide.ie-active img {
    animation: ieHeroZoom 8s ease forwards;
}



@keyframes ieHeroZoom {

    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1);
    }

}



.ie-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 55%), rgb(0 0 0 / 58%));
    z-index: 2;
}


.ie-hero-content {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin-top: 100px;
}


.ie-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .25);
    font-size: 14px;
    letter-spacing: 1px;
    animation: ieFadeUp 1s ease;
}


.ie-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.ie-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    opacity: .9;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid;
    border-radius: 30px;
}



.ie-hero-trust-item i {
    color: rgb(255 204 41);
    font-size: 24px;
}



.ie-hero-title {
    margin-top: 25px;
    font-size: clamp(45px, 6vw, 90px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    animation: ieFadeUp 1.2s ease;
}


.ie-hero-title span {
    background: linear-gradient(90deg, #f58634, #ffcc29, #f58634);
    -webkit-background-clip: text;
    color: transparent;
}


.ie-hero-subtitle {
    margin-top: 25px;
    font-size: 20px;
    letter-spacing: 1px;
    animation: ieFadeUp 1.4s ease;
}


.ie-hero-description {
    margin-top: 15px;
    max-width: 600px;
    font-size: 17px;
    line-height: 1.7;
    opacity: .9;
    animation: ieFadeUp 1.6s ease;
}


.ie-hero-buttons {
    margin-top: 55px;
    display: flex;
    gap: 20px;
    animation: ieFadeUp 1.8s ease;
}


.ie-hero-btn {
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}


.ie-primary-btn {
    background: linear-gradient(45deg, #ffcc29, #f58634);
    color: #ffffff;
}


.ie-primary-btn:hover {
    transform: translateY(-5px);

}


.ie-outline-btn {
    border: 1px solid rgba(255, 255, 255, .5);
    color: white;
    backdrop-filter: blur(10px);
}


.ie-outline-btn:hover {
    background: white;
    color: #111;
}


.ie-hero-particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    opacity: .5;
    animation: ieFloat 8s infinite;
}


.ie-hero-particles span:nth-child(1) {
    left: 15%;
    top: 20%;
}


.ie-hero-particles span:nth-child(2) {
    left: 80%;
    top: 30%;
}


.ie-hero-particles span:nth-child(3) {
    left: 50%;
    top: 70%;
}


.ie-hero-particles span:nth-child(4) {
    left: 30%;
    top: 80%;
}


.ie-hero-particles span:nth-child(5) {
    left: 90%;
    top: 80%;
}



.ie-hero-particles span:nth-child(6) {
    left: 70%;
    top: 15%;
}


.ie-hero-pagination {
    position: absolute;
    right: 8%;
    bottom: 120px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
}


.ie-progress {
    width: 120px;
    height: 2px;
    background: #777;
}


.ie-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: #d8b36a;
}


.ie-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 2px;
}


.ie-scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
}


.ie-scroll-mouse:after {
    content: "";
    display: block;
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 10px;
    margin: 8px auto;
    animation: ieMouse 1.5s infinite;
}


@keyframes ieFadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}



@keyframes ieFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }

}



@keyframes ieMouse {

    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }

}


.ie-hero-content.ie-reveal .ie-hero-tag,
.ie-hero-content.ie-reveal .ie-hero-title,
.ie-hero-content.ie-reveal .ie-hero-subtitle,
.ie-hero-content.ie-reveal .ie-hero-description,
.ie-hero-content.ie-reveal .ie-hero-buttons {
    animation: none;
}


.ie-hero-content.ie-reveal {
    animation: ieContentReveal 1s ease forwards;
}



@keyframes ieContentReveal {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



@media(max-width:991px) {

    .ie-hero {
        height: 100svh;
        min-height: 600px;
    }


    .ie-hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .85));
    }


    .ie-hero-content {
        padding: 0 40px;
        max-width: 100%;
        text-align: center;
    }


    .ie-hero-tag {
        margin: auto;
    }


    .ie-hero-title {
        font-size: 55px;
        letter-spacing: -1px;
    }


    .ie-hero-subtitle {
        margin-top: 20px;
    }


    .ie-hero-description {
        margin-left: auto;
        margin-right: auto;
    }



    .ie-hero-buttons {
        justify-content: center;
    }


    .ie-hero-pagination {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 90px;
    }

    .ie-hero-scroll {
        bottom: 25px;
    }

}





@media(max-width:767px) {

    .ie-hero {
        min-height: 700px;
    }

    .ie-hero-content {
        padding: 0 0px;
    }


    .ie-hero-trust-item {
        padding: 5px 10px;
    }

    .ie-hero-tag {
        font-size: 12px;
        padding: 9px 18px;
        margin-top: 30px;
    }


    .ie-hero-title {
        margin-top: 20px;
        font-size: 42px;
        line-height: 1.1;
    }


    .ie-hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }


    .ie-hero-description {
        font-size: 15px;
        line-height: 1.6;
    }


    .ie-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 30px;
    }


    .ie-hero-btn {
        width: 100%;
        justify-content: left;
        padding: 16px 23px;
        width: fit-content;
    }


    .ie-hero-trust {
        gap: 20px;
    }


    .ie-hero-pagination {
        bottom: 90px;
    }


    .ie-progress {
        width: 90px;
    }


    .ie-hero-scroll {
        display: none;
    }


    .ie-hero-slide {
        background-position: center;
    }

}






@media(max-width:575px) {
    .ie-hero {
        min-height: 100%;
        height: 100%;
        padding: 0px 0px 60px;
    }


    .ie-hero-content {
        padding: 0 0px;
    }


    .ie-hero-title {
        font-size: 36px;
    }


    .ie-hero-subtitle {
        font-size: 14px;
    }



    .ie-hero-description {
        font-size: 14px;
    }



    .ie-hero-tag i {
        font-size: 13px;
    }


    .ie-hero-pagination {
        bottom: 75px;
    }

    .ie-current {
        font-size: 13px;
    }


    .ie-progress {
        width: 70px;
    }


}




@media(max-width:380px) {

    .ie-hero-title {
        font-size: 29px;
    }


    .ie-hero-subtitle {
        font-size: 13px;
    }


    .ie-hero-description {
        display: none;
    }


    .ie-hero-buttons {
        margin-top: 25px;
    }

    .ie-hero-btn {
        font-size: 14px;
    }
}



@media(max-width:767px) {

    .ie-hero-slide {
        transform: scale(1.08);
    }

    .ie-hero-slide.ie-active {
        transform: scale(1);
    }


    .ie-hero-particles span {
        animation-duration: 12s;
    }

}


.ie-hero-slider {
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);

}



.ie-hero-overlay::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: linear-gradient(120deg, transparent 40%, rgba(216, 179, 106, .15), transparent 60%);
    transform: translateX(-100%);
    animation: ieLightSweep 8s infinite;
}


@keyframes ieLightSweep {

    0% {
        transform: translateX(-100%);
    }

    40%,
    100% {
        transform: translateX(100%);

    }

}



.ie-hero-overlay::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    bottom: -200px;
    background: radial-gradient(circle, rgba(216, 179, 106, .35), transparent 70%);
    filter: blur(60px);
    animation: ieGlowMove 10s infinite alternate;
}


@keyframes ieGlowMove {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, -80px);
    }

}





.ie-hero-particles span {
    box-shadow: 0 0 15px rgba(255, 255, 255, .8);
}


.ie-hero-particles span:nth-child(even) {
    animation-duration: 12s;
}




.ie-hero-content {
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}


.ie-hero.ie-mouse-move .ie-hero-content {
    transform: translate(calc(var(--ie-mouse-x) * -1), calc(var(--ie-mouse-y) * -1));
}


.ie-primary-btn {
    position: relative;
    overflow: hidden;
}


.ie-primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .6), transparent);
    transition: .8s;
}


.ie-primary-btn:hover::before {
    left: 100%;
}



.ie-hero-title span {
    background-size: 200% auto;
}


@keyframes ieGoldMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }

}




@media(max-width:767px) {
    .ie-hero-slider {
        transform: none !important;
    }

    .ie-hero-content {
        transform: none !important;
        text-align: left;
    }

    .ie-hero-overlay::before {
        display: none;
    }


}







.ie-about {
    position: relative;
    padding: 100px 0px 80px;
    overflow: hidden;
}


.ie-about::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -180px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 179, 106, .28), transparent 70%);
    filter: blur(70px);
    animation: ieGlow 10s ease-in-out infinite alternate;
}

@keyframes ieGlow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(140px, 80px);
    }

}



.ie-about-container {
    position: relative;
    z-index: 2;
    margin: auto;
    text-align: center;
    transition: transform .4s ease;
}


.ie-about-tag {
    display: inline-block;
    color: #f58634;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}


.ie-about-title {
    font-size: clamp(40px, 5vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    color: rgb(55 52 53);
    margin-bottom: 30px;
}


.ie-about-title span {
    position: relative;
    display: inline-block;
    padding: 8px 18px;
    z-index: 2;
}


.ie-about-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #ffcc29;
    z-index: -1;
    transition: 1s ease;
}


.ie-about.ie-visible .ie-about-title span::before {
    width: 100%;
}


.ie-about-subtitle {
    position: relative;
    display: inline-block;
    font-size: 26px;
    font-weight: 500;
    color: #373435;
    margin-bottom: 45px;
}


.ie-about-subtitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, transparent, #ffcc29, #f58634, transparent);
    transition: .8s ease;
}


.ie-about.ie-visible .ie-about-subtitle::after {
    width: 140px;
}


.ie-about-text {
    max-width: 1200px;
    margin: 0 auto 28px;
    font-size: 19px;
    line-height: 1.9;
    color: #666;
}


.ie-about-text strong {
    color: #111;
}


.ie-reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}


.ie-reveal.ie-active {
    opacity: 1;
    transform: translateY(0);
}


.ie-about-tag {
    transition-delay: .1s;
}

.ie-about-title {
    transition-delay: .3s;
}

.ie-about-subtitle {
    transition-delay: .5s;
}

.ie-about-text:nth-of-type(1) {
    transition-delay: .7s;
}

.ie-about-text:nth-of-type(2) {
    transition-delay: .9s;
}


.ie-about:hover .ie-about-title {
    letter-spacing: 1px;
    transition: .5s;
}


.ie-about:hover .ie-about-subtitle {
    color: #111;
}


@media(max-width:1200px) {
    .ie-about {
        padding: 100px 30px;
    }

}


@media(max-width:991px) {

    .ie-about {
        padding: 90px 25px;
    }

    .ie-about-title {
        font-size: 52px;
    }

    .ie-about-subtitle {
        font-size: 22px;
    }

    .ie-about-text {
        font-size: 17px;
    }

}


@media(max-width:767px) {

    .ie-about {
        padding: 80px 20px;
    }

    .ie-about-title {
        font-size: 40px;
        line-height: 1.25;
    }

    .ie-about-subtitle {
        font-size: 18px;
    }

    .ie-about-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .ie-about-tag {
        letter-spacing: 3px;
        font-size: 13px;
    }

}


@media(max-width:575px) {

    .ie-about {
        padding: 60px 10px;
    }

    .ie-about-title {
        font-size: 32px;
    }

    .ie-about-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .ie-about-text {
        font-size: 15px;
        line-height: 1.5;
        margin: 0px auto 15px;
    }




    .ie-about::before {
        width: 300px;
        height: 300px;
    }

}








.ie-services-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
    background: #373435;
    z-index: 1;
}

.ie-services-container {
    max-width: 1350px;
    margin: auto;
    position: relative;
    z-index: 2;
}


.ie-services-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.ie-services-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .18;
    animation: ieCircleMove 18s linear infinite alternate;
}

.ie-circle-1 {
    width: 420px;
    height: 420px;
    background: #d4af37;
    top: -120px;
    left: -80px;
}

.ie-circle-2 {
    width: 350px;
    height: 350px;
    background: #0ea5e9;
    bottom: -120px;
    right: -100px;
    animation-duration: 22s;
}

.ie-circle-3 {
    width: 280px;
    height: 280px;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

@keyframes ieCircleMove {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -40px) scale(1.15);
    }

    100% {
        transform: translate(-40px, 40px) scale(.9);
    }

}


.ie-services-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
}

.ie-services-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(18px);
    color: #f58634;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.ie-services-tag i {
    font-size: 18px;
}

.ie-services-title {
    color: #fff;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
}

.ie-services-title span {
    color: #ffcc29;
}

.ie-services-subtitle {
    color: #e3e3e3;
    font-size: 18px;
    line-height: 1.9;
    max-width: 760px;
    margin: auto;
}



.ie-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}


.ie-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .55s ease;
    isolation: isolate;
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.ie-service-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ie-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s ease;
}

.ie-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .95) 10%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .15) 100%);
    z-index: 1;
}

.ie-service-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 30px 20px;
}

.ie-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(15px);
    margin-bottom: 15px;
}

.ie-service-icon i {
    color: rgb(255 204 41);
    font-size: 30px;
}

.ie-service-content h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.ie-service-content p {
    color: #d2d2d2;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ie-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgb(255 204 41);
    font-weight: 600;
    transition: .4s;
}

.ie-service-btn i {
    transition: .4s;
}

.ie-service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, .08);
    z-index: 2;
    user-select: none;
}




.ie-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: skewX(-25deg);
    transition: .8s ease;
    z-index: 4;
}


.ie-service-card:hover::before {
    left: 130%;
}


.ie-service-card:hover {
    transform: translateY(-18px) rotateX(2deg);
    border-color: rgb(255 204 41);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .65), 0 0 35px rgba(212, 175, 55, .25);
}


.ie-service-card:hover .ie-service-image img {
    transform: scale(1.15);
}



.ie-service-card:hover .ie-service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .98), rgba(0, 0, 0, .45));
}


.ie-service-card:hover .ie-service-icon {
    transform: translateY(-8px) rotate(8deg);
    background: rgba(212, 175, 55, .15);
    border-color: rgb(255 204 41);
}


.ie-service-icon {
    transition: .5s ease;
}


.ie-service-card:hover .ie-service-content h3 {
    color: rgb(255 204 41);
}



.ie-service-content h3 {
    transition: .4s ease;
}



.ie-service-card:hover .ie-service-btn i {
    transform: translateX(10px);
}


.ie-service-btn i {
    transition: .4s ease;
}



.ie-service-card:hover .ie-service-number {
    color: rgb(255 204 41);
    transform: scale(1.1);
}


.ie-service-number {
    transition: .5s ease;
}



.ie-service-card {
    animation: ieFloatCard 6s ease-in-out infinite;
}


.ie-service-card:nth-child(2) {
    animation-delay: 1s;
}


.ie-service-card:nth-child(3) {
    animation-delay: 2s;
}


.ie-service-card:nth-child(4) {
    animation-delay: 3s;
}



@keyframes ieFloatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}




.ie-services-heading,
.ie-service-card {
    opacity: 0;
    transform: translateY(80px) scale(.95);
}



.ie-services-show {
    animation: ieServicesReveal 1s cubic-bezier(.2, .8, .2, 1) forwards;
}



@keyframes ieServicesReveal {

    0% {
        opacity: 0;
        transform: translateY(80px) scale(.95);
        filter: blur(10px);
    }


    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

}



@media(max-width:1100px) {

    .ie-services-title {
        font-size: 48px;
    }

    .ie-services-grid {
        gap: 25px;
    }


    .ie-service-content {
        padding: 30px;
    }


    .ie-service-content h3 {
        font-size: 28px;
    }

}



@media(max-width:768px) {

    .ie-services-section {
        padding: 60px 10px;
    }

    .ie-services-heading {
        margin-bottom: 35px;
        text-align: left;
    }

    .ie-services-title {
        font-size: 38px;
    }


    .ie-services-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }


    .ie-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .ie-service-card {
        min-height: 390px;
    }


    .ie-service-content {
        padding: 28px;
    }


    .ie-service-icon {
        width: 60px;
        height: 60px;
    }


    .ie-service-icon i {
        font-size: 25px;
    }


    .ie-service-content h3 {
        font-size: 26px;
    }


    .ie-service-content p {
        font-size: 15px;
    }


    .ie-service-number {
        font-size: 65px;
        right: 20px;
    }


}



@media(max-width:480px) {

    .ie-services-title {
        font-size: 30px;
    }


    .ie-services-tag {
        font-size: 12px;
        padding: 8px 16px;
    }


    .ie-service-card {
        min-height: 360px;
        border-radius: 22px;
    }


    .ie-service-content {
        padding: 18px;
    }


}



.ie-card-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .25), transparent 70%);
    top: var(--mouse-y);
    left: var(--mouse-x);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: .2s ease;
    z-index: 2;
}


.ie-service-card:hover .ie-card-glow {
    opacity: 1;
}









:root {

    --gold: #D4AF37;
    --white: #ffffff;
    --text: #E8E8E8;
    --dark: #050505;
    --glass: rgba(255, 255, 255, .08);
    --border: rgba(255, 255, 255, .15);

}


.ie-cinematic {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
}



.video-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity .8s ease, transform 12s linear;
}

.bg-video.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}



.dark-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .45);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .72) 28%, rgba(0, 0, 0, .40) 55%, rgba(0, 0, 0, .18) 100%);
}



.noise-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: .05;
    background-image: url("../images/noise.png");
    background-size: 220px;
}



.light-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, .10), transparent 55%);
}




.ie-cinematic .container-fluid {
    position: relative;
    z-index: 20;
    height: 100%;
}

.ie-cinematic .row {
    height: 100%;
}



.hero-content {
    max-width: 760px;
    margin-left: auto;
    padding-right: 80px;
}



.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 30px;
}



.hero-content p {
    max-width: 680px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 45px;
}



.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    color: #fff;
}

.feature i {
    color: var(--gold);
    font-size: 18px;
}



.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #111;
    background: var(--gold);
    padding: 18px 42px;
    border-radius: 60px;
    font-weight: 700;
    transition: .35s;
}

.explore-btn:hover {
    transform: translateY(-5px);
    color: #111;
}

.explore-btn i {
    transition: .35s;
}

.explore-btn:hover i {
    transform: translateX(8px);
}



.progress-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, .15);
    z-index: 30;
}

.progress-line {
    display: block;
    width: 25%;
    height: 100%;
    background: var(--gold);
}



@media(max-width:1200px) {

    .hero-content {
        padding-right: 40px;
    }

    .hero-content h1 {
        font-size: 64px;
    }

}

@media(max-width:991px) {

    .ie-cinematic {
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        margin: 0;
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px) {

    .hero-content {
        padding: 25px
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-tag {
        font-size: 10px;
    }

    .explore-btn {
        width: 100%;
        justify-content: center;
    }

}





.glass-panel {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
    border-right: 1px solid rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 25px 0 80px rgba(0, 0, 0, .35);
    overflow: hidden;
}



.glass-panel::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -120px;
    left: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .18), transparent 70%);
    pointer-events: none;
}

.glass-panel::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
    pointer-events: none;
}



.small-title {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    letter-spacing: 3px;
    font-size: 12px;
    color: #ddd;
    margin-bottom: 25px;
}


.glass-panel h2 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
}


.glass-panel h2 span {
    color: var(--gold);
}


.glass-panel p {
    color: #cfcfcf;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 10px;
}



.service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}



.service {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 24px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid transparent;
    transition: .45s ease;
}



.service::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: .45s;
}



.service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, .15), transparent);
    opacity: 0;
    transition: .4s;
}



.service:hover {
    transform: translateX(12px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .10);
}

.service:hover::before {
    transform: scaleY(1);
}

.service:hover::after {
    opacity: 1;
}



.service.active {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(212, 175, 55, .35);
    transform: translateX(16px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .30), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.service.active::before {
    transform: scaleY(1);
}

.service.active::after {
    opacity: 1;
}



.count {
    min-width: 60px;
    font-size: 30px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    transition: .35s;
}

.service:hover .count,
.service.active .count {
    color: var(--gold);
}



.service h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    transition: .35s;
}

.service small {
    display: block;
    margin-top: 8px;
    color: #bfbfbf;
    font-size: 14px;
    letter-spacing: .5px;
}



.service:hover h4 {
    transform: translateX(5px);
}

.service.active h4 {
    transform: translateX(8px);
}



.service-list::-webkit-scrollbar {
    width: 4px;
}

.service-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .20);
}


@media(max-width:991px) {

    .glass-panel {
        height: auto;
        padding: 45px 35px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .glass-panel h2 {
        font-size: 42px;
    }

    .service {
        padding: 18px;
    }

}



@media(max-width:576px) {

    .glass-panel {
        padding: 30px 20px;
    }

    .glass-panel h2 {
        font-size: 34px;
    }

    .service {
        gap: 15px;
        padding: 16px;
    }

    .count {
        min-width: 40px;
        font-size: 22px;
    }

    .service h4 {
        font-size: 18px;
    }

    .service small {
        font-size: 12px;
    }

}





.hero-content {
    position: relative;
    z-index: 30;
    animation: heroFade 1s ease;
}



.hero-tag {
    animation: slideTop .8s ease;
}



.hero-content h1 {
    position: relative;
    overflow: hidden;
    animation: slideLeft .9s ease;
}

.hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 120px;
    height: 4px;
    border-radius: 10px;
    background: var(--gold);
}



.hero-content p {
    animation: slideLeft 1.1s ease;
}



.feature {
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    transition: .35s;
    animation: fadeUp .8s ease;
}

.feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(212, 175, 55, .35);
}

.feature i {
    transition: .35s;
}

.feature:hover i {
    transform: rotate(360deg);
    color: var(--gold);
}



.explore-btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, .30);
}

.explore-btn::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transition: 1s;
}

.explore-btn:hover::before {
    left: 120%;
}

.explore-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, .45);
}

.explore-btn i {
    transition: .35s;
}

.explore-btn:hover i {
    transform: translateX(10px);
}



.light-overlay {
    animation: lightMove 10s linear infinite;
}



.bg-video.active {
    animation: videoZoom 15s linear infinite alternate;
}



.hero-content::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -120px;
    right: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .18), transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 6s ease infinite;
    pointer-events: none;
}



.ie-cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, .45) 100%);
    z-index: 5;
}



.hero-content h1 {
    text-shadow: 0 10px 35px rgba(0, 0, 0, .55);
}

.hero-content p {
    text-shadow: 0 5px 15px rgba(0, 0, 0, .4);
}



.progress-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.progress-line {
    animation: progressGlow 2s infinite;
}



@keyframes heroFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}

@keyframes slideTop {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}

@keyframes videoZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }

}

@keyframes lightMove {

    0% {
        transform: translateX(-80px);
    }

    50% {
        transform: translateX(80px);
    }

    100% {
        transform: translateX(-80px);
    }

}

@keyframes pulseGlow {

    0% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .5;
    }

}

@keyframes progressGlow {

    0% {
        box-shadow: 0 0 5px var(--gold);
    }

    50% {
        box-shadow: 0 0 25px var(--gold);
    }

    100% {
        box-shadow: 0 0 5px var(--gold);
    }

}



@media(max-width:991px) {

    .hero-content {
        text-align: center;
    }

    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content::before {
        display: none;
    }

}

@media(max-width:576px) {

    .feature {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

}




.video-transition {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    z-index: 6;
    transition: opacity .7s ease;
}



.bg-video {
    filter: brightness(.75) contrast(1.05) saturate(1.1);
}



.hero-content {
    transition: .7s;
}



.feature {
    opacity: 1;
}



.explore-btn {
    transition: transform .4s, box-shadow .4s, background .4s;
}



.bg-video.active {
    animation: slowZoom 14s linear infinite alternate;
}

@keyframes slowZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }

}



.small-title {
    display: flex;
    align-items: center;
    gap: 10px;
}


.small-title i {
    color: var(--gold);
    font-size: 16px;
}




.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


.hero-tag i {
    color: var(--gold);
    font-size: 16px;
}









.ie-why-v2 {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}



.ie-why-v2::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    top: -180px;
    left: -120px;
    filter: blur(20px);
}

.ie-why-v2::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .05);
    bottom: -150px;
    right: -120px;
    filter: blur(15px);
}



.ie-why-container {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;

}

.ie-why-heading {
    width: 100%;
    max-width: 830px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}


.ie-why-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: #ffcc29;
    color: #373435;
    font-size: 14px;
    font-weight: 700;
}


.ie-why-tag i {
    font-size: 18px;
}

.ie-why-title {
    margin-top: 28px;
    font-size: 48px;
    line-height: 1.18;
    font-weight: 800;
    color: #373435;
}

.ie-why-title span {
    color: #f58634;
}

.ie-why-description {
    margin-top: 15px;
    font-size: 17px;
    line-height: 1.5;
    color: #666;
}


.ie-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.ie-why-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .08);
    transition: .45s;
}



.ie-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    transform: skewX(-25deg);
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transition: .9s;
}

.ie-why-card:hover::before {
    left: 180%;
}



.ie-why-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ffcc29;
    transition: .35s;
}


.ie-why-card:hover::after {
    width: 100%;
}



.ie-why-check {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffcc29, #f58634);
    color: #ffffff;
    font-size: 34px;
    box-shadow: 0 18px 40px rgba(199, 154, 29, .30);
    margin-bottom: 25px;
}





.ie-why-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #1c1c1c;
    transition: .35s;
}



.ie-why-card p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.5;
    transition: .35s;
}



.ie-why-card:hover {
    transform: translateY(-14px);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 35px 70px rgba(0, 0, 0, .15);
}



.ie-why-card:hover .ie-why-check {
    transform: rotate(-10deg) scale(1.12);
    border-radius: 50%;
}

.ie-why-check {
    transition: .45s;
}


.ie-why-card:hover h3 {
    color: #f58634;
}



.ie-why-card:hover p {
    color: #444;
}



.ie-why-card {
    animation: ieWhyFloat 5s ease-in-out infinite;
}

.ie-why-card:nth-child(2) {
    animation-delay: .3s;
}

.ie-why-card:nth-child(3) {
    animation-delay: .6s;
}

.ie-why-card:nth-child(4) {
    animation-delay: .9s;
}

.ie-why-card:nth-child(5) {
    animation-delay: 1.2s;
}

.ie-why-card:nth-child(6) {
    animation-delay: 1.5s;
}

.ie-why-card:nth-child(7) {
    animation-delay: 1.8s;
}



.ie-why-card:hover {
    border-color: rgba(212, 175, 55, .35);
}

.ie-why-card:hover .ie-why-check {
    box-shadow: 0 20px 50px rgba(212, 175, 55, .45);
}



.ie-why-card {
    cursor: default;
}

.ie-why-card::selection {
    background: transparent;
}



.ie-why-card {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(255, 255, 255, .40));
}



.ie-why-tag {
    transition: .35s;
}

.ie-why-heading:hover .ie-why-tag {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(199, 154, 29, .18);
}



.ie-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 58px;
    padding: 0 34px;
    margin-top: 50px;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #C79A1D, #F2D16B);
    transition: .35s;
}

.ie-why-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(199, 154, 29, .35);
}

.ie-why-btn i {
    transition: .35s;
}

.ie-why-btn:hover i {
    transform: translateX(8px);
}



@keyframes ieWhyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}





.ie-why-heading,
.ie-why-card {
    opacity: 0;
    transform: translateY(70px);
    transition: 1s cubic-bezier(.22, .61, .36, 1);
}

.ie-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.ie-why-card:nth-child(1) {
    transition-delay: .1s;
}

.ie-why-card:nth-child(2) {
    transition-delay: .2s;
}

.ie-why-card:nth-child(3) {
    transition-delay: .3s;
}

.ie-why-card:nth-child(4) {
    transition-delay: .4s;
}

.ie-why-card:nth-child(5) {
    transition-delay: .5s;
}

.ie-why-card:nth-child(6) {
    transition-delay: .6s;
}

.ie-why-card:nth-child(7) {
    transition-delay: .7s;
}


.ie-why-grid:hover .ie-why-card {
    opacity: .55;
    transform: scale(.97);
}

.ie-why-grid .ie-why-card:hover {
    opacity: 1;
    transform: translateY(-15px) scale(1.03);
    z-index: 5;
}



.ie-why-card:hover .ie-why-check {
    animation: ieRotate .5s ease;
}

@keyframes ieRotate {

    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(-12deg) scale(1.15);
    }

    100% {
        transform: rotate(0deg) scale(1.1);
    }

}



.ie-why-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18), 0 0 40px rgba(212, 175, 55, .18);
}



@media(max-width:1200px) {

    .ie-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ie-why-title {
        font-size: 46px;
    }

}



@media(max-width:991px) {

    .ie-why-v2 {
        padding: 60px 0;
    }

    .ie-why-heading {
        margin-bottom: 3cap;
        text-align: left;
    }

    .ie-why-title {
        font-size: 40px;
    }

    .ie-why-description {
        font-size: 16px;
        line-height: 30px;
    }

    .ie-why-grid {
        gap: 24px;
    }

}



@media(max-width:767px) {

    .ie-why-grid {
        grid-template-columns: 1fr;
    }

    .ie-why-title {
        font-size: 34px;
    }

    .ie-why-card {
        padding: 30px;
    }

    .ie-why-check {
        width: 62px;
        height: 62px;
        font-size: 28px;
        margin-bottom: 18px;
    }

    .ie-why-card h3 {
        font-size: 23px;
    }

}


@media(max-width:576px) {

    .ie-why-container {
        width: 92%;
    }

    .ie-why-title {
        font-size: 24px;
        line-height: 1.1;
    }

    .ie-why-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .ie-why-card {
        padding: 26px;
        border-radius: 22px;
    }

    .ie-why-check {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 18px;
    }

    .ie-why-card h3 {
        font-size: 21px;
    }

    .ie-why-card p {
        font-size: 15px;
        line-height: 1.5;
    }

}



.ie-why-v2::before {
    animation: ieMoveOne 10s linear infinite alternate;
}

.ie-why-v2::after {
    animation: ieMoveTwo 12s linear infinite alternate;
}

@keyframes ieMoveOne {

    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 40px);
    }

}

@keyframes ieMoveTwo {

    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-40px, -50px);
    }

}



@media (prefers-reduced-motion: reduce) {

    .ie-why-card,
    .ie-why-heading,
    .ie-why-check {
        animation: none !important;
        transition: none !important;
    }

}











.ie-portfolio-v2 {
    position: relative;
    padding: 30px 0 90px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}


.ie-portfolio-v2::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    top: -220px;
    left: -180px;
    filter: blur(25px);
}

.ie-portfolio-v2::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 123, 255, .05);
    bottom: -180px;
    right: -140px;
    filter: blur(25px);
}



.ie-portfolio-container {
    width: 92%;
    max-width: 1450px;
    margin: auto;
    position: relative;
    z-index: 2;
}


.ie-portfolio-heading {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}


.ie-portfolio-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 60px;
    background: #ffcc29;
    color: #373435;
    font-size: 14px;
    font-weight: 700;
}

.ie-portfolio-tag i {
    font-size: 18px;
}

.ie-portfolio-title {
    margin-top: 25px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #373435;
}


.ie-portfolio-title span {
    display: block;
    color: #f58634;
}

.ie-portfolio-text {
    margin-top: 22px;
    font-size: 17px;
    color: #666;
    line-height: 32px;
}


.ie-portfolio-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 130px;
}


button.ie-filter-btn.active {
    background: linear-gradient(45deg, #f58634, #ffcc29);
    color: #fff;
}

.ie-filter-btn {
    position: relative;
    height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 60px;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    color: #333;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
}

.ie-filter-btn:hover {
    transform: translateY(-4px);
}


.ie-filter-btn.ie-active {
    color: #fff;
    background: linear-gradient(135deg, #f58634, #ffcc29);
}



.ie-filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
    transition: .8s;
}

.ie-filter-btn:hover::before {
    left: 170%;
}



.ie-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 24px;
}


.ie-tall {
    grid-row: span 2;
}

.ie-wide {
    grid-column: span 2;
}


.ie-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    cursor: pointer;
    background: #ddd;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .10);
    transition: .45s;
}

.ie-portfolio-item:hover {
    transform: translateY(-10px);
}



.ie-hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(.85);
    pointer-events: none;
    transition: .45s;
}




.ie-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease, filter .8s ease;
}



.ie-portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: .45s;
}



.ie-portfolio-overlay span {
    align-self: flex-start;
    padding: 9px 18px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(18px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0px;
}



.ie-portfolio-overlay h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 18px;
    transform: translateY(30px);
    opacity: 0;
    transition: .45s;
}



.ie-portfolio-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 14px 24px;
    border-radius: 50px;
    background: #C79A1D;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(30px);
    opacity: 0;
    transition: .45s;
}

.ie-portfolio-overlay a i {
    transition: .35s;
}

.ie-portfolio-overlay a:hover i {
    transform: translateX(6px);
}



.ie-portfolio-item:hover img {
    transform: scale(1.15);
    filter: brightness(.78);
}

.ie-portfolio-item:hover .ie-portfolio-overlay {
    opacity: 1;
}

.ie-portfolio-item:hover .ie-portfolio-overlay h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .15s;
}

.ie-portfolio-item:hover .ie-portfolio-overlay a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .25s;
}



.ie-portfolio-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 28px;
    transition: .45s;
    z-index: 2;
}

.ie-portfolio-item:hover::before {
    inset: 12px;
    border-color: #D4AF37;
}



.ie-portfolio-item::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 50%;
    height: 260%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: rotate(20deg);
    transition: 1s;
}

.ie-portfolio-item:hover::after {
    left: 160%;
}



.ie-portfolio-item {
    animation: iePortfolioFloat 6s ease-in-out infinite;
}

.ie-portfolio-item:nth-child(even) {
    animation-delay: .8s;
}



@keyframes iePortfolioFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}



.ie-portfolio-heading,
.ie-portfolio-filter,
.ie-portfolio-item {
    transform: translateY(80px);
    transition: 1s cubic-bezier(.22, .61, .36, 1);
}

.ie-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.ie-portfolio-item:nth-child(1) {
    transition-delay: .08s;
}

.ie-portfolio-item:nth-child(2) {
    transition-delay: .15s;
}

.ie-portfolio-item:nth-child(3) {
    transition-delay: .22s;
}

.ie-portfolio-item:nth-child(4) {
    transition-delay: .29s;
}

.ie-portfolio-item:nth-child(5) {
    transition-delay: .36s;
}

.ie-portfolio-item:nth-child(6) {
    transition-delay: .43s;
}

.ie-portfolio-item:nth-child(7) {
    transition-delay: .50s;
}

.ie-portfolio-item:nth-child(8) {
    transition-delay: .57s;
}

.ie-portfolio-item:nth-child(9) {
    transition-delay: .64s;
}

.ie-portfolio-item:nth-child(10) {
    transition-delay: .71s;
}

.ie-portfolio-item:nth-child(11) {
    transition-delay: .78s;
}

.ie-portfolio-item:nth-child(12) {
    transition-delay: .85s;
}


.ie-portfolio-grid:hover .ie-portfolio-item {
    opacity: .55;
    transform: scale(.97);
}

.ie-portfolio-grid .ie-portfolio-item:hover {
    opacity: 1;
    transform: translateY(-12px) scale(1.03);
    z-index: 5;
}




.ie-filter-btn {
    overflow: hidden;
}

.ie-filter-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: .35s;
}

.ie-filter-btn.ie-active::after {
    width: 40%;
}




.ie-portfolio-item:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, .22), 0 0 35px rgba(212, 175, 55, .15);
}




.ie-portfolio-overlay span {
    transition: .35s;
}

.ie-portfolio-item:hover .ie-portfolio-overlay span {
    background: #D4AF37;
    color: #fff;
}




.ie-portfolio-overlay a {
    transition: .35s;
}

.ie-portfolio-overlay a:hover {
    transform: translateY(-3px);
    background: #b8860b;
}



.ie-portfolio-item img {
    will-change: transform;
    backface-visibility: hidden;
}



@media(max-width:1300px) {

    .ie-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ie-wide {
        grid-column: span 2;
    }

}




@media(max-width:991px) {

    .ie-portfolio-v2 {
        padding: 0px 0 60px;
    }

    .ie-portfolio-title {
        font-size: 44px;
    }

    .ie-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

    .ie-wide {
        grid-column: span 2;
    }

    .ie-tall {
        grid-row: span 2;
    }

}




@media(max-width:767px) {

    .ie-portfolio-heading {
        margin-bottom: 30px;
    }

    .ie-portfolio-title {
        font-size: 34px;
    }

    .ie-portfolio-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .ie-portfolio-filter {
        gap: 10px;
        margin-bottom: 45px;
    }

    .ie-filter-btn {
        height: 48px;
        padding: 0 20px;
        font-size: 14px;
    }

    .ie-portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .ie-wide {
        grid-column: span 1;
    }

    .ie-tall {
        grid-row: span 1;
    }

    .ie-portfolio-overlay {
        padding: 25px;
    }

    .ie-portfolio-overlay h3 {
        font-size: 22px;
    }

}




@media(max-width:480px) {

    .ie-portfolio-container {
        width: 92%;
    }

    .ie-portfolio-title {
        font-size: 26px;
    }

    .ie-portfolio-tag {
        font-size: 13px;
        padding: 10px 18px;
    }

    .ie-filter-btn {
        width: max-content;
    }

    .ie-portfolio-grid {
        gap: 18px;
        margin-top: 130px;
    }

    .ie-portfolio-item {
        border-radius: 22px;
    }

    .ie-portfolio-overlay {
        padding: 20px;
    }

}



.ie-portfolio-v2::before {
    animation: ieBlobOne 12s linear infinite alternate;
}

.ie-portfolio-v2::after {
    animation: ieBlobTwo 14s linear infinite alternate;
}

@keyframes ieBlobOne {

    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 45px);
    }

}

@keyframes ieBlobTwo {

    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, -40px);
    }

}


@media(prefers-reduced-motion:reduce) {

    .ie-portfolio-item,
    .ie-portfolio-heading,
    .ie-filter-btn {
        animation: none !important;
        transition: none !important;
    }

}








.ie-film-intro {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}



.ie-black-screen {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 10;
    animation: ieBlackFade 2s ease forwards;
}



@keyframes ieBlackFade {

    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }

}



.ie-film-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    animation: ieCameraMove 20s infinite alternate;
}



@keyframes ieCameraMove {

    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.25);
    }

}



.ie-film-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .85));
    z-index: 2;
}



.ie-film-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
}


.ie-brand-intro h1 {
    font-size: 110px;
    letter-spacing: 25px;
    font-weight: 900;
    margin: 0;
    opacity: 0;
    animation: ieBrandReveal 2s 1s forwards;
}



.ie-brand-intro span {
    display: block;
    font-size: 18px;
    letter-spacing: 12px;
    color: #ffcc29;
    margin-top: 20px;
    opacity: 0;
    animation: ieFade 1.5s 2.2s forwards;
}




@keyframes ieBrandReveal {

    0% {
        opacity: 0;
        filter: blur(20px);
        letter-spacing: 50px;
    }

    100% {
        opacity: 1;
        filter: blur(0);
        letter-spacing: 25px;
    }

}



@keyframes ieFade {

    to {
        opacity: 1;
    }

}



.ie-brand-intro h1::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
    animation: ieLightSweep 2s 2s;
}



@keyframes ieLightSweep {


    to {
        left: 120%;
    }


}



.ie-reveal-line {
    width: 0;
    height: 1px;
    background: #ffcc29;
    margin: 50px auto;
    animation: ieLineReveal 1.5s 3s forwards;
}


@keyframes ieLineReveal {


    to {
        width: 200px;
    }


}




.ie-main-message {
    opacity: 0;
    transform: translateY(50px);
    animation: ieMessageReveal 1.5s 3.5s forwards;
}



@keyframes ieMessageReveal {


    to {
        opacity: 1;
        transform: none;
    }


}



.ie-main-message h2 {
    font-size: 80px;
    font-weight: 700;
    margin: 0;
}



.ie-main-message strong {
    display: block;
    color: #f58634;
    font-size: 120px;
}




.ie-main-message p {
    font-size: 24px;
    letter-spacing: 4px;
    color: #ddd
}



.ie-film-play {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(15px);
    color: white;
    font-size: 35px;
    transition: .5s;
}



.ie-film-play:hover {
    background: #D4AF37;
    color: #000;
    transform: scale(1.15);
}



@media(max-width:768px) {

    .ie-brand-intro h1 {
        font-size: 55px;
        letter-spacing: 12px;
    }


    .ie-brand-intro span {
        font-size: 11px;
        letter-spacing: 5px;
    }



    .ie-main-message h2 {
        font-size: 45px;
    }


    .ie-main-message strong {
        font-size: 65px;
    }


    .ie-main-message p {
        font-size: 15px;
    }


}




.ie-film-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    backdrop-filter: blur(15px);
}



.ie-film-modal.active {
    opacity: 1;
    visibility: visible;
}




.ie-film-modal-inner {
    position: relative;
    width: 90%;
    max-width: 1200px;
    transform: scale(.75);
    transition: .6s cubic-bezier(.16, 1, .3, 1);
}




.ie-film-modal.active .ie-film-modal-inner {
    transform: scale(1);
}




.ie-film-modal-video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .8);
}



.ie-film-modal-close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #D4AF37;
    color: #111;
    font-size: 18px;
    z-index: 5;
    cursor: pointer;
}



@media(max-width:768px) {


    .ie-film-modal-inner {
        width: 95%;
    }


    .ie-film-modal-close {
        right: 0;
        top: -60px;
    }

}









.ie-testimonial-section {
    position: relative;
    padding: 100px 0;
    background: #373435;
    overflow: hidden;
}




.ie-testimonial-heading {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #fff;
}



.ie-testimonial-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(20px);
    color: #fff;
    font-size: 12px;
    letter-spacing: 3px;
}



.ie-testimonial-tag i {
    color: #ffcc29;
}



.ie-testimonial-heading h2 {
    margin: 35px 0 15px;
    font-size: 70px;
    font-weight: 800;
}



.ie-testimonial-heading h2 span {
    color: #f58634;
}



.ie-testimonial-heading p {
    color: #aaa;
    font-size: 18px;
}





.ie-testimonial-slider {
    margin-top: 80px;
    overflow: hidden;
    width: 100%;
}



.ie-testimonial-track {
    display: flex;
    transition: transform 1s cubic-bezier(.16, 1, .3, 1);
    will-change: transform;
}



.ie-testimonial-card {
    flex: 0 0 calc(33.333% - 40px);
    margin: 0 20px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    transition: .5s;
}



.ie-testimonial-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffcc29;
    opacity: .15;
    filter: blur(100px);
}


.ie-testimonial-card:hover {
    transform: translateY(-15px);
    border-color: #ffcc29;
}



.ie-testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffcc29;
}


.ie-stars {
    margin: 22px 0;
    color: #ffcc29;
    font-size: 22px;
    letter-spacing: 4px;
}


.ie-testimonial-card p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
}


.ie-testimonial-card h3 {
    margin-top: 30px;
    font-size: 22px;
}


.ie-testimonial-card span {
    color: #f58634;
    font-size: 14px;
}


.ie-testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}



.ie-testimonial-controls button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    font-size: 20px;
    transition: .4s;
}




.ie-testimonial-controls button:hover {
    background: #D4AF37;
    color: #111;
}




@media(max-width:1100px) {
    .ie-testimonial-card {
        flex: 0 0 calc(50% - 40px);
    }
}




@media(max-width:768px) {


    .ie-testimonial-section {
        padding: 60px 5%;
    }


    .ie-testimonial-heading h2 {
        font-size: 28px;
        margin: 30px 0px 15px;
    }

    .ie-testimonial-slider {
        margin-top: 40px;
    }

    .ie-testimonial-heading p {
        font-size: 15px;
    }

    .ie-testimonial-card {
        flex: 0 0 calc(100% - 20px);
        margin: 0 10px;
        padding: 35px 25px;
    }


    .ie-testimonial-card img {
        width: 85px;
        height: 85px;
    }


    .ie-stars {
        font-size: 18px;
        margin: 15px 0px;
    }


    .ie-testimonial-card p {
        font-size: 15px;
        line-height: 1.5;
    }


    .ie-testimonial-card h3 {
        font-size: 20px;
        margin-top: 20px;
    }


    .ie-testimonial-card span {
        font-size: 13px;
    }

    .ie-testimonial-controls {
        gap: 180px;
        margin-top: 30px;
    }


    .ie-testimonial-card {
        flex: 0 0 calc(100% - 20px);
        margin: 0 10px;
        padding: 25px 15px;
    }

}









.ie-clients-section {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}



.ie-clients-header {
    text-align: center;
    margin-bottom: 70px;
}



.ie-clients-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 60px;
    background: #ffcc29;
    color: #373435;
    font-size: 14px;
    font-weight: 700;
}


.ie-clients-tag i {
    color: #373435;
    font-weight: 700;
}



.ie-clients-header h2 {
    margin-top: 30px;
    font-size: 57px;
    font-weight: 800;
    color: #373435;
}



.ie-clients-header h2 span {
    color: #f58634;
}





.ie-logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}



.ie-logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: ieLogoMove 30s linear infinite;
}




.ie-client-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    transition: .5s;
}





.ie-client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: .5s;
}




.ie-client-logo:hover {
    transform: translateY(-12px);
}







@keyframes ieLogoMove {


    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}



.ie-logo-marquee::before,
.ie-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}


.ie-logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
}



.ie-logo-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent);
}




@media(max-width:768px) {


    .ie-clients-section {
        padding: 60px 0;
    }


    .ie-clients-header h2 {
        font-size: 28px;
    }


    .ie-logo-track {
        gap: 40px;
    }


    .ie-client-logo {
        width: 100px;
        height: 90px;
    }

    .ie-clients-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .ie-client-logo img {
        max-width: 90px;
    }

}


.ie-logo-marquee:hover .ie-logo-track {
    animation-play-state: paused;
}









.ie-contact-section {
    padding: 0px 0% 100px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}



.ie-contact-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #D4AF37;
    filter: blur(180px);
    opacity: .12;
    top: -150px;
    right: -150px;
}





.ie-contact-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}



.ie-contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 60px;
    background: #ffcc29;
    color: #373435;
    font-size: 14px;
    font-weight: 700;
}


.ie-contact-tag i {
    color: #373435;
}



.ie-contact-content h2 {
    font-size: 58px;
    line-height: 1;
    font-weight: 800;
    color: #373435;
    margin: 35px 0;
}




.ie-contact-content h2 span {
    color: #f58634;
}




.ie-contact-content p {
    max-width: 600px;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}



.ie-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 18px 35px;
    border-radius: 50px;
    background: #D4AF37;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}




.ie-contact-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, .35);
}




.ie-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}





.ie-contact-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transition: .5s;
}




.ie-contact-card:hover {
    transform: translateX(-15px);
    border-color: rgb(245 134 52);
    box-shadow: rgba(212, 175, 55, 0.18) 0px 25px 60px;
}







.ie-contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f58634, #ffcc29);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #ffffff !important;
    flex-shrink: 0;
}


.ie-contact-icon a i {
    color: #ffffff !important;
}





.ie-contact-card small {
    color: #999;
    letter-spacing: 2px;
}




.ie-contact-card h3 {
    margin-top: 8px;
    color: #111;
    font-size: 17px;
}




@media(max-width:992px) {

    .ie-contact-wrapper {
        grid-template-columns: 1fr;
    }


    .ie-contact-content h2 {
        font-size: 55px;
    }

}





@media(max-width:600px) {


    .ie-contact-section {
        padding: 60px 3%;
    }



    .ie-contact-content h2 {
        font-size: 28px;
        margin: 20px 0;
    }


    .ie-contact-content p {
        font-size: 16px;
        line-height: 1.5;
    }


    .ie-contact-card {
        padding: 18px 15px;
    }


    .ie-contact-wrapper {
        gap: 20px;
    }



    .ie-contact-card h3 {
        font-size: 16px;
    }


}









.ie-footer-section {
    position: relative;
    padding: 100px 6% 0px;
    background: #050505;
    color: white;
    overflow: hidden;
}



.ie-footer-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #D4AF37;
    filter: blur(180px);
    opacity: .12;
    bottom: -250px;
    left: 30%;
}



.ie-footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}



.ie-footer-logo {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
}



.ie-footer-logo span {
    display: block;
    font-size: 12px;
    letter-spacing: 5px;
    color: #ffcc29;
    margin-top: 8px;
}



.ie-footer-brand p {
    color: #999;
    line-height: 1.8;
    margin: 25px 0;
    max-width: 350px;
}





.ie-footer-social {
    display: flex;
    gap: 15px;
}



.ie-footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
    font-size: 20px;
    transition: .4s;
}



.ie-footer-social a:hover {
    background: linear-gradient(45deg, #ffcc29, #f58634);
    color: #fafdf4;
    transform: translateY(-8px);
}




.ie-footer-column h3,
.ie-footer-gallery h3 {
    font-size: 22px;
    margin-bottom: 30px;
}



.ie-footer-column h3::after,
.ie-footer-gallery h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #ffcc29;
    margin-top: 12px;
}



.ie-footer-column ul {
    padding: 0;
    list-style: none;
}




.ie-footer-column li {
    margin-bottom: 15px;
    color: #aaa;
    transition: .3s;
    cursor: pointer;
}



.ie-footer-column li:hover {
    color: #f58634;
    transform: translateX(8px);
}


.ie-footer-column a {
    color: #aaa;
    text-decoration: none;
}




.ie-footer-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}



.ie-footer-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    transition: .5s;
}



.ie-footer-images img:hover {
    transform: scale(1.1);
    border-radius: 25px;
}



.ie-footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    text-align: center;
    color: #888;
    font-size: 14px;
}



@media(max-width:1000px) {

    .ie-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media(max-width:600px) {

    .ie-footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ie-footer-social {
        gap: 15px;
        margin-bottom: 20px;
    }

    .ie-footer-logo {
        font-size: 34px;
    }



    .ie-footer-images img {
        width: 90px;
        height: 90px;
    }


    .ie-footer-section {
        padding: 60px 6% 0px;
    }


    .ie-footer-brand p {
        line-height: 1.5;
        margin: 17px 0;
        max-width: 100%;
    }


    .ie-footer-column li {
        margin-bottom: 10px;
    }


    .ie-footer-column h3,
    .ie-footer-gallery h3 {
        margin-bottom: 20px;
    }


}









.ie-query-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 65px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 60px;
    background: linear-gradient(135deg, #f58634, #ffcc29);
    color: #fff;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 20px 45px rgba(212, 175, 55, .35);
    transition: .4s;
}

.ie-query-btn:hover {
    transform: translateY(-8px);
}

.ie-query-btn-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ie-query-btn span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
}



.ie-query-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: .45s;
    z-index: 99999;
}

.ie-query-popup.ie-show {
    opacity: 1;
    visibility: visible;
}



.ie-query-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(12px);
}



.ie-query-modal {
    position: relative;
    width: 100%;
    max-width: 1180px;
    background: #0f0f10;
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 38% 62%;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 50px 120px rgba(0, 0, 0, .55);
    transform: translateY(40px) scale(.92);
    transition: .45s;
    z-index: 2;
}

.ie-query-popup.ie-show .ie-query-modal {
    transform: translateY(0) scale(1);
}



.ie-query-close {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    z-index: 20;
    transition: .35s;
}

.ie-query-close:hover {
    background: linear-gradient(45deg, #ffcc29, #f58634);
    transform: rotate(90deg);
}



.ie-query-left {
    padding: 70px 50px;
    background: linear-gradient(180deg, #3c393a, #373435);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.ie-query-left::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    filter: blur(80px);
    top: -100px;
    left: -120px;
}

.ie-query-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, .25);
    background: rgba(255, 255, 255, .04);
    color: #ffcc29;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.ie-query-left h2 {
    font-size: 52px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.ie-query-left h2 span {
    color: #ffcc29;
}

.ie-query-left p {
    color: rgba(255, 255, 255, .72);
    line-height: 30px;
    font-size: 16px;
}



.ie-query-right {
    padding: 55px;
    background: #353535;
}



.ie-query-form {
    width: 100%;
}

.ie-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.ie-form-group {
    display: flex;
    flex-direction: column;
}

.ie-form-group label {
    color: #ffcc29;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: .5px;
}



.ie-input-box {
    position: relative;
}

.ie-input-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffcc29;
    font-size: 18px;
    z-index: 2;
}

.ie-textarea i {
    top: 24px;
    transform: none;
}



.ie-input-box input,
.ie-input-box select,
.ie-input-box textarea {
    width: 100%;
    background: #fafdf4;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #000000;
    border-radius: 16px;
    outline: none;
    padding: 18px 18px 18px 52px;
    font-size: 15px;
    transition: .35s;
}


.ie-input-box textarea {
    resize: none;
    min-height: 150px;
}

.ie-input-box input::placeholder,
.ie-input-box textarea::placeholder {
    color: #8a8a8a;
}

.ie-input-box input:focus,
.ie-input-box select:focus,
.ie-input-box textarea:focus {

    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .08);

}





.ie-submit-btn {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #D4AF37, #f58634);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
    transition: .4s;
    box-shadow: 0 20px 40px rgba(212, 175, 55, .25);
}

.ie-submit-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(212, 175, 55, .35);
}

.ie-submit-btn i {
    transition: .4s;
}

.ie-submit-btn:hover i {
    transform: translateX(8px);
}





.ie-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 90px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
}

.ie-submit-btn:hover::before {
    animation: ieBtnShine .8s linear;
}

@keyframes ieBtnShine {

    to {
        left: 150%;
    }

}




.ie-input-box:hover input,
.ie-input-box:hover select,
.ie-input-box:hover textarea {
    border-color: rgba(212, 175, 55, .45);
}




.ie-input-box select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}





.ie-textarea textarea {
    padding-top: 20px;
}




.ie-query-left>*,
.ie-query-right>* {
    opacity: 0;
    transform: translateY(35px);
    transition: .7s ease;

}

.ie-query-popup.ie-show .ie-query-left>*,
.ie-query-popup.ie-show .ie-query-right>* {
    opacity: 1;
    transform: translateY(0);
}

.ie-query-popup.ie-show .ie-query-tag {
    transition-delay: .2s;
}

.ie-query-popup.ie-show h2 {
    transition-delay: .4s;
}

.ie-query-popup.ie-show p {
    transition-delay: .6s;
}

.ie-query-popup.ie-show .ie-query-form {
    transition-delay: .8s;
}



.ie-query-btn {
    animation: ieFloat 5s ease-in-out infinite;
}

@keyframes ieFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}




.ie-query-btn::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 60px;
    border: 2px solid rgba(212, 175, 55, .30);
    animation: iePulse 2.5s infinite;

}

@keyframes iePulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }

}



.ie-query-close:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, .45);
}




.ie-query-modal::-webkit-scrollbar {
    width: 8px;
}

.ie-query-modal::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 20px;
}




@media(max-width:991px) {

    .ie-query-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .ie-query-left {
        padding: 45px 35px;
        text-align: center;
    }

    .ie-query-tag {
        margin: auto auto 0px;
    }

    .ie-query-left h2 {
        font-size: 40px;
    }

    .ie-query-right {
        padding: 35px;
    }

}



@media(max-width:768px) {

    .ie-query-popup {
        padding: 15px;
    }

    .ie-form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ie-query-left {
        padding: 60px 10px 30px;
    }

    .ie-query-right {
        padding: 25px;
    }

    .ie-query-left h2 {
        font-size: 34px;
    }

    .ie-query-btn {
        right: 20px;
        bottom: 20px;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .ie-query-btn span {
        display: none;
    }

}



@media(max-width:576px) {

    .ie-query-modal {
        border-radius: 22px;
    }

    .ie-query-left h2 {
        font-size: 28px;
        display: none;
    }

    .ie-query-left p {
        font-size: 14px;
        line-height: 26px;
        display: none;
    }

    .ie-input-box input,
    .ie-input-box select,
    .ie-input-box textarea {
        font-size: 14px;
        padding: 16px 16px 16px 48px;
    }

    .ie-submit-btn {
        height: 56px;
        font-size: 15px;
        margin-top: 15px;
    }

    .ie-query-close {
        width: 42px;
        height: 42px;
        top: 15px;
        right: 15px;
    }

}




.ie-query-popup {
    opacity: 0;
    visibility: hidden;
    display: flex;
}

.ie-query-popup.ie-show {

    opacity: 1;
    visibility: visible;

}









.ie-iso-section {
    position: relative;
    padding: 30px 0 90px;
    background: #fff;
    overflow: hidden;
    isolation: isolate;
}



.ie-iso-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    left: -180px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 210, 82, .35), transparent 70%);
    filter: blur(80px);
}

.ie-iso-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 240, 180, .45), transparent 70%);
    filter: blur(100px);
}


.ie-iso-heading {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(60px);
    transition: 1s cubic-bezier(.22, 1, .36, 1);
}

.ie-iso-heading.ie-show {
    opacity: 1;
    transform: none;
}

.ie-iso-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 80px;
    background: #ffcc29;
    color: #373435;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 15px 35px rgba(184, 134, 11, .15);
}

.ie-iso-tag i {
    font-size: 17px;
}

.ie-iso-heading h2 {
    margin: 25px 0 0;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #373435;
}

.ie-iso-heading h2 span {
    color: #f58634;
}


.ie-iso-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 70px;
    align-items: center;
}



.ie-certificate-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12), 0 0 0 1px rgba(255, 255, 255, .35);
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s;
    opacity: 0;
    transform: translateY(60px);
}

.ie-certificate-card.ie-show {
    opacity: 1;
    transform: translateY(0);
}



.ie-card-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 45%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, .55), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    transition: 1.3s;
    z-index: 5;
}

.ie-certificate-card:hover .ie-card-shine {
    left: 180%;
}



.ie-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.ie-card-top span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.ie-card-top span i {
    color: #f58634;
    font-size: 20px;
}


.ie-view-btn {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58634, #ffcc29);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .45s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 18px 35px rgba(184, 134, 11, .30);
}

.ie-view-btn:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 25px 45px rgba(184, 134, 11, .40);
}



.ie-certificate-image {
    position: relative;
    height: 600px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    overflow: hidden;
}

.ie-certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: .6s ease;
}

.ie-certificate-card:hover .ie-certificate-image img {
    transform: scale(1.04);
}



.ie-certificate-image::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .45s;
    z-index: 2;
}

.ie-certificate-card:hover .ie-certificate-image::before {
    opacity: 1;
}



.ie-certificate-image::after {
    content: "\F52A";
    font-family: "bootstrap-icons";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #f58634;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.6);
    opacity: 0;
    transition: .45s;
    z-index: 3;
}

.ie-certificate-card:hover .ie-certificate-image::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}



.ie-card-bottom {
    padding: 22px 28px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    background: #fff;
}

.ie-card-bottom span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 15px;
    font-weight: 600;
}

.ie-card-bottom i {
    color: #C89B3C;
    font-size: 18px;
}



.ie-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: .45s;
    z-index: 999999;
}


.ie-lightbox.ie-active {
    opacity: 1;
    visibility: visible;
}


.ie-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
    transform: scale(.8);
    transition: .45s;
}

.ie-lightbox.ie-active img {
    transform: scale(1);
}



.ie-lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
    font-size: 24px;
    z-index: 1000000;
    transition: .35s;
}

.ie-lightbox-close:hover {
    background: linear-gradient(45deg, #f58634, #ffcc29);
    color: #fff;
    transform: rotate(90deg);
}




.ie-iso-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}



.ie-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .45s cubic-bezier(.22, 1, .36, 1);
    opacity: 0;
    transform: translateX(70px);
}


.ie-feature-card.ie-show {
    opacity: 1;
    transform: translateX(0);
}

.ie-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12), 0 0 40px rgba(255, 204, 41, .15);
}


.ie-feature-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f58634, #ffcc29);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(184, 134, 11, .25);
    transition: .4s;
}

.ie-feature-card:hover .ie-feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

.ie-feature-card h4 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.ie-feature-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}



.ie-certificate-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    margin-top: 15px;
    padding: 18px 36px;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #B8860B, #E8C766);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(184, 134, 11, .28);
    transition: .45s;
    opacity: 0;
    transform: translateY(60px);
}


.ie-certificate-btn.ie-show {
    opacity: 1;
    transform: none;
}


.ie-certificate-btn:hover {
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(184, 134, 11, .35);
}


.ie-certificate-btn i {
    transition: .35s;
}


.ie-certificate-btn:hover i {
    transform: translateX(8px);
}



@keyframes ieFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

.ie-certificate-card {
    animation: ieFloat 5s ease-in-out infinite;
}


@media(max-width:1200px) {

    .ie-iso-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}

@media(max-width:991px) {

    .ie-iso-section {
        padding: 90px 0;
    }

    .ie-iso-heading {
        margin-bottom: 40px;
    }

    .ie-iso-heading h2 {
        font-size: 38px;
    }

    .ie-feature-card {
        padding: 20px 15px;
        gap: 10px;
    }


    .ie-feature-card p {
        font-size: 15px;
        line-height: 1.5;
    }

    .ie-iso-wrapper {
        grid-template-columns: 1fr;
        gap: 44px;
    }

}

@media(max-width:767px) {

    .ie-iso-heading h2 {
        font-size: 28px;
        line-height: 1.1;
    }

    .ie-card-top {
        padding: 12px 18px;
    }

    .ie-certificate-image {
        height: 100%;
        padding: 0px;
    }

    .ie-feature-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 24px;
    }


    .ie-feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .ie-feature-icon {
        margin-bottom: 10px;
    }

    .ie-certificate-btn {
        width: 100%;
        justify-content: center;
    }

    .ie-lightbox img {
        max-width: 96%;
    }

}

@media(max-width:480px) {

    .ie-iso-section {
        padding: 60px 0;
    }

    .ie-iso-heading h2 {
        font-size: 26px;
    }

    .ie-certificate-card {
        border-radius: 20px;
    }

    .ie-feature-card {
        border-radius: 18px;
    }

}



.ie-iso-heading,
.ie-certificate-card,
.ie-feature-card,
.ie-certificate-btn {
    transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);

}



.ie-certificate-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    pointer-events: none;
}



.ie-lightbox::-webkit-scrollbar {
    width: 8px;
}

.ie-lightbox::-webkit-scrollbar-thumb {
    background: #C89B3C;
    border-radius: 50px;
}

.ie-lightbox::-webkit-scrollbar-track {
    background: #222;
}



@media(prefers-reduced-motion:reduce) {

    .ie-certificate-card,
    .ie-feature-card,
    .ie-certificate-btn,
    .ie-lightbox img {
        animation: none;
        transition: none;
    }

}