/* Table of Contents
---------------------------------
1.  Global Styles & Variables
2.  Keyframe Animations
3.  General Layout & Helpers
4.  Header & Navigation
5.  Footer
6.  Buttons & Forms
7.  Hero Section
8.  Page Header (for subpages)
9.  Services Section
10. About Section
11. Process Section
12. Interactive Dashboard Section
13. Testimonials Section
14. CTA Section
15. Contact Page Specifics
16. Legal Pages Specifics
17. Interactive Elements (Cursor, Chat, Popup)
18. Responsive Design (Media Queries)
--------------------------------- */

/* 1. Global Styles & Variables
--------------------------------- */
:root {
    --primary-color: #00a99d;
    --secondary-color: #ff6b6b;
    --accent-color: #feca57;
    --dark-blue: #0d1b2a;
    --medium-blue: #1b263b;
    --light-blue: #415a77;
    --text-color: #e0e1dd;
    --text-muted: #a9a9a9;
    --bg-color: #0d1b2a;
    --card-bg: #1b263b;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Teko', sans-serif;
    --header-height: 80px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 1px;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. Keyframe Animations
--------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes background-pan {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 169, 157, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 169, 157, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 169, 157, 0);
    }
}

@keyframes bar-anim {
    from {
        width: 0;
    }

    to {
        width: var(--bar-value);
    }
}

/* 3. General Layout & Helpers
--------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.fade-in-up {
    transform: translateY(30px);
}

.animate-in.fade-in-right {
    transform: translateX(50px);
}

.animate-in.fade-in-left {
    transform: translateX(-50px);
}

.animate-in.zoom-in {
    transform: scale(0.95);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* 4. Header & Navigation
--------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    padding: 15px 0;
}

.header.scrolled {
    background-color: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: invert(1);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle,
.nav-close {
    display: none;
}

/* 5. Footer
--------------------------------- */
.footer {
    background-color: var(--dark-blue);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--medium-blue);
    color: var(--text-color);
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-contact ul li a {
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* 6. Buttons & Forms
--------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s;
    border: 2px solid transparent;
    font-family: var(--font-primary);
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transition: transform 0.4s ease;
    transform-origin: bottom;
    transform: scaleY(1);
}

.btn:hover::before {
    transform: scaleY(0);
}

.btn-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--light-blue);
    color: #fff;
}

.btn-secondary::before {
    background-color: var(--light-blue);
}

.btn-secondary:hover {
    color: var(--light-blue);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 1px solid var(--light-blue);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background-color: var(--card-bg);
    padding: 0 5px;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e0e1dd' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    background-color: var(--medium-blue);
    color: var(--text-color);
}

textarea {
    resize: vertical;
}

/* 7. Hero Section
--------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--primary-color);
}

.shape1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
}

.shape2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -250px;
    background: var(--secondary-color);
}

.shape3 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 15%;
    background: var(--accent-color);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content .highlight-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    perspective: 1000px;
}

.hero-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: rotateY(15deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: rotateY(0deg);
}


/* 8. Page Header (for subpages)
--------------------------------- */
.page-header-section {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    text-align: center;
}

.page-header-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 10px auto 30px;
    max-width: 600px;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs span {
    color: #fff;
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 10px;
}

/* 9. Services Section
--------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: transparent;
    perspective: 1000px;
    min-height: 320px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.service-card-back {
    transform: rotateY(180deg);
    align-items: flex-start;
    text-align: left;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
}

.service-card-back ul {
    list-style: none;
    width: 100%;
    margin-bottom: 20px;
}

.service-card-back li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-card-back li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 10px;
}


/* 10. About Section
--------------------------------- */
.about-section {
    background-color: var(--dark-blue);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: translateX(0);
}

.about-content p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
}

.stat-item p {
    margin: 0;
    color: var(--text-color);
}

/* 11. Process Section
--------------------------------- */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--medium-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
    text-align: left;
}

.process-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    background-color: var(--primary-color);
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    box-shadow: 0 0 0 5px var(--bg-color);
}

.process-step:nth-child(odd) .process-icon {
    right: -30px;
}

.process-step:nth-child(even) .process-icon {
    left: -30px;
}

.process-content {
    padding: 20px 30px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
}

.process-content h3 {
    margin-bottom: 10px;
}


/* 12. Interactive Dashboard Section
--------------------------------- */
.dashboard-section {
    background-color: var(--dark-blue);
}

.dashboard-mockup {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-pills {
    display: flex;
    gap: 10px;
}

.dashboard-pills span,
.dashboard-pills i {
    background-color: var(--medium-blue);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.dashboard-pills span {
    background-color: var(--primary-color);
    color: #fff;
    animation: pulse 2s infinite;
}

.dashboard-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dashboard-metric {
    background: var(--medium-blue);
    padding: 20px;
    border-radius: var(--border-radius);
}

.dashboard-metric label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dashboard-metric .value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.change {
    font-size: 1rem;
    margin-left: 5px;
}

.positive {
    color: #2ecc71;
}

.negative {
    color: #e74c3c;
}

.dashboard-chart {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.chart-container {
    display: flex;
    gap: 10px;
    height: 150px;
    align-items: flex-end;
    margin-top: 10px;
}

.bar {
    flex-grow: 1;
    background-color: var(--bar-color);
    border-radius: 5px 5px 0 0;
    position: relative;
    animation: bar-anim 1s ease-out forwards;
}

.bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 13. Testimonials Section
--------------------------------- */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.5rem;
}

.testimonial-author span {
    color: var(--text-muted);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.slider-btn {
    background-color: var(--medium-blue);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: var(--primary-color);
}

/* 14. CTA Section
--------------------------------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: background-pan 10s ease infinite;
    background-size: 200% 200%;
}

.cta-container {
    text-align: center;
}

.cta-container h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    border-color: #fff;
    color: #fff;
}

.cta-section .btn-primary:hover {
    color: var(--primary-color);
    background-color: #fff;
}

.cta-section .btn-primary::before {
    background-color: #fff;
}

/* 15. Contact Page Specifics
--------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: var(--border-radius);
}

.contact-info-panel h3 {
    margin-bottom: 20px;
}

.contact-info-panel p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-details-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-details-list h4 {
    font-size: 1.2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 16. Legal Pages Specifics
--------------------------------- */
.legal-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* 17. Interactive Elements (Cursor, Chat, Popup)
--------------------------------- */
#cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 9999;
    opacity: 0.5;
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
}

body:hover #cursor-glow {
    opacity: 0.5;
}

a:hover~#cursor-glow,
button:hover~#cursor-glow {
    width: 50px;
    height: 50px;
    opacity: 0.2;
}

.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2.5s infinite;
}

.chat-tooltip {
    position: absolute;
    bottom: 15px;
    right: 75px;
    background: var(--medium-blue);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.live-chat-widget:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.popup.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* 18. Responsive Design
--------------------------------- */
@media (max-width: 992px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--medium-blue);
        flex-direction: column;
        padding: 50px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease-in-out;
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .nav-toggle,
    .nav-close {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: #fff;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .dashboard-body {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    #cursor-glow {
        display: none;
    }

    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 15px;
    }

    .process-step:nth-child(even) {
        left: 0;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        text-align: left;
    }

    .process-icon {
        left: 0;
    }

    .process-step:nth-child(odd) .process-icon,
    .process-step:nth-child(even) .process-icon {
        left: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .header-actions .btn {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        position: static;
        margin-top: 20px;
        transform: none;
        justify-content: center;
        gap: 20px;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }
}