* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html, body {
    height: 100%;
    scroll-behavior: smooth
}

body {
    font-family: 'Barlow', sans-serif;
    color: #fff;
    background: #000;
    overflow-x: hidden
}

.whatsapp-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, .3);
    text-decoration: none;
    animation: pulse 2s infinite
}

.whatsapp-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .5)
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, .3)
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, .6)
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(10px);
    transition: all .3s ease;
    border-bottom: 1px solid rgba(127, 0, 131, .3)
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #7f0083, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.logo span {
    font-size: 1.2rem;
    color: #7f0083
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.nav-links a {
    font-weight: 600;
    font-size: .85rem;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    white-space: nowrap
}

.nav-links a:hover {
    color: #7f0083;
    transform: translateY(-2px)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #7f0083, #ff6b6b);
    transition: width .3s ease
}

.nav-links a:hover::after {
    width: 100%
}

.cta {
    background: linear-gradient(45deg, #7f0083, #ff6b6b);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .8rem
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(127, 0, 131, .4)
}

.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    background-attachment: fixed
}

#section1 {
    background: linear-gradient(135deg, #0f0015, #40004d, #7f0083);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

#section2, #section3, #section4, #section5, #section6, #section7 {
    background: linear-gradient(135deg, rgba(15, 0, 21, .95), rgba(127, 0, 131, .95));
    position: relative
}

#section2::before, #section3::before, #section4::before, #section5::before, #section6::before, #section7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%237f0083" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff6b6b" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="30" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1
}

.hero-content {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease-out forwards;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%
}

.section-icon {
    font-size: 3rem;
    color: #7f0083;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite
}

@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
    background: linear-gradient(-45deg, #fff, #7f0083, #ff6b6b, #fff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(127, 0, 131, .5);
    line-height: 1.2;
    animation: gradientText 3s ease-in-out infinite
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.sub-heading {
    font-family: 'Alice', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff6b6b;
    font-weight: 600
}

.tagline {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px
}

.service-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 131, .3);
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(127, 0, 131, .1), transparent);
    transform: translateX(-100%);
    transition: transform .6s ease
}

.service-card:hover::before {
    transform: translateX(100%)
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 0, 131, .4);
    border-color: #7f0083
}

.service-card-icon {
    font-size: 2rem;
    color: #7f0083;
    margin-bottom: 15px
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff
}

.service-card p {
    color: #ccc;
    line-height: 1.5;
    font-size: .9rem
}

.feature-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px
}

.feature-list li {
    background: rgba(127, 0, 131, .1);
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 4px solid #7f0083;
    transition: all .3s ease;
    font-size: .9rem
}

.feature-list li:hover {
    background: rgba(127, 0, 131, .2);
    transform: translateX(5px)
}

.feature-list li i {
    color: #7f0083;
    margin-right: 8px
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px
}

.process-step {
    text-align: center
}

.process-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #7f0083, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #fff;
    transition: all .3s ease
}

.process-step:hover .process-step-icon {
    transform: scale(1.1) rotate(360deg)
}

.process-step h4 {
    margin-bottom: 8px;
    color: #7f0083;
    font-size: 1.1rem
}

.process-step p {
    font-size: .9rem;
    color: #ccc
}

.highlighted-clients {
    background: #fff;
    color: #222;
    padding: 60px 20px;
    text-align: center
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #333
}

.clients-carousel {
    overflow: hidden;
    position: relative
}

.clients-track {
    display: flex;
    animation: scrollLeft 12s linear infinite;
    gap: 40px;
    align-items: center;
    filter: grayscale(100%) opacity(.6)
}

.clients-track:hover {
    animation-play-state: paused
}

.clients-track img {
    height: 50px;
    flex-shrink: 0;
    transition: all .3s ease
}

.clients-track img:hover {
    transform: scale(1.2);
    filter: grayscale(0%) opacity(1)
}

.side-nav {
    position: fixed;
    top: 40%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    transition: opacity .5s ease, transform .5s ease
}

.side-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.side-nav li {
    font-size: .9rem;
    color: #bbb;
    margin: 0;
    cursor: pointer;
    transition: all .3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    flex-shrink: 0
}

.side-nav li:hover {
    color: #fff;
    background: rgba(127, 0, 131, .4);
    transform: scale(1.1)
}

.side-nav li.active {
    background: #7f0083;
    color: #fff
}

.main-footer {
    position: relative;
    background: linear-gradient(135deg, #0f0015, #40004d, #7f0083);
    color: #eee;
    padding: 60px 20px 20px;
    text-align: center
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.footer-col {
    text-align: left
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #7f0083;
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-col h4 i {
    font-size: 1rem
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin: 10px 0
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem
}

.footer-col ul li a:hover {
    color: #7f0083;
    transform: translateX(5px)
}

.footer-col p {
    color: #bbb;
    margin: 6px 0;
    line-height: 1.5;
    font-size: .9rem
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(127, 0, 131, .2);
    border: 2px solid #7f0083;
    border-radius: 50%;
    color: #7f0083;
    text-decoration: none;
    transition: all .3s ease
}

.social-icons a:hover {
    background: #7f0083;
    color: #fff;
    transform: translateY(-2px)
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(127, 0, 131, .3);
    color: #aaa;
    font-size: .8rem;
    text-align: center
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #7f0083, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    transition: all .3s ease;
    display: none
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(127, 0, 131, .4)
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%)
    }

    100% {
        transform: translateX(-50%)
    }
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .8s ease-out forwards
}

.animate-text-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .8s ease-out .4s forwards
}

