/* **************************** */
/* ********* Top bar ********** */
/* **************************** */
body {
    background-color: white !important;
    font-family: "TikTok Sans", sans-serif !important;

}

@media screen and (min-width: 1000px) and (max-width:1399px) {

    .top-bar,
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 12.7px !important;
    }
}

.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.top-bar {
    background: transparent;
    padding: 12px 0;
    font-size: 16px;
    position: relative;
}

.top-bar .container .row {
    justify-content: space-between;
    padding: 0 25px;
}

.top-bar .contact-info span a {
    text-decoration: none;
    color: #ffffff;
    transition: color 500ms ease;
}

.top-bar .contact-info span a:hover,
.top-bar .social-icons a:hover {
    color: #ED1F24;
    transition: color 500ms ease;
}

.top-bar .social-icons {
    text-align: end;
}

.top-bar .social-icons a {
    color: white;
    margin: 0 8px;
    transition: color 500ms ease;
}

@media screen and (max-width:769px) {

    .top-bar {
        display: none;
    }

}

/* **************************** */
/* ********* Menu bar ********** */
/* **************************** */

.menu-bar {
    padding: 0px 0px;
}

.menu-bar .navbar {
    background: transparent;
    transition: 0.3s;
    padding: 15px 0;
    z-index: 999;
    transition: all 500ms ease;
}

.menu-bar .container {
    padding: 0 35px;
}

.menu-bar .navbar.scrolled {
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0px;
    z-index: 999;
    scroll-behavior: smooth;
    transition: all 500ms ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-bar .navbar.scrolled .nav-link {
    color: white;
}

.menu-bar .navbar.scrolled .nav-link:hover {
    color: #ED1F24;
}

.menu-bar .navbar-brand img {
    height: 25px;
    width:100px;
}

.menu-bar .nav-link {
    color: white;
    margin: 0 10px;
    transition: all 500ms ease;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: white;
}

.menu-bar .nav-link:hover {
    color: #ED1F24;
    transition: all 500ms ease;
}

@media (max-width: 768px) {
    .menu-bar .navbar {
        transition: 0.3s;
        padding: 15px 0;
        position: relative;
        z-index: 999;
        transition: all 500ms ease;
        background: transparent;
    }

    .menu-bar .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .menu-bar .navbar-collapse {
        background: rgba(124, 96, 213, 0.9);
        padding: 15px;
        border-radius: 10px;
    }

    .menu-bar {
        padding: 0;
    }

    .menu-bar .navbar {
        width: 100%;
        color: #555;
    }

    .menu-bar .navbar-brand img {
        height: 25px !important;
    }

    .menu-bar .navbar-toggler {
        background-color: black;
        padding: 2px 5px;
        color: #555;
        position: relative;
    }

    .menu-bar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .menu-bar .navbar-collapse {
        background: black;
        padding: 0px;
        border-radius: 8px;
        color: #555;
        margin-top: 10px;
    }

    .menu-bar .navbar-nav {
        text-align: center;
    }

    .menu-bar .nav-item {
        padding: 15px 0;
        color: #555;
        text-align: left;
        font-weight: 600;
    }

    .menu-bar .nav-link {
        display: block;
        padding: 0px 15px;
        margin: 0;
        color: #555;
    }

    .menu-bar .nav-item:hover {
        background-color: #ED1F24;
        color: #fff;
    }

    .menu-bar .nav-item:hover .nav-link {
        color: white;
    }

    .menu-bar .navbar.scrolled .nav-link:hover {
        color: white;
    }

    .menu-bar .navbar.scrolled {
        padding: 10px 0px;
    }

}


/* ========================================= */
/*           DROPDOWN / SUBMENU CSS          */
/* ========================================= */

.menu-bar .nav-item.dropdown {
    position: relative;
}

.menu-bar .nav-item .submenu {
    position: absolute;
    top: 45px;
    left: 0;
    background: black;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.484);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-bar .nav-item.dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.menu-bar .submenu li {
    list-style: none;
}

.menu-bar .submenu li a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.menu-bar .submenu li a:hover {
    background: #ED1F24;
    color: #ffffff;
}

.menu-bar .nav-item.dropdown>.nav-link i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.menu-bar .nav-item.dropdown:hover>.nav-link i {
    transform: rotate(180deg);
}

/* ============================== */
/*      Mobile Dropdown Fix       */
/* ============================== */
@media (max-width: 768px) {

    .menu-bar .nav-item.dropdown>.nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-bar .nav-item.dropdown>.nav-link i {
        margin-left: 0;
        transition: transform 0.3s ease;
    }

    .menu-bar .nav-item .submenu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: black !important;
        display: none;
        opacity: 1;
        visibility: visible;
        padding: 10px 0;
        z-index: 999;
        width: 100%;
    }

    .menu-bar .nav-item.dropdown.active>.submenu {
        display: block;
    }

    .menu-bar .submenu li a {
        padding: 10px 20px;
        background: transparent;
        color: white;
    }

    .menu-bar .nav-item.dropdown>.nav-link i {
        transition: transform 0.3s ease;
        display: inline-block;
    }
}

/* **************************** */
/* ********** Footer ********** */
/* **************************** */

.footer-section {
    position: relative;
    padding: 100px 0 40px;
    background: rgb(23, 23, 23);
}

.footer-section .footer-top {
    position: relative;
    z-index: 1;
    padding: 0px 100px;
    color: white;
}

.footer-section .footer-logo img {
    max-width: 230px;
    margin-bottom: 30px;
}

