﻿/*--------------------------------------------------------------
# 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;
    right: 20px;
    bottom: 20px;
    z-index: 996;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7dd3fc);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

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

    .back-to-top:hover {
        background: linear-gradient(135deg, #7dd3fc, #4f46e5);
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(79, 70, 229, 0.5);
    }

        .back-to-top:hover i {
            transform: translateY(-2px);
        }

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

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

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

    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.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: linear-gradient(135deg, #0f172a, #1e3a8a);
    border-bottom: 1px solid rgba(79, 70, 229, 0.3);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo img {
    max-height: 50px;
    filter: drop-shadow(0 0 5px rgba(79, 70, 229, 0.5));
    transition: transform 0.4s ease, filter 0.4s ease;
}

    .logo img:hover {
        transform: rotate(5deg);
        filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.7));
    }

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

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

    .nav-menu li {
        margin: 0 20px;
        position: relative;
    }

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

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #4f46e5, #7dd3fc);
        box-shadow: 0 0 5px rgba(125, 211, 252, 0.7);
        transition: width 0.3s ease;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #7dd3fc, #4f46e5);
        transition: width 0.3s ease 0.1s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

.mobile-nav-toggle {
    display: none;
    font-size: 28px;
    color: #7dd3fc;
    cursor: pointer;
    transition: color 0.4s ease, filter 0.4s ease;
    transform-origin: center;
    line-height: 1;
    vertical-align: middle;
    transform: translateY(-50%);
}

    .mobile-nav-toggle:hover {
        color: #ffffff;
        transform: translateY(-50%) scale(1.1);
        filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.7));
        transition: color 0.4s ease, filter 0.4s ease, transform 0.4s ease;
    }

    .mobile-nav-toggle.bi-x {
        transform: translateY(-50%);
    }

@media (max-width: 968px) {
    #header {
        padding: 10px 0;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1e293b;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 70px 0 20px;
        border-top: 1px solid rgba(79, 70, 229, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        opacity: 0;
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

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

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

    .nav-link {
        font-size: 20px;
        padding: 15px 30px;
        color: #a5b4fc;
    }

        .nav-link:hover,
        .nav-link.active {
            color: #7dd3fc;
        }

        .nav-link::before,
        .nav-link::after {
            bottom: 5px;
        }

        .nav-link:hover::before,
        .nav-link:hover::after {
            width: 100%;
        }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

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

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

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

    .nav-link {
        font-size: 18px;
        padding: 12px 25px;
    }

    .mobile-nav-toggle {
        font-size: 24px;
    }
}

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

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

    .nav-link {
        font-size: 16px;
    }

    .mobile-nav-toggle {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    overflow: hidden;
}

.hero-content {
    max-width: 500px;
}

.business-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
}

.business-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #a5b4fc;
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease-out;
}

.toggle-container {
    max-width: 700px;
}

.toggle-buttons {
    background: #1e293b;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
}

.toggle-label {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
    text-align: center;
}

.toggle-indicator {
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #7dd3fc);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#toggle-explore:checked ~ .toggle-buttons .toggle-indicator {
    transform: translateX(0);
}

#toggle-contact:checked ~ .toggle-buttons .toggle-indicator {
    transform: translateX(100%);
}

#toggle-explore:checked ~ .toggle-buttons .toggle-label[data-toggle="explore"],
#toggle-contact:checked ~ .toggle-buttons .toggle-label[data-toggle="contact"] {
    color: #ffffff;
}

#toggle-explore:checked ~ .toggle-buttons .toggle-label[data-toggle="contact"],
#toggle-contact:checked ~ .toggle-buttons .toggle-label[data-toggle="explore"] {
    color: #94a3b8;
}

.tech-visual {
    width: 400px;
    height: 400px;

}

.circle {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: floatCircle1 8s infinite ease-in-out;
}

.circle-2 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 40%;
    animation: floatCircle2 10s infinite ease-in-out;
}

.cube-container {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%) perspective(1200px);
}

.cube {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: cubeDive 6s infinite ease-in-out;
}

.cube-face {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4f46e5, #7dd3fc);
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.front {
    transform: translateZ(75px);
}

.back {
    transform: translateZ(-75px) rotateY(180deg);
}

.left {
    transform: translateX(-75px) rotateY(-90deg);
}

.right {
    transform: translateX(75px) rotateY(90deg);
}

.top {
    transform: translateY(-75px) rotateX(90deg);
}

.bottom {
    transform: translateY(75px) rotateX(-90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCircle1 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(0, 0);
    }

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

@keyframes cubeDive {
    0% {
        transform: rotateX(0deg) rotateY(0deg) translateZ(0);
    }

    50% {
        transform: rotateX(360deg) rotateY(360deg) translateZ(20px);
    }

    100% {
        transform: rotateX(720deg) rotateY(720deg) translateZ(0);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        text-align: left;
        justify-content: center;
        margin: auto;
        margin-left: 20px;
        max-width: 600px;
    }

    .business-title {
        font-size: 2.5rem;
    }

    .business-tagline {
        font-size: 1.25rem;
    }

    .toggle-container {
        margin: 0 auto;
        max-width: 500px;
    }

    .tech-visual {
        width: 300px;
        height: 300px;
        margin-top: 70px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
    }

    .cube-container {
        width: 120px;
        height: 120px;
        transform: translate(-50%, -50%) perspective(1000px);
    }

    .cube-face {
        width: 120px;
        height: 120px;
    }

    .front {
        transform: translateZ(60px);
    }

    .back {
        transform: translateZ(-60px) rotateY(180deg);
    }

    .left {
        transform: translateX(-60px) rotateY(-90deg);
    }

    .right {
        transform: translateX(60px) rotateY(90deg);
    }

    .top {
        transform: translateY(-60px) rotateX(90deg);
    }

    .bottom {
        transform: translateY(60px) rotateX(-90deg);
    }
}

@media (max-width: 930px) {
    .hero-content {
        text-align: center;
        margin: auto;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .business-title {
        font-size: 2rem;
    }

    .business-tagline {
        font-size: 1.125rem;
    }

    .toggle-label {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .tech-visual {
        width: 250px;
        height: 250px;
    }

    .cube-container {
        width: 100px;
        height: 100px;
        transform: translate(-50%, -50%) perspective(800px);
    }

    .cube-face {
        width: 100px;
        height: 100px;
    }

    .front {
        transform: translateZ(50px);
    }

    .back {
        transform: translateZ(-50px) rotateY(180deg);
    }

    .left {
        transform: translateX(-50px) rotateY(-90deg);
    }

    .right {
        transform: translateX(50px) rotateY(90deg);
    }

    .top {
        transform: translateY(-50px) rotateX(90deg);
    }

    .bottom {
        transform: translateY(50px) rotateX(-90deg);
    }
}

@media (max-width: 576px) {
    .business-title {
        font-size: 1.75rem;
    }

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

    .toggle-label {
        padding: 0.6rem 0.80rem;
        font-size: 0.75rem;
    }

    .toggle-buttons {
        border-radius: 16px;
    }

    .toggle-indicator {
        width: 50%;
        height: 100%;
        border-radius: 16px;
    }

    #toggle-explore:checked ~ .toggle-buttons .toggle-indicator {
        transform: translateX(0);
    }

    #toggle-contact:checked ~ .toggle-buttons .toggle-indicator {
        transform: translateX(100%);
    }

    .tech-visual {
        width: 200px;
        height: 200px;
        margin-top: 3rem;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
    }

    .cube-container {
        width: 80px;
        height: 80px;
        top: 60%;
        transform: translate(-50%, -50%) perspective(600px);
        margin-top: 2rem;
    }

    .cube-face {
        width: 80px;
        height: 80px;
    }

    .front {
        transform: translateZ(40px);
    }

    .back {
        transform: translateZ(-40px) rotateY(180deg);
    }

    .left {
        transform: translateX(-40px) rotateY(-90deg);
    }

    .right {
        transform: translateX(40px) rotateY(90deg);
    }

    .top {
        transform: translateY(-40px) rotateX(90deg);
    }

    .bottom {
        transform: translateY(40px) rotateX(-90deg);
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        padding: 60px 20px 20px;
        flex-wrap: wrap;
    }

    .hero-content {
        max-width: 80%;
        margin: 0 auto;
        padding: 0;
    }

    .business-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .business-tagline {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .toggle-container {
        max-width: 300px;
    }

    .toggle-label {
        padding: 0.5rem 0.7rem;
        font-size: 0.7rem;
    }

    .tech-visual {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        overflow: hidden;
    }

    .circle-1 {
        width: 100px;
        height: 100px;
    }

    .circle-2 {
        width: 80px;
        height: 80px;
    }

    .cube-container {
        width: 60px;
        height: 60px;
        top: 50%;
        transform: translate(-50%, -50%) perspective(500px);
    }

    .cube-face {
        width: 60px;
        height: 60px;
    }

    .front {
        transform: translateZ(30px);
    }

    .back {
        transform: translateZ(-30px) rotateY(180deg);
    }

    .left {
        transform: translateX(-30px) rotateY(-90deg);
    }

    .right {
        transform: translateX(30px) rotateY(90deg);
    }

    .top {
        transform: translateY(-30px) rotateX(90deg);
    }

    .bottom {
        transform: translateY(30px) rotateX(-90deg);
    }
}

/* ------------------------------------ */
/* datainsights Section */
/* ------------------------------------ */

