﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bowlby+One&family=Days+One&family=Lilita+One&family=Titan+One&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    background: #2e1a5c;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 20px;
    bottom: 20px;
    z-index: 996;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7dd3fc, #e879f9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .back-to-top i {
        font-size: 24px;
        color: #0f172a;
        line-height: 0;
        transition: transform 0.6s ease;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, #e879f9, #7dd3fc);
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(232, 121, 249, 0.5);
    }

        .back-to-top:hover i {
            transform: rotate(360deg);
        }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

@media screen and (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        left: 15px;
        bottom: 15px;
    }

        .back-to-top i {
            font-size: 20px;
        }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* Header Section */
.header-section {
    z-index: 997;
    transition: all 0.5s ease;
    width: 100%;
    margin: 0 auto;
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#header {
    background: #0f172a;
    padding: 12px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.header-scrolled {
    background: rgba(15, 23, 42, 0.95);
}

.logo img {
    max-height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

    .logo img:hover {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-menu li {
        margin: 0 15px;
    }

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #d1d5db;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    padding: 8px 16px;
    display: block;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: #7dd3fc;
        text-shadow: 0 0 8px rgba(125, 211, 252, 0.5);
    }

.mobile-nav-toggle {
    display: none;
    font-size: 28px;
    color: #7dd3fc;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    top: 50%;
    margin-top: -14px;
}

    .mobile-nav-toggle:hover {
        color: #e879f9;
        transform: scale(1.1);
    }

    .mobile-nav-toggle.bi-x {
        color: #e879f9; 
        line-height: 1; 
    }

/* Mobile menu styles */
@media (max-width: 968px) {
    #header {
        padding: 10px 0;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0; 
        left: 0;
        width: 100%;
        height: 100vh; 
        background: #0f172a;
        flex-direction: column;
        align-items: center;
        padding: 70px 0 20px; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 999;
        overflow-y: auto; 
    }

        .nav-menu.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-menu li {
            margin: 15px 0;
            width: 80%;
            text-align: center;
        }

            .nav-menu li:first-child {
                margin-top: 30px; 
            }

            .nav-menu li:last-child {
                margin-bottom: 30px; 
            }

    .nav-link {
        font-size: 28px;
        padding: 12px 20px;
        color: #d1d5db;
        text-align: center;
        border-bottom: 1px solid #ffffff14;
    }

        .nav-link:hover,
        .nav-link.active {
            color: #7dd3fc;
            text-shadow: 0 0 8px rgba(125, 211, 252, 0.5);
        }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        z-index: 1001;
        margin-top: -14px;
    }

    @media (orientation: landscape) {
        .nav-menu {
            padding: 60px 0 20px; 
            height: 100vh; 
        }

            .nav-menu li {
                margin: 10px 0; 
            }

                .nav-menu li:first-child {
                    margin-top: 30px; 
                }

                .nav-menu li:last-child {
                    margin-bottom: 30px; 
                }

        .nav-link {
            font-size: 24px; 
            padding: 10px 15px;
        }

        .mobile-nav-toggle {
            font-size: 24px;
            line-height: 1; 
            margin-top: -12px; 
        }
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: 40px;
    }

    .nav-menu {
        padding: 60px 0 20px;
    }

        .nav-menu li {
            margin: 12px 0;
        }

            .nav-menu li:first-child {
                margin-top: 30px; 
            }

            .nav-menu li:last-child {
                margin-bottom: 30px; 
            }

    .nav-link {
        font-size: 24px;
        padding: 10px 15px;
        border-bottom: 0.6px solid #ffffff14;
    }

    .mobile-nav-toggle {
        font-size: 24px;
        line-height: 1; 
        margin-top: -12px; 
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    .logo img {
        max-height: 35px;
    }

    .nav-menu {
        padding: 50px 0 20px;
    }

        .nav-menu li {
            margin: 10px 0;
        }

            .nav-menu li:first-child {
                margin-top: 30px; 
            }

            .nav-menu li:last-child {
                margin-bottom: 30px; 
            }

    .nav-link {
        font-size: 20px;
        padding: 8px 12px;
        border-bottom: 1px solid #ffffff14;
        margin: 8px;
    }

    .mobile-nav-toggle {
        font-size: 22px;
        line-height: 1; 
        margin-top: -11px; 
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: white;
    min-height: 100vh;
    height: auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow-y: auto;
    box-sizing: border-box;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: glowPulse 8s infinite ease-in-out;
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        text-shadow: 0 2px 6px rgba(0,0,0,0.4);
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.3rem;
        opacity: 0.9;
        max-width: 600px;
    }

/* Soundbar Animation */
.soundbar {
    display: flex;
    align-items: flex-end;
    height: 200px;
    gap: 8px;
    justify-content: center;
}

.bar {
    width: 12px;
    background: linear-gradient(to top, #22d3ee, #1e1b4b);
    border-radius: 6px;
    animation: soundbar 1.5s infinite ease-in-out;
}

    .bar:nth-child(1) {
        animation-delay: 0.1s;
    }

    .bar:nth-child(2) {
        animation-delay: 0.3s;
    }

    .bar:nth-child(3) {
        animation-delay: 0.5s;
    }

    .bar:nth-child(4) {
        animation-delay: 0.7s;
    }

    .bar:nth-child(5) {
        animation-delay: 0.9s;
    }

@keyframes soundbar {
    0%, 100% {
        height: 20px;
    }

    50% {
        height: 150px;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.1;
    }
}

/* Glowing Buttons */
.btn-glow {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-glow::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: 0.5s;
    }

    .btn-glow:hover::before {
        left: 100%;
    }

    .btn-glow:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    }

.btn-primary-glow {
    background: #22d3ee;
    border: 2px solid #22d3ee;
    color: #fff;
}

    .btn-primary-glow:hover {
        background: transparent;
        color: #22d3ee;
    }

.btn-secondary-glow {
    background: transparent;
    border: 2px solid #e879f9;
    color: #e879f9;
}

    .btn-secondary-glow:hover {
        background: #e879f9;
        color: #fff;
    }

/* Circular Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: #ff6200;
        transform: scale(1.2);
        box-shadow: 0 0 10px #ff6200;
        color: #0f172a;
    }

/* Mobile and Landscape Fixes */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        padding-top: 110px;
        / min-height: calc(100vh - 60px);
        padding-bottom: 40px;
    }

        .hero h1 {
            font-size: 2.2rem;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1rem;
            max-width: 90%;
        }

    .btn-glow {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .soundbar {
        height: 80px;
        gap: 5px;
    }

    .bar {
        width: 8px;
    }

    @keyframes soundbar {
        0%, 100% {
            height: 8px;
        }

        50% {
            height: 50px;
        }
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 60px);
        padding: 90px 0;
    }

        .hero h1 {
            font-size: 1.6rem;
        }

        .hero p {
            font-size: 1.1rem;
        }

    .btn-glow {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .social-icons {
        margin-bottom: 20px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .soundbar {
        height: 100px;
        gap: 6px;
        justify-content: center;
        margin: 4px 0;
        margin-bottom: 20px;
        padding-left: 10px;
    }

    .bar {
        width: 11px;
        border-radius: 4px;
    }

    @keyframes soundbar {
        0%, 100% {
            height: 10px;
        }

        50% {
            height: 60px;
        }
    }
}

@media (max-width: 740px) {
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: calc(100vh - 80px);
        padding: 60px 0;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 15px;
    }

    .soundbar {
        height: 80px;
        gap: 5px;
        justify-content: center;
        margin: 4px 0;
        margin-bottom: 15px;
        padding-left: 10px;
    }

    .bar {
        width: 10px;
        border-radius: 4px;
    }

    @keyframes soundbar {
        0%, 100% {
            height: 10px;
        }

        50% {
            height: 60px;
        }
    }
}

/* ------------------------------------ */
/* Services Section */
/* ------------------------------------ */

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(125, 211, 252, 0.15) 0%, transparent 50%);
        animation: pulse 10s ease-in-out infinite;
        z-index: 0;
    }