.footer-section .copyright {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.footer-section .language-select .social-icons i {
    color: white;
    font-size: 30px;
}

.footer-section .social-icons a {
    display: inline-block;
    position: relative;
    width: 38px;
    height: 38px;
    text-align: left;
    line-height: 36px;
    margin-right: 5px;
    color: white;
    transition: all 0.3s;
}


.footer-section .social-icons a:hover i {
    color: #ED1F24;
    transition: color 700ms ease;
}

.footer-section .contact-info a {
    text-decoration: none;
    text-align: left;
}

.footer-section .contact-info a:hover {
    color: #ED1F24;
    transition: color 700ms ease;
}

.footer-section .contact-info i {
    margin-left: -2px;
    font-size: 19px;
}

.footer-section .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section .footer-links li {
    margin-bottom: 15px;
}

.footer-section .footer-links li a {
    position: relative;
    display: inline-block;

    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer-section .footer-links-1 .footer-links li a {

    color: white;
    font-size: 25px;
    font-weight: 600;
}

.footer-section .contact-info a,
.footer-section .footer-links li a,
.footer-section .address {
    font-weight: 500;
    color: white;
    font-size: 16px;
}

.footer-section .footer-links-1 .footer-links li a.active {
    color: #ED1F24;
}

.footer-section .footer-block.last {
    margin-left: 40px;
}

.footer-section .footer-links li a:hover {
    color: #ED1F24;
    padding-left: 10px;
}

.footer-section .address {
    width: 300px;
}

.footer-section .footer-bottom {

    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.footer-section .footer-bottom a {
    text-decoration: none;
    color: #ED1F24;
}

@media screen and (max-width:769px) {
    .footer-section {
        padding: 75px 0 30px;
    }

    .footer-section .footer-logo {
        margin-bottom: 0px;
    }

    .footer-section .footer-top::before {
        content: none;
        background-image: none;
    }

    .footer-section .footer-top {
        padding: 0px 0px;
    }

    .footer-section .social-icons {
        margin-bottom: 20px;
    }

    .footer-section .contact-info {
        margin-bottom: 30px;
    }

    .footer-section .contact-info .email {
        display: block;
        margin-top: 10px;
        text-align: left;
    }

    .footer-section .contact-info span {
        display: none;
    }

    .footer-section .footer-block.last {
        margin-left: 0px;
    }

    .footer-section h4 {
        margin-top: 10px;
    }

    .footer-section .language-select .social-icons {
        display: block;

        margin-bottom: 0;
    }

    .footer-section .footer-links-1 .footer-links li a {
        font-size: 20px;
    }

    .footer-section .footer-links-2 .footer-links li a {
        font-size: 15px;
    }

    .footer-section .footer-bottom {
        display: block;
        text-align: center;
    }
}


/* **************************** */
/* ******* Hero section ******* */
/* **************************** */

.hero-banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
    z-index: 0;
    padding-bottom: 20px;
}

.hero-banner .hero-invert-fix {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-banner .hero-banner-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    padding-top: 35vh;
}

.hero-banner .hero-banner-content h1 {
    font-size: 86px;
    font-weight: 100;
    color: #fff;
    line-height: 1.1;
}

.hero-banner .hero-banner-content h1 span {
    font-weight: 700;
}

.hero-banner .hero-banner-content p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 65%;
    margin: 30px 0;
}


.hero-banner .hero-btn-primary,
.branding-hero-section .hero-btn-primary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    background-color: #ED1F24;
    color: rgb(0, 0, 0);
    border-radius: 70px;
    padding: 0 15px 0 50px;
    height: 70px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-banner .hero-btn-primary:hover,
.branding-hero-section .hero-btn-primary:hover {
    color: #000;
    padding: 17px 17px 17px 52px;
    transition: padding .4s ease;
}

.hero-banner .hero-btn-primary i,
.branding-hero-section .hero-btn-primary i {
    transition: transform 0.3s ease;
    margin-left: 10px;
    background-color: black;
    color: #ED1F24;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    transition: padding .4s ease;
    transition: all 0.3s ease-in;

}

.hero-banner .hero-btn-primary:hover i,
.branding-hero-section .hero-btn-primary:hover i {
    padding: 12px;
    transition: padding .4s ease;
}


.hero-banner .hero-btn-secondary {
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    position: relative;
    text-transform: uppercase;
}

.hero-banner .hero-btn-secondary:hover {
    color: #fff;
}

.hero-banner .hero-btn-secondary i {
    transition: transform 0.3s ease;
    margin-left: 10px;
    background-color: #272626ff;
    color: white;
    padding: 10px 11px;
    border-radius: 50%;
    font-size: 18px;
    transition: padding .4s ease;
}

.hero-banner .hero-btn-secondary:hover i {
    padding: 12px 13px;
    transition: padding .4s ease;
}

/* =============================== */
/* Hero Background Image with Blur */
/* =============================== */

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/hero-bg-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    transform: scale(1.15);
    z-index: 0;
    animation: bgMoveFlicker 5s ease-in-out infinite;
}

@keyframes bgMoveFlicker {
    0% {
        transform: scale(1.15) translate(0, 0);
        opacity: 1;
        filter: blur(1px) brightness(1);
    }

    40% {
        transform: scale(1.18) translate(-35px, -13px);
        opacity: 0.96;
        filter: blur(1px) brightness(1.05);
    }

    70% {
        transform: scale(1.16) translate(13px, 11px);
        opacity: 0.93;
        filter: blur(1px) brightness(0.95);
    }

    100% {
        transform: scale(1.15) translate(0, 0);
        opacity: 1;
        filter: blur(1px) brightness(1);
    }
}

.hero-banner::before {
    z-index: -2;
}

.hero-banner {
    z-index: 1;
}


@media (max-width: 992px) {
    .hero-banner .hero-banner-content h1 {
        font-size: 64px;
    }

    .hero-banner .hero-banner-content p {
        max-width: 80%;
    }

    .hero-banner::before {
        left: -800px;
        overflow: hidden;
    }

}

