@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Handlee&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Spartan:wght@100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merienda:wght@300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Tamil:wght@100..900&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poetsen+One&family=Quicksand:wght@300..700&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Sora:wght@100..800&family=Spline+Sans:wght@300..700&family=Wix+Madefor+Display:wght@400..800&display=swap');

:root {
    --primary: #79f2ff;
    --secondary: #5affc1;
    --dark: #061019;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Instrument Sans", sans-serif;
    background: #0e151d;
    overflow: hidden;
    color: #fff;
}

a {
    text-decoration: none;
}

/* =========================
       HEADER
    ==========================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 22px 0;
}

.container-fluid {
    padding: 0 45px;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    background: #ffffff;
    border-radius: 12px;
}

.logo img {
    width: 160px;
    height: 70px;
    object-fit: cover;
}

.logo span {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.call-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #16E0B5;
    font-size: 20px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

/* .call-btn:hover {
    background: var(--primary);
    color: #081019;
} */

.phone-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
}

/* =========================
       MAIN SECTION
    ==========================*/

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-slider {
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 8s ease;
}

.swiper-slide-active .bg-image {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.30)),
        linear-gradient(to top, rgba(0, 0, 0, 0.50), transparent);
    z-index: 1;
}

.content-wrapper {
    position: absolute;
    z-index: 5;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
    padding-top: 40px;
}

.sub-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeUp 1s ease;
}

.main-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 50px;
    font-weight: 800;
    max-width: 820px;
    margin-bottom: 22px;
    line-height: 1.3;
    animation: fadeUp 1.1s ease;
}

.main-title .gradient-text {
    color: #16E0B5;
}

.typing-word {
    color: #ffffff;
    position: relative;
}

.typing-word::after {
    content: "|";
    animation: 0.7s infinite blink;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

}

.main-title span {
    color: #16E0B5;
}

.description {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 400;
    animation: fadeUp 1.1s ease;
}

.coming-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
    padding: 14px 22px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    animation: fadeUp 1.4s ease;
}

.pulse {
    width: 12px;
    height: 12px;
    background: #16E0B5;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #16E0B5;
    animation: pulse 2s infinite;
}

/* =========================
       SERVICE CARDS
    ==========================*/

.service-wrapper {
    position: absolute;
    bottom: 23px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.serviceSwiper {
    overflow: visible;
}

.service-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 16px;
    min-height: 100px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.08));

    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    overflow: hidden;

    cursor: pointer;

    transition: all 0.45s cubic-bezier(.165, .84, .44, 1);
}

/* TOP SHINE */

.service-card::before {
    content: '';
    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.28),
            transparent);

    transform: skewX(-25deg);

    transition: 0.9s ease;
}

/* HOVER EFFECT */