@keyframes pulse {

    0%, 100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.3;
    }
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.services-header {
    margin-bottom: 3rem;
    text-align: center;
}

    .services-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        margin-bottom: 0.5rem;
    }

.services-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #a5b4fc;
    max-width: 600px;
    margin: 0 auto;
}

.services-spiral {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spiral-path {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cpath d='M150,150 m-120,0 a120,120 0 1,1 240,0 a120,120 0 1,1 -240,0 a90,90 0 1,0 180,0 a90,90 0 1,0 -180,0 a60,60 0 1,1 120,0 a60,60 0 1,1 -120,0' fill='none' stroke='%237dd3fc' stroke-opacity='0.3' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: rotate-spiral 20s linear infinite;
}

@keyframes rotate-spiral {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-node {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: rotate(var(--node-position)) translate(120px) rotate(calc(-1 * var(--node-position)));
}

.node-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7dd3fc, #e879f9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .node-icon .fas {
        font-size: 1.4rem;
        color: #0f172a;
    }

.service-node:hover .node-icon {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(232, 121, 249, 0.5);
}

.node-tooltip {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 41, 59, 0.9);
    border-radius: 15px;
    padding: 12px;
    width: 180px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.service-node:hover .node-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.node-tooltip h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #7dd3fc;
    margin-bottom: 5px;
}