@media (max-width: 768px) {
    .hero-banner .hero-banner-content {
        text-align: left;
        margin: 20px;
        padding: 0;
        padding-top: 20vh;
    }

    .hero-banner .hero-banner-content h1 {
        font-size: 48px;
    }

    .hero-banner .hero-banner-content p {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-banner .hero-btn-primary {
        font-size: 12px;
        padding: 0px 15px 0px 30px !important;
        height: 60px;
    }

    .hero-banner .hero-btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        padding-left: 10px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .branding-hero-section .hero-btn-primary.desk {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-banner .hero-banner-content h1 {
        font-size: 36px;
    }
}

/* **************************** */
/* ***** Service section ****** */
/* **************************** */

.services-section {
    padding: 100px 100px 100px;
    overflow: hidden;
}

.services-section .shape-bg {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0px;
}

.services-section .shape-1 {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-section .service-card {
    background: black;
    padding: 30px 15px;
    border-radius: 15px;
    box-shadow: 0px 15px 35px 0px rgba(194, 194, 194, 0.1);
    transition: all 500ms ease;
    margin: 0px 10px;
}

.services-section .service-card:nth-child(even) {
    margin-top: 50px;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    background: black;
}

.services-section .icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 5px auto 25px;
    border: 1px dashed white;
}

.services-section .icon-circle i {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    background: #ED1F24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section .service-card:hover {
    background-color: black;
    transition: all 500ms ease;
}

.services-section .service-card:hover .icon-circle i {
    background: white;
    color: black;
    transition: all 500ms ease;
}

.services-section .service-card h4,
.services-section .service-card p {
    color: white !important;
}

.services-section .service-card:hover h4,
.services-section .service-card:hover p {
    color: #ffffff !important;
    transition: all 500ms ease;
}

.services-section .service-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

.services-section .service-card p {
    font-size: 14px;
    font-weight: 600;
    padding: 0px 5px;
    color: #868894;
    margin: 0;
    text-align: center;
}

.services-section .services-content {
    padding-right: 50px;
}

.services-section .services-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 100px;
    color: white;
    letter-spacing: 1px;
}

.services-section .services-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.services-section .custom-btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background: black;
    color: white;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    font-weight: 700;
    border: 1px dashed white;
}

.services-section .custom-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: white;
    z-index: -1;
    transition: height 0.4s ease;
}

.services-section .custom-btn:hover::before {
    height: 100%;
}

.services-section .custom-btn:hover {
    color: black;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    border: none;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 100px 0;
        margin-bottom: 0;
    }

    .services-section .shape-1 {
        margin-top: 0px;
        height: 100%;
    }

    .services-section .shape-bg {
        top: 0px;
    }

    .services-section .services-content {
        padding-right: 0;
        text-align: left;
        margin-top: 50px;
    }

    .services-section .service-card {
        margin-bottom: 20px;
    }

    .services-section .services-content h2 {
        font-size: 32px;
    }
}

@media screen and (min-width:1200px) and (max-width:1470px) {
    .services-section .shape-bg {
        top: -35px;
    }
}

/* **************************** */
/* ******* Home Section 2 ***** */
/* **************************** */

.why-choose-section {
    padding: 0px;
    padding-top: 50px;
    padding-bottom: 70px;
    overflow: hidden;
    background-color: white;
}

.why-choose-section .shape-bg {
    position: absolute;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    /* z-index: -1; */
}

.why-choose-section .shape-2 {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-out;
    opacity: 0.8;
}

.why-choose-section .choose-content {
    width: 90%;
}

.why-choose-section .section-heading {
    font-size: 40px;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
    padding-left: 10px;
}

.why-choose-section .section-text {
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
    padding-left: 10px;
}

.why-choose-section .feature-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-section .feature-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
    transition: all .5s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-section .feature-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.281);
    transition: all .5s ease;
}

.why-choose-section .icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #ED1F24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.why-choose-section .icon-circle i {
    font-size: 1.5rem;
    color: white;
}

.why-choose-section .card-content {
    flex: 1;
}

.why-choose-section .card-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;

}

.why-choose-section .feature-card:hover .card-content h4 {
    color: black;
}

.why-choose-section .card-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    transition: color 500ms ease;
    color: black;
}

.why-choose-section .feature-card:hover .card-content p {
    color: #868894;
    transition: color 500ms ease;
}

@media (max-width: 991.98px) {

    .why-choose-section .illustration-wrapper {
        margin-bottom: 3rem;
    }

    .why-choose-section .shape-bg {
        display: none;
    }

    .why-choose-section .choose-content {
        width: 100%;
    }

    .why-choose-section .section-heading {
        font-size: 30px;
    }

    .why-choose-section .feature-card {
        padding: 1rem;
    }

    .why-choose-section .icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}

/* **************************** */
/* ********* Page Hero ******** */
/* **************************** */

.page-hero {
    background: black;
    padding: 0px 0;
    position: relative;
    overflow: hidden;
    height: 270px;
}

.page-hero .container {
    padding: 0px 35px;
    position: relative;
    z-index: 2;
}

.page-hero .hero-content {
    height: 100%;
    margin: 15% auto 0;
}

.page-hero .hero-title,
.page-hero .breadcrumb-wrapper {
    position: relative;
    z-index: 2;
}

.page-hero .hero-shape {
    position: absolute;
    top: -25%;
    right: -1%;
    width: 465px;
    height: 458px !important;
    z-index: 1;
    border-radius: 50%;
}

.page-hero .hero-shape img {
    height: 100%;
}

.page-hero .hero-title {
    font-size: 40px;
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-hero .breadcrumb-wrapper {
    position: relative;
    display: inline-block;
}

.page-hero .breadcrumb-item a {
    font-weight: 400;
    color: #b2b3ba;
    text-decoration: none;
    transition: color 500ms ease;
}

.page-hero .breadcrumb-item a:hover {
    color: #ED1F24;
    transition: color 500ms ease;
}

.page-hero .breadcrumb-item.active {
    color: #ED1F24;
}

.page-hero .breadcrumb-wrapper::after {
    content: '';
    position: absolute;
    top: 18px;
    right: -70px;
    width: 27%;
    height: 1px;
    background: #ED1F24;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #ED1F24;
    padding: 0 12px 0 2px;
}

@media (max-width: 991.98px) {
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-hero {
        height: 320px;
        padding: 100px 0 0;
    }

    .page-hero .container {
        padding: 0 20px;
    }

    .page-hero .hero-title {
        font-size: 30px;
        margin: 1rem 0;
    }

    .page-hero .hero-shape {
        position: absolute;
        top: 80px;
        right: 0px;
        width: 190px;
        height: 120px;
        border-radius: 50%;
        z-index: 1;
    }

    .page-hero .hero-shape img {
        height: 45%;
    }

    .page-hero .breadcrumb-wrapper::after {
        content: none;
        display: none;
    }

    .page-hero .breadcrumb-item {
        display: block;
        width: 100%;
        text-align: left;
        margin: 10px 0px;
    }

    .page-hero .breadcrumb-item+.breadcrumb-item {
        padding-left: 0;
        margin-top: 0;
    }

    .page-hero .breadcrumb-item+.breadcrumb-wrapper::after {
        display: none;
    }
}

@media screen and (min-width:1200px) and (max-width:1400px) {
    .page-hero {
        height: 300px;
    }

    .page-hero .hero-shape {
        position: absolute;
        top: -26%;
        right: 0%;
        width: 390px;
        height: 400px !important;
        z-index: 1;
        border-radius: 50%;
    }

    .page-hero .hero-shape img {
        height: 100%;
    }

}

@media screen and (min-width:1400px) {
    .page-hero {
        height: 350px;
    }
}

/* @media screen and (min-width:991.98px) and (max-width:1530px) {
.page-hero .container {
    padding: 0px 100px;
}

} */

/* **************************** */
/* ********* Blog Page ******** */
/* **************************** */

.blog-page {
    padding: 0px 130px;
    background-color: black;
}

.blog-page .blogs-content-left {
    padding: 80px 0;
}

.blog-page .blog-card {
    background: black;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(128, 128, 128, 0.427);
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.blog-page .blog-card:hover {
    box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.15);
}

.blog-page .blog-thumbnail img {
    width: 100%;
    border-radius: 5px 5px 0 0;
    object-fit: cover;
}

.blog-page .blog-content {
    padding: 25px;
}

.blog-page .blog-category a {
    text-decoration: none;
    color: white !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    transition: color 0.5s ease;
}

.blog-page .blog-title a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.5s ease;
}

