/*
* Root Variables and Base Styles
*/

:root {
    --primary-color: #22C55E;
    --primary-color-dark: #16A34A;
    --secondary-color: #8B5CF6;
    --secondary-color-dark: #7C3AED;
    --bg-dark: #171717;
    --bg-light: #262626;
    --text-light: #F9FAFB;
    --text-medium: #D1D5DB;
    --text-dark: #9CA3AF;
    --border-color: #374151;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --header-height: 80px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-medium);
    font-family: var(--font-secondary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}


/*
* Preloader
*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

.preloader-logo img {
    width: 100px;
    filter: invert(1);
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-dots {
    display: flex;
    margin-top: 20px;
}

.preloader-dots .dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
    animation: dot-bounce 1.4s infinite ease-in-out both;
}

.preloader-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.preloader-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes dot-bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}


/*
* Header
*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 60px;
    filter: invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    font-family: var(--font-primary);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-close {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}


/*
* Hero Section
*/

.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2), transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}


.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visuals {
    position: relative;
    perspective: 1500px;
}

.hero-3d-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: rotate-3d 30s linear infinite;
}

@keyframes rotate-3d {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.hero-3d-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    padding: 20px;
    background-color: rgba(31, 41, 55, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-3d-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.hero-3d-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.hero-3d-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.hero-3d-card.card-1 {
    transform: rotateY(0deg) translateZ(220px);
}

.hero-3d-card.card-2 {
    transform: rotateY(90deg) translateZ(220px);
}

.hero-3d-card.card-3 {
    transform: rotateY(180deg) translateZ(220px);
}

.hero-3d-card.card-4 {
    transform: rotateY(270deg) translateZ(220px);
}


/*
* Services Section
*/

.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-dark);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1), transparent 30%);
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scale(1);
}

.service-icon,
.service-title,
.service-description,
.service-link {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-15deg);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-dark);
    margin-bottom: 24px;
}

.service-link {
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--text-light);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/*
* About Section
*/

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.about-image {
    width: 100%;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=600') no-repeat center center/cover;
    border-radius: var(--border-radius);
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: rotateY(0) rotateX(0);
}