.service-card:hover {

    transform:
        scale(1.02);

    border-color: rgba(0, 217, 255, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(0, 217, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.service-card:hover::before {
    left: 160%;
}

/* ACTIVE CARD */

.service-card.active {

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.28),
            rgba(255, 255, 255, 0.12));

    border-color: rgba(0, 217, 255, 0.45);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 45px rgba(0, 217, 255, 0.18);
}


.service-card.active::after {
    content: '';
    position: absolute;
    top: 13px;
    right: 16px;
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #16E0B5;

    box-shadow:
        0 0 12px rgba(22, 224, 181, 0.8);
}

.service-image {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content span {
    display: block;
    color: #777;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
}

.service-content h4 {
    font-size: 14px;
    line-height: 1.45;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

/* =========================
       RIGHT NAVIGATION
    ==========================*/

.slide-nav {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: #fff;
    color: #111;
}

/* =========================
       ANIMATION
    ==========================*/

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 999999;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-left,
.loader-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #02070d;
    z-index: 2;
    transition: 1.5s cubic-bezier(.77, 0, .18, 1);
}

.loader-left {
    left: 0;
}

.loader-right {
    right: 0;
}

/* CENTER CONTENT */

.loader-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: 0.8s ease;
}

/* OPEN EFFECT */

.page-loader.loaded .loader-left {
    transform: translateX(-100%);
}

.page-loader.loaded .loader-right {
    transform: translateX(100%);
}

.page-loader.loaded .loader-content {
    opacity: 0;
    transform: scale(0.7);
}

.loader {
    position: relative;
    width: 90px;
    height: 110px;
}

.loader__bar {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 50%;
    background: linear-gradient(180deg,
            #00D9FF 0%,
            #16E0B5 100%);
    transform-origin: center bottom;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.loader__bar:nth-child(1) {
    left: 0px;
    transform: scale(1, 0.2);
    -webkit-animation: barUp1 4s infinite;
    animation: barUp1 4s infinite;
}

.loader__bar:nth-child(2) {
    left: 15px;
    transform: scale(1, 0.4);
    -webkit-animation: barUp2 4s infinite;
    animation: barUp2 4s infinite;
}

.loader__bar:nth-child(3) {
    left: 30px;
    transform: scale(1, 0.6);
    -webkit-animation: barUp3 4s infinite;
    animation: barUp3 4s infinite;
}

.loader__bar:nth-child(4) {
    left: 45px;
    transform: scale(1, 0.8);
    -webkit-animation: barUp4 4s infinite;
    animation: barUp4 4s infinite;
}

.loader__bar:nth-child(5) {
    left: 60px;
    transform: scale(1, 1);
    -webkit-animation: barUp5 4s infinite;
    animation: barUp5 4s infinite;
}

.loader__ball {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    -webkit-animation: ball624 4s infinite;
    animation: ball624 4s infinite;
}

@keyframes ball624 {
    0% {
        transform: translate(0, 0);
    }

    5% {
        transform: translate(8px, -14px);
    }

    10% {
        transform: translate(15px, -10px);
    }

    17% {
        transform: translate(23px, -24px);
    }

    20% {
        transform: translate(30px, -20px);
    }

    27% {
        transform: translate(38px, -34px);
    }

    30% {
        transform: translate(45px, -30px);
    }

    37% {
        transform: translate(53px, -44px);
    }

    40% {
        transform: translate(60px, -40px);
    }

    50% {
        transform: translate(60px, 0);
    }

    57% {
        transform: translate(53px, -14px);
    }

    60% {
        transform: translate(45px, -10px);
    }

    67% {
        transform: translate(37px, -24px);
    }

    70% {
        transform: translate(30px, -20px);
    }

    77% {
        transform: translate(22px, -34px);
    }

    80% {
        transform: translate(15px, -30px);
    }

    87% {
        transform: translate(7px, -44px);
    }

    90% {
        transform: translate(0, -40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@-webkit-keyframes barUp1 {
    0% {
        transform: scale(1, 0.2);
    }

    40% {
        transform: scale(1, 0.2);
    }

    50% {
        transform: scale(1, 1);
    }

    90% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 0.2);
    }
}

@keyframes barUp1 {
    0% {
        transform: scale(1, 0.2);
    }

    40% {
        transform: scale(1, 0.2);
    }

    50% {
        transform: scale(1, 1);
    }

    90% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 0.2);
    }
}

@-webkit-keyframes barUp2 {
    0% {
        transform: scale(1, 0.4);
    }

    40% {
        transform: scale(1, 0.4);
    }

    50% {
        transform: scale(1, 0.8);
    }

    90% {
        transform: scale(1, 0.8);
    }

    100% {
        transform: scale(1, 0.4);
    }
}

@keyframes barUp2 {
    0% {
        transform: scale(1, 0.4);
    }

    40% {
        transform: scale(1, 0.4);
    }

    50% {
        transform: scale(1, 0.8);
    }

    90% {
        transform: scale(1, 0.8);
    }

    100% {
        transform: scale(1, 0.4);
    }
}

@-webkit-keyframes barUp3 {
    0% {
        transform: scale(1, 0.6);
    }

    100% {
        transform: scale(1, 0.6);
    }
}

@keyframes barUp3 {
    0% {
        transform: scale(1, 0.6);
    }

    100% {
        transform: scale(1, 0.6);
    }
}

@-webkit-keyframes barUp4 {
    0% {
        transform: scale(1, 0.8);
    }

    40% {
        transform: scale(1, 0.8);
    }

    50% {
        transform: scale(1, 0.4);
    }

    90% {
        transform: scale(1, 0.4);
    }

    100% {
        transform: scale(1, 0.8);
    }
}

@keyframes barUp4 {
    0% {
        transform: scale(1, 0.8);
    }

    40% {
        transform: scale(1, 0.8);
    }

    50% {
        transform: scale(1, 0.4);
    }

    90% {
        transform: scale(1, 0.4);
    }

    100% {
        transform: scale(1, 0.8);
    }
}

@-webkit-keyframes barUp5 {
    0% {
        transform: scale(1, 1);
    }

    40% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1, 0.2);
    }

    90% {
        transform: scale(1, 0.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes barUp5 {
    0% {
        transform: scale(1, 1);
    }

    40% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1, 0.2);
    }

    90% {
        transform: scale(1, 0.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

/* =========================
   PAPER BLAST
==========================*/

.blast-container {
    position: fixed;
    bottom: 40px;
    width: 250px;
    height: 250px;
    pointer-events: none;
    z-index: 9999;
    overflow: visible;
}

.left-blast {
    left: 0;
}

.right-blast {
    right: 0;
}

/* PAPER */

.paper {
    position: absolute;
    width: 12px;
    height: 22px;
    border-radius: 2px;
    opacity: 0;
    transform: translate(0, 0) rotate(0deg);
}

/* BRAND COLORS */

.paper:nth-child(3n+1) {
    background: #00D9FF;
}

.paper:nth-child(3n+2) {
    background: #16E0B5;
}

.paper:nth-child(3n+3) {
    background: #ffffff;
}

/* BLAST ANIMATION */

.paper.animate {
    animation: paperBlast 1.8s ease-out forwards;
}

@keyframes paperBlast {

    0% {
        opacity: 1;
        transform:
            translate(0, 0) rotate(0deg) scale(0.4);
    }

    100% {
        opacity: 0;
        transform:
            translate(var(--x), var(--y)) rotate(720deg) scale(1);
    }

}

/* =========================
       RESPONSIVE
    ==========================*/
/* =========================================================
   1400px
=========================================================*/

@media (max-width: 1400px) {

    .main-title {
        font-size: 60px;
        max-width: 760px;
    }

    .service-content h4 {
        font-size: 15px;
    }

    .slide-nav {
        right: 25px;
    }

}

/* =========================================================
   1024px
=========================================================*/

@media (max-width: 1024px) {

    .container-fluid {
        padding: 0 30px;
    }

    .main-title {
        font-size: 52px;
        line-height: 1.2;
        max-width: 700px;
    }

    .coming-badge {
        padding: 12px 18px;
        font-size: 14px;
    }

    .service-card {
        min-height: 95px;
        padding: 14px;
    }

    .service-content h4 {
        font-size: 14px;
    }

    .slide-nav {
        right: 20px;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }

}

/* =========================================================
   991px
=========================================================*/

@media (max-width: 991px) {

    body {
        overflow: auto;
    }

    .container-fluid {
        padding: 0 24px;
    }

    header {
        padding: 18px 0;
    }

    .logo img {
        width: 135px;
        height: 60px;
    }

    .header-right h4 {
        font-size: 18px;
    }

    .call-btn {
        width: 46px;
        height: 46px;
    }

    .content-wrapper {
        top: 42%;
    }

    .sub-title {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .main-title {
        font-size: 46px;
        line-height: 1.18;
        max-width: 620px;
        margin-bottom: 18px;
    }

    .description {
        font-size: 15px;
        max-width: 520px;
    }

    .coming-badge {
        font-size: 13px;
        padding: 11px 16px;
    }

    .service-wrapper {
        bottom: 20px;
    }

    .service-card {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
    }

    .service-image {
        width: 54px;
        height: 54px;
    }

    .service-content h4 {
        font-size: 14px;
        line-height: 1.4;
    }

    .slide-nav {
        display: none;
    }

}

/* =========================================================
   480px
=========================================================*/

@media (max-width: 480px) {

    .header-wrap {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    body {
        overflow: hidden;
    }

    .container-fluid {
        padding: 0 16px;
    }

    header {
        padding: 14px 0;
    }

    .logo {
        border-radius: 10px;
    }

    .logo img {
        width: 115px;
        height: 52px;
    }

    .header-right {
        gap: 10px;
    }

    .header-right h4 {
        font-size: 13px;
        font-weight: 600;
    }

    .call-btn {
        width: 38px;
        height: 38px;
    }

    .call-btn svg {
        width: 18px;
        height: 18px;
    }

    .content-wrapper {
        top: 43%;
        padding-top: 20px;
    }

    .sub-title {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .main-title {
        font-size: 44px;
        line-height: 1.15;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .main-title span {
        display: block;
    }

    .coming-badge {
        font-size: 11px;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 50px;
    }

    .pulse {
        width: 10px;
        height: 10px;
    }

    .service-wrapper {
        bottom: 100px;
    }

    .service-card {
        padding: 12px;
        gap: 12px;
        border-radius: 16px;
    }

    .service-image {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .service-content h4 {
        font-size: 13px;
        line-height: 1.35;
    }

    .service-card.active::after {
        width: 10px;
        height: 10px;
        top: 12px;
        right: 12px;
    }

    .loader {
        transform: scale(0.8);
    }
}

/* =========================================================
   320px
=========================================================*/

@media (max-width: 320px) {

    .container-fluid {
        padding: 0 12px;
    }

    .logo img {
        width: 95px;
        height: 44px;
    }

    .header-right h4 {
        font-size: 11px;
    }

    .call-btn {
        width: 34px;
        height: 34px;
    }

    .main-title {
        font-size: 28px;
        line-height: 1.12;
    }

    .coming-badge {
        font-size: 10px;
        padding: 8px 12px;
    }

    .service-card {
        padding: 10px;
    }

    .service-image {
        width: 42px;
        height: 42px;
    }

    .service-content h4 {
        font-size: 12px;
    }

}