.blog-page .blog-category a:hover {
    color: #252063;
    transition: color 0.5s ease;
}

.blog-page .blog-title a:hover {
    color: #ED1F24;
    transition: color 0.5s ease;
}

.blog-page .blog-description+p {
    font-size: 16px;
    line-height: 32px;
    color: #b3b4b8;
    letter-spacing: 1px;
    margin-bottom: 25px;
    overflow: hidden;
}

.blog-page .blog-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #6c6b6b;
}

.blog-page .date-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ED1F24;
    letter-spacing: 1px;
}

.blog-page .date-item i {
    font-size: 16px;
}

.blog-page .date {
    font-size: 16px;
    font-weight: 500;
}

.blog-page .pagination-wrapper {
    padding: 30px 0;
}

.blog-page .pagination {
    gap: 15px;
}

.blog-page .page-item .page-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    background-color: #ED1F24;
    font-weight: 700;
    border: none;
    box-shadow: rgba(255, 255, 255, 0.15) 0px 8px 14.4px 1.6px;
    transition: all 0.3s ease;
}

.blog-page .page-item.prev-item .page-link,
.blog-page .page-item.next-item .page-link {
    border-radius: 30px;
    width: 45px;
    background: #ED1F24;
    padding: 10px 40px;
}

.blog-page .page-item.active .page-link {
    background-color: white;
    color: #ED1F24;
}

.blog-page .page-item .page-link:hover {
    background-color: white;
    color: #ED1F24;
}

.blog-page .page-item.prev-item .page-link:hover,
.blog-page .page-item.next-item .page-link:hover {
    background-color: white;
    color: #ED1F24;
}

@media (max-width: 768px) {
    .blog-page .blogs-content-left {
        padding: 40px 0;
    }

    .blog-page .blog-content {
        padding: 20px;
    }

    .blog-page .blog-title {
        font-size: 20px;
    }

    .blog-page {
        padding: 0px 0px;
    }

    .blog-page .page-item.prev-item,
    .blog-page .page-item.next-item {
        display: none;
    }

    .blog-page .pagination {
        gap: 5px;
    }

    .blog-page .page-item .page-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* **************************** */
/* ***** Blog Single Page ***** */
/* **************************** */
.blog-single-page {
    padding: 0px 140px;
    background-color: black;
}

.blog-single-page .blog-left {
    padding: 80px 0px 80px 0px;
}

.blog-single-page .blog-featured-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.blog-single-page .blog-meta .me-2 {
    color: #ED1F24;
}

.blog-single-page .blog-meta a {
    text-decoration: none;
    color: #ED1F24 !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 500ms ease;
}

.blog-single-page .blog-meta a:hover {
    color: #252063;
    transition: color 500ms ease;
}

.blog-single-page .blog-meta i {
    color: #888888;
}

.blog-single-page .blog-title {
    font-size: 30px;
    font-weight: 700;
    color: white;
}

.blog-single-page .blog-content {
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 1px;
    color: white;
    text-align: justify;
}

.blog-single-page .blog-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .blog-single-page {
        padding: 0px 15px;
    }

    .blog-single-page .blog-left {
        padding: 20px 0px;
    }

    .blog-single-page .blog-title {
        font-size: 2rem;
    }

    .blog-single-page .blog-content {
        font-size: 1rem;
    }

    .blog-single-page .blog-meta span {
        margin-bottom: 0.5rem;
    }

    .blog-single-page .blog-content h3 {
        text-align: left;
    }
}

/* **************************** */
/* ***** Contact Us Page ****** */
/* **************************** */

.contact-page {
    padding: 0px 130px;
    background-color: black;
}

.contact-page .contact-form-section {
    padding-top: 80px;
}

.contact-page .section-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.contact-page .custom-input {
    padding: 12px;
    border: 1px solid#ED1F24;
    font-size: 16px;
    font-weight: 500;
    color: black;
    background-color: rgba(255, 255, 255, 0.68);
    height: 55px;
    padding-left: 30px;
    margin-bottom: 35px;
    border-radius: 90px;
    box-shadow: 0px 13px 25px 0px rgba(206, 54, 54, 0.2);
}

.contact-page .custom-input.text-area {
    height: 230px;
    padding: 15px 30px;
    border-radius: 25px;
}

.contact-page .custom-input:hover,
.contact-page .custom-input:focus {
    border-color: white;
    outline: none;
    box-shadow: 0 3px 8px rgba(255, 255, 255, 0.1);
}

.contact-page .custom-btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background: #ED1F24;
    color: black;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    font-weight: 700;
    border: none;
}

.contact-page .custom-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #ED1F24;
    z-index: -1;
    transition: height 0.4s ease;
}

.contact-page .custom-btn:hover::before {
    height: 100%;
}

.contact-page .custom-btn:hover {
    color: #fff;
}

.contact-page .error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.contact-page .invalid-input {
    border: 1px solid #dc3545 !important;
}

.contact-page .custom-input:focus {
    box-shadow: none !important;
}

