@font-face {
  font-family: 'Clash Grotesk';
  src: url('fonts/ClashGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Clash Grotesk';
  src: url('fonts/ClashGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Clash Grotesk';
  src: url('fonts/ClashGrotesk-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Clash Grotesk';
  src: url('fonts/ClashGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

body {
    background: #0A0A0C;
    color: white;
    font-family: 'Clash Grotesk';
}

/* ====== Header ====== */
.header{
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px;
    background: #0A0A0C;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header header {
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-weight: 600;
    font-size: 37px;
    line-height: 46px;
    text-align: center;
    color: #FFFFFF;
}

.header nav {
    display: flex;
    gap: 30px;
}

.header nav a {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
}

.header nav a:hover{
    color: #EBFF57;
}

.header .btn-contact {
    padding: 10px 20px;
    background: #EBFF57;
    border-radius: 62px;
    border: 1px solid #EBFF57;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #0A0A0C;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.3s ease;
}

.header .btn-contact:hover{
    background: #0A0A0C;
    color: #EBFF57;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}

.header .side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    background: #111;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 2001;
}

.header .side-menu.active {
    left: 0;
}

.header .side-menu a {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
    text-decoration: none;
}

.header .side-menu a:hover{
    color: #EBFF57;
}

.header .close-btn {
    align-self: flex-end;
    font-size: 50px;
    line-height: 30px;
    cursor: pointer;
    color: white;
}

.header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
}

.header .overlay.active {
    display: block;
}

/* ====== Hero ====== */

.hero-section {
    padding: 70px 0;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(images/Mask\ group.png);
    /* background-size: contain; */
    background-repeat: no-repeat;
    background-position-x: center;
}

.hero-section .top-badge{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section .bold-tag {
    position: relative;
    background: url(images/bold-back-img.png) no-repeat center;
    background-size: cover;
}

.hero-section .bold-tag .back-img{
    transform: rotate(-17.67deg);
    padding: 40px;
}

.hero-section .bold-tag .back-img .pulse-text {
    font-weight: 600;
    font-size: 48px;
    line-height: 61px;
    color: #FFFFFF;
    display: inline-flex;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hero-section .branding-tag {
    position: relative;
    background: url(images/branding-back-img.png) no-repeat center;
    background-size: cover;
}

.hero-section .branding-tag .branding-img{
    transform: rotate(10.79deg);
    padding: 55px 40px;
}

.hero-section .branding-tag .branding-img span {
    font-weight: 600;
    font-size: 48px;
    line-height: 61px;
    color: #FFFFFF;
}

.hero-section .branding-dots {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px;
    gap: 10px;
    position: absolute;
    left: 15px;
    top: 0;
    background: #0A0A0C;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 72px;
}

.hero-section .dot {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.hero-section .dot.yellow {
    background-color: #EBFF57;
    opacity: 1;
    transform: scale(1);
}

.hero-section .dot.green {
    background-color: #57FFC7;
    animation: greenDotSequence 4s infinite;
}

.hero-section .dot.blue {
    background-color: #5768FF;
    animation: blueDotSequence 4s infinite;
}

.hero-section .dot.red {
    background-color: #81FF57;
    animation: redDotSequence 4s infinite;
}

/* GREEN DOT */
@keyframes greenDotSequence {
    0%, 15% {
        opacity: 0;
        transform: scale(0.8);
    }
    16%{
        opacity: 0.5;
        transform: scale(0.9);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    21%, 80% {
        opacity: 1;
        transform: scale(1);
    }
    81%{
        opacity: 0.5;
        transform: scale(0.9);
    } 
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* BLUE DOT */
@keyframes blueDotSequence {
    0%, 30% {
        opacity: 0;
        transform: scale(0.8);
    }
    31% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    35% {
        opacity: 1;
        transform: scale(1);
    }
    36%, 80% {
        opacity: 1;
        transform: scale(1);
    }
    81% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* RED DOT */
@keyframes redDotSequence {
    0%, 45% {
        opacity: 0;
        transform: scale(0.8);
    }
    46% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    51%, 80% {
        opacity: 1;
        transform: scale(1);
    }
    81% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.hero-section .main-heading {
    font-weight: 500;
    font-size: 102px;
    line-height: 114px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-section .sub-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.hero-section .hero-btn{
    text-align: center;
    margin-top: 40px;
}

.hero-section .cta-button {
    padding: 15px 30px;
    background: #EBFF57;
    border-radius: 62px;
    border: 1px solid #EBFF57;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #0A0A0C;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.3s ease;
}

.hero-section .cta-button:hover {
    background: #0A0A0C;
    color: #EBFF57;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section .hero-float-img{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section .floating-image {
    box-sizing: border-box;
    width: 250px;
    background: #FFFFFF;
    border: 10px solid #FFFFFF;
    border-radius: 30px;
    overflow: hidden;
}

.hero-section .floating-image img{
    width: 100%;
}

.hero-section .hero-float-img .float-left-img{
    transform: rotate(-8.99deg);
}

.hero-section .hero-float-img .image-left {
    animation: floatUp 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-float-img .float-right-img{
    transform: rotate(5.08deg);
}

.hero-section .hero-float-img .image-right {
    animation: floatDown 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(30px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes floatDown {
    0%, 100% {
        transform: translateY(-30px) ;
    }
    50% {
        transform: translateY(30px);
    }
}

/* ====== Transform Section ====== */

.transform{
    margin: 120px 0;
}

.transform .animated-text {
    font-family: 'Clash Grotesk', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 111.59%;
    text-align: center;
}

.transform .text-line {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.transform .floating-image img,
.transform .animated-text .text-line .text-part img{
    width: 100px;
    height: 60px;
    border-radius: 50px;
}

.transform .fade-in-out {
    animation: fadeAnimation1 6s ease-in-out infinite;
    margin: 0 5px !important;
}


@keyframes fadeAnimation1 {
    0%, 15% {
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
        width: 0;
        margin: 0;
    }

    25%, 75% {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        width: 120px;
        margin: 0 15px;
    }

    85%, 100% {
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
        width: 0;
        margin: 0;
    }
}

/* ====== Slider Section ====== */

.slider-section {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    background: #171717;
}

.slider-section .slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-section .slider-track {
    display: flex;
    animation: slide 40s linear infinite;
    width: max-content;
}

.slider-section .logo-item {
    /* width: 240px; */
    /* padding: 16px 32px; */
    padding: 12px 20px;
    margin: 0 15px;
    border: 1px solid #AFAFAF;
    border-radius: 120px;
}

.slider-section .logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
    /* padding: 0 25px; */
}

.slider-section .logo-icon img{
    width: 30px;
    height: 30px;
}

.slider-section .logo-text {
    font-size: 23px;
    font-weight: 600;
    color: #FFFFFF;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-section .slider-section:hover .slider-track {
    animation-play-state: paused;
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
    .hero-section .main-heading{
        font-size: 70px;
        line-height: 90px;
    }

    .hero-section .sub-text{
        max-width: 600px;
    }

    .transform .animated-text{
        font-size: 45px;
    }

    .transform .animated-text .text-line .text-part img{
        width: 80px;
        height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .hero-section .bold-tag .back-img{
        padding: 30px 40px;
    }

    .hero-section .bold-tag .back-img .pulse-text{
        font-size: 35px;
    }

    .hero-section .branding-tag .branding-img {
        padding: 30px;
    }

    .hero-section .branding-tag .branding-img span{
        font-size: 35px;
    }

    .hero-section .branding-dots{
        left: 6px;
    }

    .hero-section .main-heading{
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 10px;
    }

    .hero-section .sub-text{
        font-size: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .cta-button{
        padding: 10px 20px;
        font-size: 20px;
    }

    .transform .animated-text{
        font-size: 40px;
    }

    .transform .floating-image img,
    .transform .animated-text .text-line .text-part img{
        width: 90px;
        height: 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 850px){
    .transform .animated-text {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .header{
        padding: 15px 0px;
    }

    .header nav {
        display: none;
    }
    .header .menu-toggle {
        display: block;
    }

    .header .btn-contact{
        display: none;
    }

    .hero-section{
        padding-top: 40px;
    }

    .hero-section .bold-tag .back-img{
        padding: 25px 28px;
    }

    .hero-section .bold-tag .back-img .pulse-text{
        font-size: 28px;
        line-height: 40px;
    }
    
    .hero-section .branding-tag .branding-img {
        padding: 35px 30px;
    }

    .hero-section .branding-tag .branding-img span {
        font-size: 28px;
        line-height: 40px;
    }

    .hero-section .branding-dots{
        gap: 5px;
        left: 5px;
    }

    .hero-section .dot{
        width: 15px;
        height: 15px;
    }

    .hero-section .main-heading {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 10px;
    }

    .hero-section .sub-text{
        font-size: 16px;
        line-height: 24px;
        max-width: 400px;
    }

    .hero-section .hero-btn{
        margin-top: 20px;
    }

    .hero-section .cta-button{
        padding: 10px 20px;
        font-size: 20px;
    }

    .hero-section .floating-image{
        width: 170px;
    }

    @keyframes floatUp {
        0%, 100% {
            transform: translateY(15px);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    @keyframes floatDown {
        0%, 100% {
            transform: translateY(-15px);
        }

        50% {
            transform: translateY(15px);
        }
    }

    .transform {
        margin: 60px 0;
    }

    .transform .animated-text{
        font-size: 26px;
    }

    .transform .floating-image img, 
    .transform .animated-text .text-line .text-part img{
        width: 80px;
        height: 50px;
    }

    .transform .text-line{
        margin-bottom: 10px;
    }

    .slider-section{
        padding: 40px 0;
    }

    .slider-section .logo-icon img {
        width: 25px;
        height: 25px;
    }

    .slider-section .logo-text {
        font-size: 16px;
    }

    .slider-section .logo-item{
        padding: 10px 14px;
        margin: 0 7px;
    }
}

@media (max-width: 576px) {
    .hero-section .bold-tag .back-img {
        padding: 20px 22px;
    }

    .hero-section .branding-tag .branding-img{
        padding: 30px 25px;
    }

    .hero-section .bold-tag .back-img .pulse-text,
    .hero-section .branding-tag .branding-img span {
        font-size: 24px;
        line-height: 30px;
    }

    .hero-section .dot {
        width: 10px;
        height: 10px;
    }

    .hero-section .branding-dots{
        padding: 4px;
    }

    .hero-section .branding-dots{
        left: 0;
    }

    .hero-section .main-heading {
        font-size: 35px;
        line-height: 40px;
    }

    .hero-section .sub-text {
        max-width: 400px;
    }
    
    .hero-section .cta-button{
        padding: 10px 15px;
        font-size: 16px;
    }

    .hero-section .floating-image {
        width: 130px;
    }

    .hero-section .floating-image{
        border: 7px solid #FFFFFF;
        border-radius: 15px;
    }

    .transform .text-line{
        margin-bottom: 10px;
    }

    .transform .animated-text {
        font-size: 21px;
    }

    .transform .floating-image img, 
    .transform .animated-text .text-line .text-part img {
        width: 70px;
        height: 40px;
    }
}

@media (max-width: 480px){
    .hero-section .main-heading {
        font-size: 24px;
        line-height: 30px;
    }

    .hero-section .sub-text {
        max-width: 300px;
    }

    .hero-section .floating-image {
        width: 100px;
    }

    .transform {
        margin: 30px 0;
    }
}

@media (max-width: 460px){
    .transform .text-line {
        margin-bottom: 5px;
    }

    .transform .animated-text{
        font-size: 14px;
    }

    .transform .floating-image img, .transform .animated-text .text-line .text-part img {
        width: 60px;
        height: 30px;
    }
}