.animate-text-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .8s ease-out .8s forwards
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:1024px) {
    .navbar {
        padding: 12px 15px
    }

    .nav-links {
        gap: 15px
    }

    .nav-links a {
        font-size: .8rem
    }

    .main-heading {
        font-size: 2.2rem
    }

    .section-icon {
        font-size: 2.5rem
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px
    }

    .whatsapp-cta {
        width: 55px;
        height: 55px;
        font-size: 1.3rem
    }

    .scroll-to-top {
        width: 55px;
        height: 55px;
        font-size: 1.3rem
    }
}

@media (max-width:768px) {
    .navbar {
        padding: 10px 15px;
        flex-direction: column;
        align-items: center
    }

    .logo {
        font-size: 1.3rem;
        margin-bottom: 10px;
        width: 100%;
        text-align: center
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%
    }

    .nav-links a {
        font-size: .75rem;
        padding: 5px 8px
    }

    .cta {
        margin-top: 8px
    }

    .section {
        padding: 60px 15px;
        min-height: 90vh
    }

    .main-heading {
        font-size: 2rem;
        line-height: 1.1
    }

    .sub-heading {
        font-size: 1.2rem
    }

    .section-icon {
        font-size: 2rem;
        margin-bottom: 15px
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px
    }

    .service-card {
        padding: 20px
    }

    .service-card h3 {
        font-size: 1.1rem
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px
    }

    .process-step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem
    }

    .clients-title {
        font-size: 2rem
    }

    .clients-track img {
        height: 40px
    }

    .side-nav {
        right: 10px
    }

    .side-nav li {
        width: 25px;
        height: 25px;
        font-size: .8rem
    }

    .main-footer {
        padding: 40px 15px 15px
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px
    }

    .footer-col {
        text-align: center
    }

    .footer-col h4 {
        justify-content: center;
        font-size: 1.1rem
    }

    .footer-col ul li a {
        justify-content: center;
        font-size: .85rem
    }

    .footer-col p {
        font-size: .85rem
    }

    .social-icons {
        justify-content: center
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 15px;
        font-size: .75rem
    }

    .whatsapp-cta {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px
    }

    .scroll-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 15px
    }
}

@media (max-width:480px) {
    .navbar {
        padding: 8px 10px
    }

    .logo {
        font-size: 1.1rem
    }

    .nav-links a {
        font-size: .7rem;
        padding: 4px 6px
    }

    .cta {
        padding: 8px 15px;
        font-size: .7rem
    }

    .section {
        padding: 50px 10px
    }

    .main-heading {
        font-size: 1.8rem
    }

    .sub-heading {
        font-size: 1.1rem
    }

    .tagline {
        font-size: .9rem
    }

    .service-card {
        padding: 15px
    }

    .service-card-icon {
        font-size: 1.5rem
    }

    .service-card h3 {
        font-size: 1rem
    }

    .service-card p {
        font-size: .85rem
    }

    .process-steps {
        grid-template-columns: 1fr
    }

    .process-step-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem
    }

    .clients-title {
        font-size: 1.5rem
    }

    .clients-track img {
        height: 30px
    }

    .side-nav {
        display: none
    }

    .main-footer {
        padding: 30px 10px 10px
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 15px
    }

    .footer-col ul li {
        margin: 8px 0
    }

    .footer-col ul li a {
        font-size: .8rem
    }

    .footer-col p {
        font-size: .8rem;
        margin: 4px 0
    }

    .social-icons a {
        width: 35px;
        height: 35px
    }

    .footer-bottom {
        margin-top: 15px;
        padding-top: 10px;
        font-size: .7rem
    }

    .whatsapp-cta {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 10px;
        left: 10px
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 10px;
        right: 10px
    }
}

@media (max-width:360px) {
    .main-heading {
        font-size: 1.5rem
    }

    .sub-heading {
        font-size: 1rem
    }

    .section-icon {
        font-size: 1.5rem
    }

    .service-card {
        padding: 12px
    }

    .clients-title {
        font-size: 1.3rem
    }

    .nav-links a {
        font-size: .65rem
    }

    .process-step-icon {
        width: 45px;
        height: 45px;
        font-size: .9rem
    }

    .footer-col h4 {
        font-size: .9rem
    }

    .footer-col ul li a, .footer-col p {
        font-size: .75rem
    }

    .whatsapp-cta {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 10px
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        right: 10px
    }
}