.contact-page .get-in-touch {
    padding: 80px 0px;
}

.contact-page .contact-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ED1F24;
}

.contact-page .contact-info {
    margin-bottom: 30px;
}

.contact-page .contact-info p {
    margin-bottom: 0;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.contact-page .social-icons {
    margin-top: 40px;
}

.contact-page .social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.5s ease;
    position: relative;
}

.contact-page .social-icons a:hover {
    color: #ED1F24;
    transition: color 0.5s ease;
}

.contact-page .social-icons a::before {
    content: "";
    background: #ED1F24;
    height: 5px;
    width: 5px;
    position: absolute;
    border-radius: 90px;
    top: 10px;
    left: -20px;
    line-height: 26px;
    vertical-align: middle;
}

.contact-page .social-icons a:first-child::before {
    content: none;
}

.contact-page .map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-page .contact-form {
        padding: 0px !important;
    }

    .contact-page .contact-form-section {
        padding-top: 40px;
    }

    .contact-page .section-title {
        font-size: 30px;
    }

    .contact-page .map-container {
        margin-top: 30px;
    }

    .contact-page {
        padding: 0px;
    }
}


/* **************************** */
/* *** Portfolio List Page **** */
/* **************************** */

.portfolio-grid {
    padding: 80px 0;
    background-color: black;
}

.portfolio-grid .portfolio-card {
    background: transparent;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ed1a2568;
}

.portfolio-grid .card-content {
    padding: 32px;
    border-bottom: 1px solid #ed1a4164;
}

.portfolio-grid .project-title {
    margin-bottom: 20px;
}

.portfolio-grid .project-title a {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio-grid .view-details a {
    color: #ED1A24;
    font-size: 18px;
    display: block;
    transition: color 0.3s ease;
    text-decoration: none;
}

.portfolio-grid .view-details i {
    font-size: 18px;
    transition: padding-left 0.3s ease;
}

.portfolio-grid .view-details:hover i {
    padding-left: 10px;
    transition: padding-left 0.3s ease;
}

.portfolio-grid .portfolio-card .project-title a:hover {
    color: #ED1A24;
    transition: color 0.3s ease;
}

.portfolio-grid .portfolio-card .view-details a:hover {
    color: #ffffff;
    transition: color 0.3s ease;
}

.portfolio-grid .project-image {
    border-radius: 30px;
    overflow: hidden;
    margin-top: 15px;
    height: 300px;
    margin: 32px;
    background-color: white;
}

.portfolio-grid .project-image img {
    width: 100% !important;
    height: 300px;
    display: block;
    transition: transform 0.3s ease;
    /* object-fit: cover; */

}

.portfolio-grid .portfolio-card:hover .project-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .portfolio-grid {
        padding: 40px 0;
    }

    .portfolio-grid .project-title {
        font-size: 1.25rem;
    }

    .portfolio-grid .project-image {
        height: 200px;
    }
}

/* **************************** */
/* ** Portfolio Single Page *** */
/* **************************** */

.portfolio-single-page {
    padding: 0px 130px;
    background-color: black;
}

.portfolio-single-page .portfolio-content {
    padding: 80px 10px 40px 10px;
}

.portfolio-single-page .portfolio-featured-image img {
    width: 100%;
    height: 300px;
    /** object-fit: cover; **/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background:#fff;
}

.portfolio-single-page .portfolio-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
}

.portfolio-single-page .portfolio-description {
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
    color: white;
    text-align: left;
}

.portfolio-single-page .portfolio-description p {
    margin-bottom: 1.5rem;
}

.portfolio-single-page .portfolio-description li::marker {
    color: #ED1F24;
}

.portfolio-single-page .portfolio-extra-images {
    padding: 50px 0;
}

.portfolio-single-page .portfolio-extra-images .image-container {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-single-page .portfolio-extra-images .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-single-page .portfolio-extra-images .zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-single-page .portfolio-extra-images .zoom-icon {
    color: white;
    background-color: black;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: color .5s ease;
}

.portfolio-single-page .portfolio-extra-images .zoom-icon:hover {
    background-color: #ED1F24;
    color: black;
    transition: all .5s ease;
}

.portfolio-single-page .portfolio-extra-images .image-container:hover .zoom-overlay {
    opacity: 1;
}

.portfolio-single-page .portfolio-extra-images .image-container:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.portfolio-single-page .lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999 !important;
    justify-content: center;
    align-items: center;
}

.portfolio-single-page .lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.portfolio-single-page .close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.portfolio-single-page .project-details {
    background: transparent;
    border-bottom: 1px solid #ffffff2b;
    margin-bottom: 30px;
}

.portfolio-single-page .project-details .container {
    padding: 0;
}

.portfolio-single-page .project-details .detail-item {
    padding: 1rem 0;
}

.portfolio-single-page .project-details .detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.portfolio-single-page .project-details .detail-icon i {
    font-size: 1.5rem;
    color: #ED1F24;
}

.portfolio-single-page .project-details .detail-label {
    display: block;
    color: #ED1F24;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.portfolio-single-page .project-details .detail-value {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .portfolio-single-page {
        padding: 0px 10px;
    }

    .portfolio-single-page .portfolio-featured-image img {
        height: 200px;
    }

    .portfolio-single-page .portfolio-content {
        padding: 20px 0px;
    }

    .portfolio-single-page .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-single-page .portfolio-descriptiom {
        font-size: 1rem;
    }

    .portfolio-single-page .portfolio-extra-images {
        padding: 30px 15px;
    }

    .portfolio-single-page .portfolio-extra-images .image-container {
        aspect-ratio: 1/1;
    }

    .portfolio-single-page .portfolio-extra-images .zoom-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
    }

    .portfolio-single-page .lightbox-image {
        max-width: 95%;
    }

    .portfolio-single-page .close-lightbox {
        top: 10px;
        right: 15px;
    }

    .portfolio-single-page .project-details .detail-item {
        padding: 0.75rem 1rem;
    }

    .portfolio-single-page .project-details .col-md-6:first-child {
        margin-bottom: 0.5rem;
    }

}


/* **************************** */
/* ****** About Us Page ******* */
/* **************************** */

.about-content {
    padding: 60px 130px;
    background-color: black;
}

.about-content .about-text h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
}