.node-tooltip p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.4;
    margin: 0;
}

.info-cards {
    margin: 0 auto;
    padding: 0 15px;
}

.info-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 20px;
    padding: 20px;
    margin: 10px 0px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

    .info-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(125, 211, 252, 0.3);
        border-color: #7dd3fc;
    }

    .info-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: #7dd3fc;
        margin-bottom: 10px;
    }

    .info-card p {
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem;
        color: #d1d5db;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-spiral {
        width: 250px;
        height: 250px;
        margin-bottom: 1.5rem;
    }

    .service-node {
        width: 50px;
        height: 50px;
        transform: rotate(var(--node-position)) translate(100px) rotate(calc(-1 * var(--node-position)));
    }

    .node-icon .fas {
        font-size: 1.2rem;
    }

    .node-tooltip {
        width: 160px;
        padding: 10px;
    }

        .node-tooltip h3 {
            font-size: 0.95rem;
        }

        .node-tooltip p {
            font-size: 0.8rem;
        }

    .info-card {
        padding: 15px;
        margin: 15px 0px;
    }

        .info-card h3 {
            font-size: 1.2rem;
        }

        .info-card p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .services-section {
        padding: 30px 0;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .services-spiral {
        width: 200px;
        height: 200px;
        margin-bottom: 1rem;
    }

    .service-node {
        width: 45px;
        height: 45px;
        transform: rotate(var(--node-position)) translate(80px) rotate(calc(-1 * var(--node-position)));
    }

    .node-icon .fas {
        font-size: 1.1rem;
    }

    .node-tooltip {
        width: 140px;
        padding: 8px;
    }

        .node-tooltip h3 {
            font-size: 0.9rem;
        }

        .node-tooltip p {
            font-size: 0.75rem;
        }

    .info-card {
        padding: 12px;
    }

        .info-card h3 {
            font-size: 1.1rem;
        }

        .info-card p {
            font-size: 0.9rem;
        }
}

/* ------------------------------------ */
/* tools Section */
/* ------------------------------------ */

.tools {
    background: linear-gradient(135deg, #1a1a1a, #0a1c3b);
    color: white;
    padding: 50px 0;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .tools::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(232, 121, 249, 0.15) 0%, transparent 70%);
        animation: glowFade 5s infinite ease-in-out;
    }