.datainsights-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    color: #ffffff;
}

.datainsights-title {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.datainsights-subtitle {
    font-size: 1.2rem;
    color: #a5b4fc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    border: none;
    background-color: #1e293b;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.form-label {
    color: #ffffff !important;
}

.custom-file-upload {
    display: flex;
    align-items: center;
}

.file-upload-btn {
    background: linear-gradient(90deg, #4f46e5, #7dd3fc);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .file-upload-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }

    .file-upload-btn:hover::before {
        width: 200px;
        height: 200px;
    }

    .file-upload-btn:hover {
        color: White;
        box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    }

    .file-upload-btn:active::before {
        background: rgba(255, 255, 255, 0.5);
        width: 300px;
        height: 300px;
        transition: width 0.2s ease, height 0.2s ease;
    }

.chart-btn {
    background-color: #334155;
    color: #94a3b8;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .chart-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }

    .chart-btn:hover::before {
        width: 200px;
        height: 200px;
    }

    .chart-btn:hover {
        background: linear-gradient(90deg, #4f46e5, #7dd3fc);
        color: #ffffff;
        box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    }

    .chart-btn.active {
        background: linear-gradient(90deg, #4f46e5, #7dd3fc);
        color: #ffffff;
        box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
    }

    .chart-btn:active::before {
        background: rgba(255, 255, 255, 0.5);
        width: 200px;
        height: 200px;
        transition: width 0.2s ease, height 0.2s ease;
    }

.btn-primary {
    background: linear-gradient(90deg, #4f46e5, #7dd3fc);
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }

    .btn-primary:hover::before {
        width: 200px;
        height: 200px;
    }

    .btn-primary:hover {
        box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    }

    .btn-primary:active::before {
        background: rgba(255, 255, 255, 0.5);
        width: 300px;
        height: 300px;
        transition: width 0.2s ease, height 0.2s ease;
    }

.btn-outline-secondary {
    border-color: #94a3b8;
    color: #94a3b8;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .btn-outline-secondary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }

    .btn-outline-secondary:hover::before {
        width: 200px;
        height: 200px;
    }

    .btn-outline-secondary:hover {
        background: linear-gradient(90deg, #4f46e5, #7dd3fc);
        color: #ffffff;
        box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    }

    .btn-outline-secondary:active::before {
        background: rgba(255, 255, 255, 0.5);
        width: 200px;
        height: 200px;
        transition: width 0.2s ease, height 0.2s ease;
    }

#dataChart {
    max-height: 400px;
    width: 100% !important;
    background-color: #1e293b;
}

@media (max-width: 768px) {
    .datainsights-title {
        font-size: 2rem;
    }

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

    .card-body {
        padding: 1.5rem;
    }

    .btn-group {
        justify-content: center;
    }
}

/* New styles for download buttons */
#downloadPNG, #downloadPDF {
    font-size: 0.9rem; /* Match other buttons */
}

/* ------------------------------------ */
/* About Section */
/* ------------------------------------ */
.about-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}


.about-content {
    text-align: left;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}


.about-content {
    text-align: left;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-btn {
    background: linear-gradient(90deg, #4f46e5, #7dd3fc);
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
}

    .about-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }

    .about-btn:hover::before {
        width: 200px;
        height: 200px;
    }

    .about-btn:hover {
        box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    }

    .about-btn:active::before {
        background: rgba(255, 255, 255, 0.5);
        width: 300px;
        height: 300px;
        transition: width 0.2s ease, height 0.2s ease;
    }

.about-visual {
    width: 100%;
    height: 400px;
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 20px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

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

    .about-text {
        font-size: 0.9rem;
    }

    .about-visual {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-content {
        text-align: center;
    }

    .about-btn {
        margin: 0 auto;
    }
}

box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
}

.about-btn:active::before {
    background: rgba(255, 255, 255, 0.5);
    width: 300px;
    height: 300px;
    transition: width 0.2s ease, height 0.2s ease;
}

.about-visual {
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

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

    .about-text {
        font-size: 0.9rem;
    }

    .about-visual {
        height: 300px;
    }
}

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

.services-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}



.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.service-card {
    background-color: #1e293b;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    color: #7dd3fc;
}

.service-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-text {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }

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

    .service-title {
        font-size: 1.3rem;
    }

    .service-text {
        font-size: 0.9rem;
    }
}

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

    .service-card {
        margin-bottom: 1.5rem;
    }
}


/* ------------------------------------ */
/* Testimonials Section */
/* ------------------------------------ */
.testimonials-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    overflow: hidden;
}



.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.testimonials-carousel {
    display: flex;
    gap: 30px;
    animation: slide 25s infinite linear;
    width: max-content;
}


.testimonial-card {
    background: linear-gradient(135deg, #1e293b, #2d3748);
    padding: 40px 30px;
    border-radius: 16px;
    min-width: 380px;
    max-width: 420px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(79, 70, 229, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .testimonial-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 30px rgba(79, 70, 229, 0.3);
        border-color: rgba(125, 211, 252, 0.5);
    }

        .testimonial-card:hover::before {
            opacity: 1;
        }

.quote {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.author {
    font-size: 1.1rem;
    color: #7dd3fc;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }

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

    .testimonial-card {
        min-width: 340px;
        max-width: 380px;
        padding: 30px 20px;
    }

    .quote {
        font-size: 1.1rem;
    }

    .author {
        font-size: 1rem;
    }
}

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

    .testimonial-card {
        min-width: 300px;
        max-width: 340px;
        padding: 25px 15px;
    }
}



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

.calltoaction-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    color: #ffffff;
}

.container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.calltoaction-title {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.calltoaction-subtitle {
    font-size: 1.2rem;
    color: #a5b4fc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.btn-whatsapp {
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

    .btn-whatsapp::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }

    .btn-whatsapp:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-whatsapp:hover {
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
        transform: scale(1.05);
        color: white;
    }

    .btn-whatsapp:active::before {
        background: rgba(255, 255, 255, 0.5);
        width: 400px;
        height: 400px;
        transition: width 0.2s ease, height 0.2s ease;
    }

    .btn-whatsapp i {
        font-size: 1.4rem;
    }

@media (max-width: 768px) {
    .calltoaction-title {
        font-size: 2rem;
    }

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

    .btn-whatsapp {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

        .btn-whatsapp i {
            font-size: 1.2rem;
        }
}

/* ------------------------------------ */
/* FAQ Section */
/* ------------------------------------ */
.faq-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}



.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.faq-card {
    background: linear-gradient(135deg, #1e293b, #2d3748);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(79, 70, 229, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
        border-color: rgba(125, 211, 252, 0.5);
    }

.faq-header {
    padding: 1.5rem;
}

.faq-question {
    margin: 0;
}

.faq-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .faq-btn:hover {
        color: #7dd3fc;
    }

    .faq-btn.collapsed .faq-icon i {
        transform: rotate(0deg);
    }

    .faq-btn .faq-icon i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
        color: #7dd3fc;
    }

.faq-body {
    padding: 1.5rem;
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
    background: #1e293b;
    border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

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

    .faq-btn {
        font-size: 1.1rem;
    }

    .faq-body {
        font-size: 0.9rem;
    }
}

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

    .faq-card {
        margin-bottom: 0.75rem;
    }
}


/* ------------------------------------ */
/* Footer Section */
/* ------------------------------------ */
.footer-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}


.footer-brand,
.footer-title,
.footer-social,
.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

    .footer-logo:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(79, 70, 229, 0.5));
    }

.footer-text {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.4rem;
    color: #ffffff;
}

.footer-links {
    padding: 0;
}

.footer-link {
    color: #a5b4fc;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .footer-link:hover {
        color: #7dd3fc;
        transform: translateX(5px);
    }

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

.social-icon {
    color: #94a3b8;
    font-size: 1.6rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .social-icon:hover {
        color: #7dd3fc;
        transform: scale(1.2);
    }

.footer-contact {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-size: 0.9rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 150px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

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

    .social-icon {
        font-size: 1.4rem;
    }
}

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

    .footer-brand,
    .footer-title,
    .footer-links,
    .footer-social,
    .footer-contact {
        text-align: center;
    }

    .footer-link:hover {
        transform: none;
    }
}