.about-content .about-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-content .section-title {
        font-size: 30px;
    }

    .about-content .about-text p {
        font-size: 1rem;
    }

    .about-content .about-list li {
        font-size: 1rem;
    }

    .about-content {
        padding: 40px 0;
    }
}

/* **************************** */
/* *** Services Single Page *** */
/* **************************** */
.service-single-page {
    padding: 0px 140px;
    background-color: transparent;
}

.service-single-page .service-left {
    padding: 80px 0px 80px 0px;
}

.service-single-page .service-featured-image img {
    width: 100%;
    height: 350px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-single-page .service-title {
    font-size: 40px;
    font-weight: 700;
    color: black;
}

.service-single-page .service-content {
    font-size: 17px;
    text-align: justify;
    color: black;
}

.service-single-page .service-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .service-single-page {
        padding: 0px 15px;
    }

    .service-single-page .service-left {
        padding: 20px 0px;
    }

    .service-single-page .service-title {
        font-size: 30px;
    }

    .service-single-page .service-content {
        font-size: 1rem;
    }

    .service-single-page .service-meta span {
        margin-bottom: 0.5rem;
    }
}

/* ============================= */
/* ðŸ”¹ PRODUCT VARIANT */
/* ============================= */

.variant-section {
    background: transparent;
    border-radius: 1rem;
    padding: 5px 10px;
    border: 1px solid#ED1F24;
    box-shadow: 0px 13px 25px 0px rgba(206, 54, 54, 0.2);
}

.variant-section h5 {
    color: white;
}

.variant-card {
    transition: all 0.3s ease;
}

.variant-card:hover {
    transform: translateY(-2px);
}

.variant-pill {
    background: #ED1F24 !important;
    color: #fff !important;
    border: 1px solid#ED1F24;
    font-weight: 500;
    transition: all 0.25s;
    cursor: pointer;
}

.variant-pill a {
    text-decoration: none !important;
    color: #fff !important;
}

.variant-pill:hover {
    background: #000 !important;
    border-color: #ED1F24 !important;
    box-shadow: 0px 13px 25px 0px rgba(206, 54, 54, 0.2);
}

@media(max-width:768px) {
    .variant-section {
        padding: 5px !important;
    }
}


.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #ED1F24;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* **************************** */
/* ***** Home Blog Section **** */
/* **************************** */

.home-blog-section {
    padding: 50px 0px 20px 0px;
}

.home-blog-section .blog-card {
    background: black;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid gray;
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
    margin: 20px;
}

.home-blog-section .blog-card:hover {
    box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.15);
}

.home-blog-section .blog-thumbnail img {
    width: 100%;
    border-radius: 5px 5px 0 0;
    object-fit: cover;
    height: 250px;
}

.home-blog-section .blog-content {
    padding: 25px;
}

.home-blog-section .blog-category {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    transition: color 0.5s ease;
}

.home-blog-section .blog-title a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.5s ease;
}

.home-blog-section .blog-category a:hover {
    color: #252063;
}

.home-blog-section .blog-title a:hover {
    color: #ED1F24;
}

.home-blog-section .blog-description+p {
    font-size: 16px;
    line-height: 32px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 25px;
    overflow: hidden;
}

.home-blog-section .blog-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eeeeee79;
}

.home-blog-section .date-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ED1F24;
}

.home-blog-section .date-item i {
    font-size: 16px;
}

.home-blog-section .date {
    font-size: 16px;
    font-weight: 500;
}

.home-blog-section .blog-heading {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.home-blog-section .blog-text {
    font-weight: 500;
    color: #b3b4b8;
}

.home-blog-section .blog-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.home-blog-section .slider-container {
    overflow: hidden;
    width: 100%;
}

.home-blog-section .slide-track {
    display: flex;
    width: calc(33.33% * 9);
    will-change: transform;
}

.home-blog-section .blog-card {
    flex: 0 0 calc(100% / 10);
}


@media (max-width: 768px) {
    .home-blog-section {
        padding: 10px;
    }

    .home-blog-section .blog-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .home-blog-section .blog-text {
        font-size: 16px;
    }

    .home-blog-section .blog-slider {
        margin: 0;
        padding: 10px 0;
    }

    .home-blog-section .slide-track {
        width: calc(100%);
    }

    .home-blog-section .blog-card {
        flex: 0 0 100%;
        margin: 0;
    }

    .home-blog-section .blog-thumbnail img {
        height: 240px !important;
        object-fit: cover;
        width: 100%;
    }

    .home-blog-section .blog-title a {
        font-size: 20px;
    }

    .home-blog-section .blog-description {
        font-size: 14px;
        line-height: 24px;
    }

    .home-blog-section .blog-content {
        padding: 20px;
    }
}

/* **************************** */
/* ****** Splash Screen ******* */
/* **************************** */

.splash-screen {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-screen .word-container {
    display: flex;
    gap: 15px;
    align-items: center;      /* vertical alignment fix */
    justify-content: center;  /* horizontal centering */
}

.splash-screen .splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.splash-screen .word {
    font-size: 3rem;
    font-weight: 200;
    color:#fff !important;
}

.splash-screen .word.creative {
    font-weight: 600;
}

.splash-screen .vanish-now {
    animation: vanishWords 0.15s ease-out forwards;
}




@keyframes vanishWords {
    to {
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
    }
}

.splash-screen .rectangle {
    height: 50px;
    width: 600px;
    background: #ED1F24;
    margin: -50px 0 0;

    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
}

.splash-screen .rect-in {
    animation: rectIn 0.6s ease-out forwards;
}

.splash-screen .rect-out {
    transform-origin: right;
    animation: rectOut 0.4s ease-in forwards;
}

@keyframes rectIn {
    from {
        transform: scaleX(0);
        opacity: 1;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes rectOut {
    from {
        transform: scaleX(1);
        opacity: 1;
    }

    to {
        transform: scaleX(0);
        opacity: 0;
    }
}

.splash-screen .company-in {
    animation: companyIn 0.3s ease-out forwards;
}

@keyframes companyIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.splash-screen .vanish-company {
    animation: vanishCompany 0.5s ease-out forwards;
}

@keyframes vanishCompany {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .splash-screen {
        margin-top: 70px;
    }

    .splash-screen .word-container {
        flex-direction: column;
        gap: 10px;
        margin-top: -80px;
    }

    .splash-screen .word {
        font-size: 30px;
    }

    .splash-screen .rectangle {
        width: 300px;
        height: 50px;
        margin: -100px auto 0;
    }

}

.splash-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: -95%;
    width: 50%;
    height: 100%;

    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);

    transform: skewX(-25deg);
}

.splash-screen::before {
    animation: flashMove 2s ease-in-out infinite;
    animation-delay: 1.3s;
}

/* ============================= */
/* Page Splash Screen */
/* ============================= */

.page-splash-screen {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
}

.page-splash-screen .splash-wrapper {
    width: 200px;
    height: 200px;
}

.page-splash-screen .brain-float {
    width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation:
        brainZoomIn 1s ease-out forwards,
        brainFloat 3.3s ease-in-out infinite;

    animation-delay:
        0s,
        0.9s;
}

@keyframes brainZoomIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes brainFloat {
    0% {
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) scale(1) translateY(-18px);
    }

    100% {
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }
}

.page-splash-screen .brain-vanish {
    width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: brainVanish 0.6s ease-in forwards;
}

@keyframes brainVanish {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

.page-splash-screen .star {
    position: absolute;
    opacity: 0;
    animation: sparkle 2.5s ease-in-out infinite;
}

.page-splash-screen .star-1 {
    top: 10%;
    left: 50%;
    width: 20px;
    animation-delay: 0s;
}

.page-splash-screen .star-2 {
    top: 35%;
    left: 90%;
    width: 34px;
    animation-delay: 0.4s;
}

.page-splash-screen .star-3 {
    top: 75%;
    left: 65%;
    width: 48px;
    animation-delay: 0.8s;
}

.page-splash-screen .star-4 {
    top: 70%;
    left: 20%;
    width: 22px;
    animation-delay: 1.2s;
}

.page-splash-screen .star-5 {
    top: 30%;
    left: 7%;
    width: 46px;
    animation-delay: 1.6s;
}

.page-splash-screen .star-vanish {
    animation: starVanish 0.2s ease-in forwards !important;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0.4) rotate(0deg);
    }

    40% {
        opacity: 1;
        transform: scale(1) rotate(20deg);
    }

    70% {
        opacity: 0.8;
        transform: scale(0.8) rotate(-20deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.4) rotate(0deg);
    }
}