.calculator-card {
    background: rgba(10, 28, 59, 0.95);
    border-radius: 12px;
    border: 2px solid #e879f9;
    box-shadow: 0 0 20px rgba(232, 121, 249, 0.4);
    position: relative;
    overflow: hidden;
}

    .calculator-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(232, 121, 249, 0.6);
    }

/* Neon Ripple Effect */
.ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    box-shadow: 0 0 0 0 rgba(232, 121, 249, 0.5);
    animation: ripplePulse 4s infinite ease-in-out;
    pointer-events: none;
}

@keyframes ripplePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 121, 249, 0.5);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(232, 121, 249, 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(232, 121, 249, 0);
    }
}

@keyframes glowFade {

    0%, 100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.3;
    }
}

.calculator-card h2 {
    font-size: 2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.form-control {
    background: #1a1a1a;
    border: 2px solid #e879f9;
    color: white;
    border-radius: 8px;
    padding: 10px;
    font-size: 1.1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

    .form-control::-webkit-inner-spin-button,
    .form-control::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .form-control:focus {
        background: #1a1a1a;
        border-color: #22d3ee;
        box-shadow: 0 0 8px #22d3ee;
        color: white;
    }

.form-label {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.result-box {
    background: #1a1a1a;
    border: 2px dashed #22d3ee;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #e879f9;
    line-height: 1.5;
}

.btn-glow {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-glow::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: 0.4s;
    }

    .btn-glow:hover::before {
        left: 100%;
    }

    .btn-glow:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(232, 121, 249, 0.5);
    }

.btn-primary-glow {
    background: #e879f9;
    border: 2px solid #e879f9;
    color: #1a1a1a;
}

    .btn-primary-glow:hover {
        background: transparent;
        color: #e879f9;
    }

@media (max-width: 768px) {
    .tools {
        padding: 30px 0;
    }

    .calculator-card {
        padding: 15px;
    }

        .calculator-card h2 {
            font-size: 1.6rem;
        }

    .form-control {
        font-size: 0.95rem;
        padding: 8px;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .result-box {
        font-size: 0.95rem;
    }

    .btn-glow {
        font-size: 0.95rem;
        padding: 8px 20px;
    }
}

@media (max-width: 440px) {

    .btn-glow {
        font-size: 0.73rem;
        padding: 8px 20px;
    }
}


/* ------------------------------------ */
/* featres Section */
/* ------------------------------------ */

.features {
    background: #0f172a;
    color: white;
    padding: 80px 0;
}

    .features h2 {
        font-size: 2.5rem;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }

.feature-card {
    background: #1e1b4b;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .feature-card i {
        color: #22d3ee;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
        opacity: 0.9;
    }

@media (max-width: 768px) {
    .features {
        padding: 50px 0;
    }

        .features h2 {
            font-size: 2rem;
        }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}


/* ------------------------------------ */
/* call to action Section */

.cta-section {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(125, 211, 252, 0.1) 0%, transparent 50%);
        z-index: 0;
    }

.cta-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .cta-content h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        margin-bottom: 1rem;
    }

.cta-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
    word-break: break-word;
}

.cta-get-in-touch {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #7dd3fc;
    margin-bottom: 1rem;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7dd3fc, #e879f9);
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    /* Pill-shaped, non-boxy */
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-cta:hover {
        color: white;
        background: linear-gradient(135deg, #7dd3fc, #c026d3);
        box-shadow: 0 6px 12px rgba(125, 211, 252, 0.3);
    }

    .whatsapp-cta .fab {
        font-size: 1.3rem;
    }

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-content {
        padding: 0 10px;
    }

        .cta-content h2 {
            font-size: 2rem;
        }

    .cta-tagline {
        font-size: 1rem;
    }

    .cta-get-in-touch {
        font-size: 1.3rem;
    }

    .whatsapp-cta {
        font-size: 1rem;
        padding: 10px 20px;
    }

        .whatsapp-cta .fab {
            font-size: 1.2rem;
        }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 30px 0;
    }

    .cta-content {
        padding: 0 5px;
    }

        .cta-content h2 {
            font-size: 1.8rem;
        }

    .cta-tagline {
        font-size: 0.9rem;
    }

    .cta-get-in-touch {
        font-size: 1.2rem;
    }

    .whatsapp-cta {
        padding: 8px 16px;
        font-size: 0.95rem;
    }

        .whatsapp-cta .fab {
            font-size: 1.1rem;
        }
}