.about-stats {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.about-content p {
    margin-bottom: 24px;
}

.about-checklist {
    margin-bottom: 30px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.about-checklist i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/*
* Industry Section
*/
.industry-section {
    background-color: var(--bg-light);
}

.industry-tabs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    background-color: var(--bg-dark);
    padding: 10px;
    border-radius: var(--border-radius);
}

.tab-link {
    flex: 1;
    padding: 15px 20px;
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.tab-link:hover {
    background-color: var(--border-color);
    color: var(--text-light);
}

.tab-link.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.tab-content {
    display: none;
    padding: 30px;
    background-color: var(--bg-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tab-content ul {
    margin-top: 20px;
    padding-left: 20px;
}

.tab-content li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.tab-content li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
* Testimonials Section
*/
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15rem;
    color: rgba(31, 41, 55, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    height: 300px;
    /* Adjust as needed */
}

.testimonial-card {
    position: absolute;
    width: 100%;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-dark);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-btn.prev-btn {
    transform: translateX(-80px);
}

.slider-btn.next-btn {
    transform: translateX(80px);
}

/*
* Sample Report Section
*/
.sample-report-section {
    background-color: var(--bg-light);
}

.report-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-visual {
    perspective: 1500px;
}

.report-card {
    background-color: var(--bg-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    transform: rotateY(15deg);
    transition: transform 0.5s ease;
}

.report-visual:hover .report-card {
    transform: rotateY(0);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.report-header h4 {
    font-size: 1.2rem;
}

.report-header span {
    background-color: var(--bg-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.report-metric {
    margin-bottom: 25px;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.metric-info h5 {
    font-weight: 500;
}

.metric-value {
    font-weight: 600;
    font-family: var(--font-primary);
}

.metric-change {
    font-size: 0.9rem;
    margin-left: 8px;
}

.metric-change.positive {
    color: var(--secondary-color);
}

.metric-change.negative {
    color: #EF4444;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.metric-bar .bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    animation: fill-bar 1.5s 0.5s ease-out forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.bar-1 .bar-fill {
    width: 85%;
}

.bar-2 .bar-fill {
    width: 60%;
}

.bar-3 .bar-fill {
    width: 90%;
}

.bar-4 .bar-fill {
    width: 40%;
}

@keyframes fill-bar {
    to {
        transform: scaleX(1);
    }
}

/*
* CTA Section
*/
.cta-section {
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1200') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-dark);
}


/*
* Footer
*/
.footer {
    background-color: var(--bg-light);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    filter: invert(1);
    margin-bottom: 20px;
}

.footer-about-text {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    color: var(--text-dark);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: var(--text-dark);
}

.footer-links ul a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-dark);
}

.footer-contact a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    color: var(--text-dark);
}

/*
* Live Chat Widget
*/
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.5);
    z-index: 99;
    animation: chat-pulse 2s infinite;
}

@keyframes chat-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(79, 70, 229, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

/*
* Animation on Scroll
*/
.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.fade-in-up {
    transform: translateY(50px);
}

.animate-in.fade-in-left {
    transform: translateX(-50px);
}

.animate-in.fade-in-right {
    transform: translateX(50px);
}

.animate-in.visible {
    opacity: 1;
    transform: translate(0, 0);
}


/*
* Legal & Contact Pages
*/
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9)), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1200') no-repeat center center/cover;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumbs a,
.breadcrumbs span {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumbs span {
    color: var(--text-light);
}

.breadcrumbs i {
    margin: 0 10px;
}


.main-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.page-content p,
.page-content ul li {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.page-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* Contact Page Specific */
.contact-page-section {
    padding-bottom: 100px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-info-panel p {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-details-list i {
    width: 50px;
    height: 50px;
    background-color: var(--bg-dark);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.contact-details-list h4 {
    font-size: 1.1rem;
}

.contact-details-list a,
.contact-details-list p {
    color: var(--text-dark);
    margin: 0;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-medium);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}

/* Success Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: 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 ease, visibility 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 450px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.popup h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup p {
    color: var(--text-dark);
    margin-bottom: 30px;
}


/*
* Responsive Design
*/

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-container,
    .about-container,
    .report-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visuals {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-text,
    .hero-buttons {
        margin: 0 auto 30px;
        justify-content: center;
    }

    .about-image-wrapper {
        margin: 0 auto 60px;
    }

    .about-content {
        text-align: left;
    }

    .report-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .report-visual:hover .report-card,
    .report-card {
        transform: rotateY(0);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .slider-btn.prev-btn {
        transform: translateX(-40px);
    }

    .slider-btn.next-btn {
        transform: translateX(40px);
    }

}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-3d-wrapper {
        width: 350px;
        height: 350px;
    }

    .hero-3d-card.card-1,
    .hero-3d-card.card-2,
    .hero-3d-card.card-3,
    .hero-3d-card.card-4 {
        transform: rotateY(0) translateZ(0);
        position: relative;
        margin: 10px auto;
        width: 80%;
    }

    .hero-3d-wrapper {
        animation: none;
    }

    /* Disable rotation on mobile */

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
    }

    .header-actions .contactButton {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        margin: 0 auto 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 30px;
    }

    .slider-controls {
        display: none;
    }

    /* Hide arrows on mobile, rely on swipe (if implemented) */
    .testimonial-slider {
        height: auto;
    }

    .testimonial-card {
        position: relative;
        opacity: 1;
        transform: scale(1);
        margin-bottom: 20px;
    }

    .testimonial-card:not(:first-child) {
        display: none;
        /* simple show/hide without slider */
    }

    .industry-tabs {
        flex-wrap: wrap;
    }

    .tab-link {
        flex-basis: 45%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-stats {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        justify-content: space-around;
    }

    .about-image {
        height: 300px;
    }

    .tab-link {
        flex-basis: 100%;
    }
}