@keyframes starVanish {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0);
        opacity: 0;
    }
}

@media (max-width: 768px) {

    .page-splash-screen .splash-wrapper {
        width: 200px;
        height: 200px;
    }

    .page-splash-screen .brain-float,
    .page-splash-screen .brain-vanish {
        width: 90px;
    }

    .page-splash-screen .star {
        width: 10px;
    }
}

/* **************************** */
/* ******** FAQ Section ******* */
/* **************************** */
.faq-section {
    padding: 0 130px;
    background-color: black;
}

.faq-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.faq-section .accordion-item {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.faq-section .accordion-item:not(:first-of-type) {
    border-top: 2px solid;
}

.faq-section .accordion-button {
    background-color: transparent;
    color: #fff;
    padding: 1.25rem;
    font-weight: 500;
    border-radius: 8px !important;
    justify-content: space-between;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #ED1F24;
    box-shadow: none;
    border-bottom: 2px dashed #ed1f2936;
}

.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 2px dashed #ed1f298e;
}


.faq-section .accordion-button::after {
    display: none;
}

.faq-section .accordion-button .fas {
    color: #ED1F24;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) .fas {
    transform: rotate(45deg);
    color: white;
}

.faq-section .accordion-body {
    color: #fff;
    padding: 1.25rem;
    line-height: 1.6;
}

.faq-section .brand-elements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-section .brand-elements-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.faq-section .brand-elements-list li i {
    color: #ED1F24;
    margin-right: 10px;
    margin-top: 8px;
    font-size: 10px;
}

.faq-section .accordion-button:hover {
    background-color: rgba(237, 31, 42, 0.1);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(237, 31, 42, 0.5);
}