/* ------------------------------------ */
/* Testimonials Section */
/* ------------------------------------ */

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
    padding: 60px 0;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(125, 211, 252, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(232, 121, 249, 0.1) 0%, transparent 50%);
        z-index: 0;
    }

    .testimonials h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }

.testimonials-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #a5b4fc;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonials-ticker-wrapper {
    width: 100%;
    max-width: 100%;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonials-ticker {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    animation: ticker-scroll 25s linear infinite;
    will-change: transform;
    padding: 0 15px;
}

    .testimonials-ticker:hover {
        animation-play-state: paused;
    }

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-bubble {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 50px;
    padding: 25px;
    width: 320px;
    max-width: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

    .testimonial-bubble:hover {
        transform: scale(1.02);
        background: rgba(30, 41, 59, 0.8);
        box-shadow: 0 8px 16px rgba(125, 211, 252, 0.2);
    }

.bubble-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7dd3fc, #e879f9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0f172a;
    transition: transform 0.3s ease;
}

.testimonial-bubble:hover .bubble-icon {
    transform: rotate(10deg);
}

.bubble-content {
    flex: 1;
}

.quote {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #d1d5db;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
    word-break: break-word;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #7dd3fc;
    font-weight: 600;
}

.role {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
        min-height: auto;
        max-height: none;
    }

        .testimonials h2 {
            font-size: 2rem;
        }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-ticker {
        gap: 15px;
        padding: 0 10px;
    }

    .testimonial-bubble {
        width: 280px;
        padding: 20px;
    }

    .bubble-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .quote {
        font-size: 1rem;
    }

    .author {
        font-size: 0.95rem;
    }

    .role {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 30px 0;
    }

    .testimonials-ticker {
        padding: 0 5px;
    }

    .testimonial-bubble {
        width: 260px;
        padding: 15px;
        gap: 12px;
    }

    .bubble-icon {
        width: 30px;
        height: 30px;
    }

    .quote {
        font-size: 0.95rem;
    }
}


/* ------------------------------------ */
/* About Section */
/* ------------------------------------ */
.about-section {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at bottom right, rgba(232, 121, 249, 0.15) 0%, transparent 70%);
        animation: glowPulse 8s infinite ease-in-out;
    }

@keyframes glowPulse {

    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.1;
    }
}

.about-section h2 {
    font-size: 2.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.about-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.value-card {
    background: rgba(10, 28, 59, 0.95);
    border-radius: 10px;
    border: 1px solid #e879f9;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(232, 121, 249, 0.5);
    }

    .value-card i {
        color: #22d3ee;
    }

    .value-card h3 {
        font-size: 1.5rem;
        color: #e879f9;
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 1rem;
        color: #94a3b8;
        margin: 0;
    }

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

        .about-section h2 {
            font-size: 2rem;
        }

    .about-subtitle {
        font-size: 1rem;
    }

    .value-card {
        padding: 15px;
    }

        .value-card h3 {
            font-size: 1.3rem;
        }

        .value-card p {
            font-size: 0.9rem;
        }

        .value-card i {
            font-size: 1.5rem;
        }
}

/* ------------------------------------ */
/* FAQ Section */
/* ------------------------------------ */


/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(125, 211, 252, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(232, 121, 249, 0.15) 0%, transparent 50%);
        z-index: 0;
    }

.faq-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

    .faq-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        margin-bottom: 0.5rem;
    }

.faq-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #a5b4fc;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* One tile per row */
    gap: 20px;
    max-width: 800px;
    /* Centered, narrower for single column */
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.faq-tile {
    overflow: hidden;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 20px;
    /* Rounded, non-boxy */
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .faq-tile:hover {
        transform: rotate(2deg);
        /* Subtle tilt */
        box-shadow: 0 8px 16px rgba(125, 211, 252, 0.3);
        border-color: #7dd3fc;
    }

    .faq-tile.active {
        border-color: #e879f9;
        transform: none;
        /* Reset tilt when active */
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.question-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #7dd3fc;
    word-break: break-word;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #7dd3fc, #e879f9);
    border-radius: 50%;
    color: #0f172a;
}

    .toggle-icon .fas {
        font-size: 1rem;
    }

    .toggle-icon .fa-minus {
        display: none;
    }

.faq-tile.active .toggle-icon .fa-plus {
    display: none;
}

.faq-tile.active .toggle-icon .fa-minus {
    display: inline;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #7dd3fc, #e879f9);
    border-radius: 0 0 20px 20px;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-tile.active .faq-answer {
    max-height: 150px;
    /* Adjust based on content */
    padding: 15px 20px;
}

.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-grid {
        gap: 15px;
        padding: 0 10px;
    }

    .faq-question {
        padding: 15px;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .toggle-icon {
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-grid {
        padding: 0 5px;
    }

    .faq-question {
        padding: 12px;
    }

    .question-text {
        font-size: 1rem;
    }

    .toggle-icon {
        width: 25px;
        height: 25px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-tile.active .faq-answer {
        padding: 12px 15px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ------------------------------------ */
/* Footer Section */
/* ------------------------------------ */


/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .footer-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(125, 211, 252, 0.15) 0%, transparent 50%);
        animation: pulse 10s ease-in-out infinite;
        z-index: 0;
    }

@keyframes pulse {

    0%, 100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.3;
    }
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    text-align: center;
    margin-bottom: 25px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo {
    max-height: 100px;
    width: auto;
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {

    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(125, 211, 252, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.8));
    }
}

.footer-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #a5b4fc;
    margin-top: 10px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #a5b4fc;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}



.footer-nav a:hover {
    color: #fefefe;
}


.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7dd3fc, #e879f9);
    border-radius: 50%;
    color: #0f172a;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .social-icon:hover {
        transform: scale(1.15);
        box-shadow: 0 4px 8px rgba(232, 121, 249, 0.5);
    }

    .social-icon .fab {
        font-size: 1.2rem;
    }

.footer-contact {
    text-align: center;
    margin-bottom: 20px;
}

.contact-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #e879f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-link:hover {
        color: #7dd3fc;
    }

.footer-copyright {
    text-align: center;
    position: relative;
}

.copyright-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #7dd3fc, transparent);
    transform: translateX(-50%);
    border-radius: 2px;
}

.footer-copyright p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #d1d5db;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 20px;
    }

    .footer-logo {
        max-height: 45px;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-nav {
        gap: 15px;
        margin-bottom: 15px;
    }

    .footer-link {
        font-size: 0.95rem;
    }

    .footer-social {
        gap: 10px;
        margin-bottom: 15px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

        .social-icon .fab {
            font-size: 1.1rem;
        }

    .contact-link {
        font-size: 0.95rem;
    }

    .footer-copyright p {
        font-size: 0.85rem;
        margin-top: 15px;
    }

    .copyright-divider {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0 15px;
    }

    .footer-logo {
        max-height: 70px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-nav {
        gap: 10px;
        flex-direction: column;
        margin-bottom: 10px;
    }

    .footer-link {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-social {
        gap: 8px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

        .social-icon .fab {
            font-size: 1rem;
        }

    .contact-link {
        font-size: 0.9rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .copyright-divider {
        width: 100px;
    }
}