@media (max-width: 991.98px) {
    .faq-section {
        padding: 0;
    }

    .faq-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .faq-section .accordion-button {
        font-size: 0.9rem;
        padding: 1rem;
        padding-right: 0;
    }

    .faq-section .accordion-body {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

/* **************************** */
/* ** Branding Hero Section *** */
/* **************************** */

.branding-hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10rem 150px 4rem;
    color: white;
    background-color: black;
}

.branding-hero-section .hero-content h1 {
    font-weight: 500;
}

.branding-hero-section .lead {
    text-align: justify;
}

.branding-hero-section .cta-btn {
    background: #ED1F24;
    color: #FFFFFF;
    border: 1px solid black;
    padding: .8rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.branding-hero-section .cta-btn:hover {
    background: black;
    border-color: #ED1F24;
    color: #ED1F24;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .branding-hero-section {
        padding: 0;
    }

    .branding-hero-section .hero-content {
        text-align: left;
    }

    .branding-hero-section .cta-btn {
        width: 50%;
    }

    .branding-hero-section .lead {
        text-align: start;
    }

    .branding-hero-section .cta-btn.desk {
        display: none;
    }
}

/* **************************** */
/* ****** Branding  Page ****** */
/* **************************** */
.branding-portfolio-section .accent-text {
    color: #ED1F24;
}

.branding-portfolio-section {
    padding: 0 100px 60px;
    color: white;
    background-color: black;
}

.branding-portfolio-section h2 {
    font-size: 40px;
    font-weight: 700;
}

.branding-portfolio-section .portfolio-card {
    background: #111111;
    border-radius: 10px;
    padding: 0rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
}

.branding-portfolio-section .portfolio-card:hover {
    transform: scale(1.02);
    border-color: #ED1F24;
    box-shadow: 0 0 20px rgba(237, 31, 42, 0.2);
}

.branding-portfolio-section .placeholder-img {
    background: linear-gradient(45deg, #111111, #222222);
    height: 600px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.branding-portfolio-section .placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px 8px 0 0;

}

.branding-portfolio-section .portfolio-content {
    padding: 0 1.5rem;
}

.branding-portfolio-section .portfolio-content p {
    line-height: 26px;
}

.branding-portfolio-section .tag {
    color: #ED1F24;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    padding: 0.25rem 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
    display: inline-block;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .branding-portfolio-section .placeholder-img {
        height: 300px;
    }

    .branding-portfolio-section {
        padding: 0;
    }


    .branding-portfolio-section h2 {
        font-size: 32px;
    }

}

/* **************************** */
/* ***** Credibility Page ***** */
/* **************************** */
.branding-credibility-section .accent-text {
    color: #ED1F24;
}

.branding-credibility-section {
    padding: 0 100px 60px;
    columns: white;
    background-color: black;
}

.branding-credibility-section h2 {
    font-size: 40px;
    font-weight: 700;
}

.branding-credibility-section .brand-card {
    background: #111111;
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
    color: white;
}

.branding-credibility-section .brand-card:hover {
    transform: scale(1.02);
    border-color: #ED1F24;
    box-shadow: 0 0 20px rgba(237, 31, 42, 0.2);
}

.branding-credibility-section .placeholder-img {
    background: linear-gradient(45deg, #111111, #222222);
    height: 200px;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.branding-credibility-section .placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 16px;

}

.branding-credibility-section .brand-content h3 {
    color: #ED1F24;
}

.branding-credibility-section .brand-content p {
    line-height: 26px;
}

.branding-credibility-section .fancy-text-wrapper {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
}

.branding-credibility-section .fancy-prefix {
    color: #ffffff;
}

.branding-credibility-section #fancy-text {
    color: #ED1F24;
}

.branding-credibility-section .cursor {
    color: #ED1F24;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .branding-credibility-section .fancy-text-wrapper {
        font-size: 21px;
    }

    .branding-credibility-section .placeholder-img {
        height: 200px;
    }

    .branding-credibility-section {
        padding: 0;
    }

    .branding-credibility-section h2 {
        font-size: 32px;
    }

}

/* **************************** */
/* **** Services List Page **** */
/* **************************** */
.services-list-section {
    background-color: #000;
    padding: 0px 100px;
    padding-bottom: 100px !important;
    color: #fff;
    font-family: sans-serif;
}

.services-list-section .vertical-text-col {
    position: relative;
}

.services-list-section .vertical-text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: 0 0;
    white-space: nowrap;
    color: #ED1F24;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.1;
}

.services-list-section .services-grid {
    padding-left: 40px;
}

.services-list-section .service-item {
    border-bottom: 1px solid #ED1F24;
    padding: 35px 0 15px;
}

.services-list-section .service-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.services-list-section .service-number {
    color: #ED1F24;
    font-weight: 700;
    margin-right: 20px;
    min-width: 30px;
    font-size: 38px
}

.services-list-section .service-name {
    flex-grow: 1;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.services-list-section .service-arrow {
    margin-left: 20px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.services-list-section .service-link:hover {
    color: #ED1F24;
}

.service-link:hover .service-name {
    transform: translateX(10px);
}

.services-list-section .service-link:hover .service-arrow {
    transform: translateX(10px);
}

.services-list-section .row {
    min-height: 300px;
}

.services-page .pagination-wrapper {
    padding: 30px 0;
}

.services-page .pagination {
    gap: 15px;
}

.services-page .page-item .page-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    background-color: #ED1F24;
    font-weight: 700;
    border: none;
    box-shadow: rgba(255, 255, 255, 0.15) 0px 8px 14.4px 1.6px;
    transition: all 0.3s ease;
}

.services-page .page-item.prev-item .page-link,
.services-page .page-item.next-item .page-link {
    border-radius: 30px;
    width: 45px;
    background: #ED1F24;
    padding: 10px 40px;
}

.services-page .page-item.active .page-link {
    background-color: white;
    color: #ED1F24;
}

.services-page .page-item .page-link:hover {
    background-color: white;
    color: #ED1F24;
}

.services-page .page-item.prev-item .page-link:hover,
.services-page .page-item.next-item .page-link:hover {
    background-color: white;
    color: #ED1F24;
}


@media (max-width: 991px) {
    .services-list-section {
        padding: 40px 0px;
    }

    .services-list-section .vertical-text {
        position: relative;
        transform: none;
        padding: 20px 0;
        text-align: center;
        margin-bottom: 10px;
        top: 5%;
    }

    .services-list-section .services-grid {
        padding-left: 0px;
    }

    .services-list-section .service-item {
        padding: 20px 0;
    }

    .services-list-section .service-name,
    .services-list-section .service-arrow {
        font-size: 20px;
    }

    .services-list-section .service-number {
        font-size: 24px;
        text-align: center;
    }

    .services-page .page-item.prev-item,
    .services-page .page-item.next-item {
        display: none;
    }

    .services-page .pagination {
        gap: 10px;
    }

    .services-page .page-item .page-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

}

@media screen and (min-width:1400px) and (max-width:1499px) {
    .services-list-section {
        padding: 0px 70px;
    }
}

@media screen and (min-width:1500px) and (max-width:1599px) {
    .services-list-section {
        padding: 0px 150px;
    }
}

@media screen and (min-width:1600px) {
    .services-list-section {
        padding: 0px 200px;
    }

    .services-list-section .services-grid {
        padding-left: 0px;
    }
}

/* **************************** */
/* ***** Clients Section ****** */
/* **************************** */
@media (min-width: 1200px) {
    .clients-section .logo-box {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.clients-section {
    background-color: #fff;
    padding: 100px;
}

.clients-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: black;
}

.clients-section .client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px 0;
    background: #ffffff;
    border: 1px solid #bebebeff;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.clients-section .client-card .client-logo {
    max-height: 100%;
    max-width: 100%;
}

.clients-section .client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .clients-section {
        padding: 40px 0;
    }

    .clients-section .client-card {
        height: 100px;
        padding: 20px;
    }

    .clients-section .client-logo {
        font-size: 0.9rem;
    }

    .clients-section h2 {
        font-size: 32px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .clients-section .client-card {
        height: 110px;
    }
}


.watermark-bg {
    position: fixed;
    inset: 0;
    z-index: -1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.watermark-bg img {
    width: 600px;
    max-width: 70%;
    opacity: 0.1;
}

@media screen and (max-width:500px) {
    .watermark-bg img {
        width: 700px;
        max-width: 100%;
        opacity: 0.07;
    }
}