/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito Sans", sans-serif;
    --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #031119;
    /* Background color for the entire website, including individual sections */
    --default-color: rgba(255, 255, 255, 0.8);
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #e0e9f2;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #26AE48;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #1b262c;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: rgba(255, 255, 255, 0.8);
    /* The default color of the main navmenu links */
    --nav-hover-color: #26AE48;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #29343a;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #29343a;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: rgba(255, 255, 255, 0.8);
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #26AE48;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #0d1d26;
    --surface-color: #16262f;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .header-container {
    background: var(--surface-color);
    border-radius: 50px;
    padding: 5px 25px 5px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
    z-index: 1;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title div {
    color: var(--heading-color);
    margin: 0;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}




/* superhero section */
body {
    background-color: #01111d;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    /* Prevents horizontal scroll */
}

/* --- SUPERHERO SECTION --- */
.superhero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    /* Changed from fixed height to min-height */
    padding: 20px;
}

.superhero-content {
    width: 100%;
    max-width: 2500px;
    min-height: 85vh;
    margin: 0 auto;
    background-image: linear-gradient(180deg, #15803D, transparent);
    border-radius: 2rem;
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Ensures content is centered */
    padding: 40px 20px;
}

.containerY {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* width: 100%;
    height: 100%; */
    text-align: center;
    /* Critical for text alignment */
    /* padding: 0 20px; */
    /* Prevents text touching edges */
}

/* --- BADGE --- */
.superhero-badge {
    background-color: rgba(255, 255, 255, .1);
    padding: 8px 16px 8px 10px;
    border-radius: 2rem;
    display: inline-flex;
    /* Changed to inline-flex to fit content */
    justify-content: center;
    align-items: center;
    gap: .5rem;
    font-size: .925rem;
    backdrop-filter: blur(5px);
    margin-bottom: 1.5rem;
}

.superhero-badge .badge {
    background-color: #FFF600;
    border-radius: 2rem;
    color: #000000;
    padding: 6px 10px;
    font-weight: 600;
}

/* --- TITLE --- */
.superhero-title {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    text-align: center;
    line-height: 1.1;
    gap: 15px;
    width: 100%;
    max-width: 1000px;
    /* Limits width for readability */
}

.superhero-title span:first-child {
    font-size: clamp(1rem, 4vw, 4rem);
    /* font-size: clamp(1.2rem, 4vw, 2.5rem); */
    font-weight: 400;
    opacity: .9;
    color: #e0e0e0;
}

.superhero-title span:last-child {
    /* font-size: clamp(1rem, 5vw, 4rem); */
    font-size: clamp(1rem, 2.2vw, 2.1rem);
    font-weight: 700;
    color: #ffffff89;
}

/* --- DESCRIPTION --- */
.superhero-description {
    max-width: 45rem;
    text-align: center;
    margin-top: 2rem;
    font-weight: 400;
    font-size: 1.125rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* --- CTA BUTTON --- */
.superhero-cta-button {
    display: inline-block;
    border: 0;
    outline: 0;
    padding: 12px 32px;
    border-radius: 2rem;
    background-color: #FFF600;
    font-family: 'Poppins', sans-serif;
    margin-top: 2rem;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.superhero-cta-button:hover {
    transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

/* 1. LAPTOP & DESKTOP (Max 1366px) */
@media (max-width: 1366px) {
    .superhero-content {
        min-height: 80vh;
    }

    .superhero-title span:last-child {
        font-size: 4rem;
    }
}

/* 2. TABLET (Max 1024px) */
@media (max-width: 1024px) {
    .superhero-section {
        padding: 15px;
        min-height: auto;
    }

    .superhero-content {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .superhero-title span:first-child {
        font-size: 1.5rem;
    }

    .superhero-title span:last-child {
        font-size: 3.2rem;
    }

    .superhero-description {
        font-size: 1rem;
        max-width: 90%;
    }
}

/* 3. MOBILE (Max 768px) */
@media (max-width: 768px) {
    .superhero-section {
        padding: 10px;
    }

    .superhero-content {
        border-radius: 1.5rem;
        padding: 50px 15px;
        min-height: 85vh;
    }

    .superhero-badge {
        font-size: 0.8rem;
    }

    .superhero-title {
        gap: 10px;
        margin-top: 1rem;
    }

    .superhero-title span:first-child {
        font-size: 1.1rem;
    }

    .superhero-title span:last-child {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .superhero-description {
        margin-top: 1.5rem;
        font-size: 0.95rem;
    }

    .superhero-cta-button {
        padding: 14px 28px;
        width: 100%;
        max-width: 250px;
    }
}

/* --- Responsive Breakpoints --- */

/* Tablet and up (min-width: 768px) */
@media (min-width: 768px) {
    .feature-row {
        flex-direction: row;
        /* Switch to horizontal layout */
        gap: 60px;
    }

    .feat-image-col,
    .feat-text-col {
        width: 50%;
        /* Split 50/50 */
    }

    /* Alternating Layout for even rows (Row 2) */
    .feature-row.reverse-layout {
        flex-direction: row-reverse;
    }

    .feat-text-col h2 {
        font-size: 2rem;
    }
}

/* Laptop/Desktop and up (min-width: 1024px) */
@media (min-width: 1024px) {
    .feature-row {
        gap: 100px;
    }

    .feat-text-col h2 {
        font-size: 2.25rem;
    }

    /* Adjust image container for larger screens */
    .feat-image-col {
        padding: 40px;
    }

    .screenshot-img {
        transform: translate(25px, 25px);
    }
}



/* What Is the DTOUR Analytics Dashboard? */
/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #01111d;
    --accent: #00C853;
    /* Neon Green */
    --accent-glow: rgba(0, 200, 83, 0.4);
    --card-bg: rgba(20, 30, 40, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #b0bec5;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- SECTION LAYOUT --- */
.analytics-section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 80%, #052620 0%, var(--bg-dark) 60%);
    perspective: 1000px;
    /* Essential for 3D effect */
    overflow: hidden;
}

.containers {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- LEFT: TEXT CONTENT --- */
.content-wrapper {
    flex: 1;
    z-index: 2;
    animation: slideInUp 1s ease-out forwards;
    opacity: 0;
}

.eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(0, 200, 83, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.content-wrapper h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Tags for Audience */
.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag span {
    color: var(--accent);
}

/* --- RIGHT: DASHBOARD VISUAL (Pure CSS) --- */
.visual-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* The Main 3D Card */
.dashboard-ui {
    width: 500px;
    height: 380px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s ease;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto 1fr 1fr;
    gap: 15px;
    padding: 20px;
    animation: floatUI 6s ease-in-out infinite;
}

.dashboard-ui:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

/* UI Header */
.ui-header {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.ui-title {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.live-badge {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4d4d;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blink {
    width: 6px;
    height: 6px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: blink 1s infinite;
}

/* Widget 1: Line Chart (Main) */
.widget-main {
    grid-row: span 2;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.widget-label {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.widget-value {
    position: absolute;
    top: 35px;
    left: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.css-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 100px;
    width: 100%;
}

.bar {
    flex: 1;
    background: var(--accent);
    opacity: 0.8;
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

/* Widget 2: Donut Chart */
.widget-side-1 {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0% 75%, rgba(255, 255, 255, 0.1) 75% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.donut::before {
    content: '75%';
    position: absolute;
    width: 50px;
    height: 50px;
    background: #1a2228;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Widget 3: Stats List */
.widget-side-2 {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}

.stat-row:last-child {
    border: none;
}

.stat-name {
    color: var(--text-muted);
}

.stat-num {
    color: var(--accent);
    font-weight: 700;
}

/* --- ANIMATIONS --- */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUI {

    0%,
    100% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    }

    50% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(-20px);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* =========================================
           RESPONSIVE DESIGN (PROPERLY FIXED)
           ========================================= */

/* 1. TABLET (Max 1024px) */
@media (max-width: 1024px) {
    .analytics-section {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
    }

    .containers {
        flex-direction: column;
        gap: 60px;
    }

    .content-wrapper h2 {
        font-size: 2.5rem;
    }

    .audience-tags {
        justify-content: center;
    }

    /* Flatten the 3D effect for readability */
    .dashboard-ui {
        width: 100%;
        max-width: 600px;
        transform: none !important;
        /* Remove tilt */
        animation: floatFlat 6s ease-in-out infinite;
    }

    @keyframes floatFlat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }
}

/* 2. MOBILE (Max 768px) */
@media (max-width: 768px) {
    .content-wrapper h2 {
        font-size: 2rem;
    }

    /* Dashboard Stack for Mobile */
    .dashboard-ui {
        width: 100%;
        /* Fix width issue */
        height: auto;
        grid-template-columns: 1fr;
        /* Single Column */
        grid-template-rows: auto;
        gap: 15px;
    }

    .ui-header {
        grid-column: span 1;
    }

    .widget-main {
        grid-row: auto;
        height: 200px;
        /* Give graph enough height */
    }

    .widget-side-1 {
        flex-direction: row;
        /* Horizontal layout for donut on mobile */
        justify-content: space-between;
        padding: 20px;
        min-height: 100px;
    }

    .widget-side-2 {
        padding: 20px;
        gap: 15px;
    }
}

/* end What Is the DTOUR Analytics Dashboard? */


/* Key Benefits for Tourism Authorities & Policy Makers */
/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #01111d;
    --accent: #00C853;
    /* Neon Green */
    --accent-glow: rgba(0, 200, 83, 0.2);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #b0bec5;
    --radius: 20px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- SECTION LAYOUT --- */
.authority-section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Subtle world map or data network hint in background */
    background: radial-gradient(circle at 50% 10%, #052620 0%, var(--bg-dark) 60%);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* --- HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeDown 1s ease-out forwards;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- GRID LAYOUT --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- CARD STYLE --- */
.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 200, 83, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Icon */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

/* Titles */
.benefit-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sub-text {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 25px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

/* List Styling */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.card-list li::before {
    content: "▹";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* --- ANIMATIONS --- */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
           RESPONSIVE DESIGN
           ========================================= */

/* 1. TABLET (Max 1024px) */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns */
    }

    /* Last card spans full width for balance */
    .benefit-card:nth-child(3) {
        grid-column: span 2;
    }
}

/* 2. MOBILE (Max 768px) */
@media (max-width: 768px) {
    .authority-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        /* 1 Column Stack */
        gap: 25px;
    }

    .benefit-card:nth-child(3) {
        grid-column: span 1;
        /* Reset span */
    }

    .benefit-card {
        padding: 30px 20px;
    }
}

/* end Key Benefits for Tourism Authorities & Policy Makers */


/* Key Benefits for Accommodation Providers */
/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #01111d;
    --accent: #00C853;
    /* Neon Green */
    --accent-glow: rgba(0, 200, 83, 0.2);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #b0bec5;
    --radius: 20px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- SECTION LAYOUT --- */
.provider-section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Subtle geometric background */
    background: radial-gradient(circle at 80% 20%, #052620 0%, var(--bg-dark) 60%);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* --- HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeDown 1s ease-out forwards;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
}

/* --- GRID LAYOUT --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- CARD STYLE --- */
.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 200, 83, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Icon */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 12px;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Titles */
.benefit-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sub-text {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 0.95rem;
    color: #b0bec5;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* List Styling */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    /* Pushes list to bottom */
}

.card-list li {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.card-list li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* --- ANIMATIONS --- */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
           RESPONSIVE DESIGN
           ========================================= */

/* 1. TABLET (Max 1024px) */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns */
    }

    /* Last card spans full width for balance */
    .benefit-card:nth-child(3) {
        grid-column: span 2;
    }
}

/* 2. MOBILE (Max 768px) */
@media (max-width: 768px) {
    .provider-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 10px;
        border-radius: 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        /* 1 Column Stack */
        gap: 25px;
    }

    .benefit-card:nth-child(3) {
        grid-column: span 1;
        /* Reset span */
    }

    .benefit-card {
        padding: 30px 20px;
    }
}

/* end Key Benefits for Accommodation Providers */




/* Key Benefits for Travel Operators & Agents */
/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #01111d;
    --accent: #00C853;
    /* Neon Green */
    --accent-glow: rgba(0, 200, 83, 0.2);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #b0bec5;
    --radius: 24px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- SECTION LAYOUT --- */
.operator-section {
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Subtle topographic/map-like background pattern */
    background-image: radial-gradient(circle at 20% 80%, rgba(0, 200, 83, 0.05) 0%, transparent 40%);
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* --- HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeDown 1s ease-out forwards;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* --- GRID LAYOUT --- */
.operator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Equal Columns */
    gap: 40px;
}

/* --- CARD STYLE --- */
.op-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.op-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 83, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* Icon Container */
.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
    animation: pulseGreen 2s infinite;
}

.op-card:nth-child(2) .icon-box {
    animation-delay: 1s;
    /* Offset pulse for second card */
}

/* Typography */
.op-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.sub-tag {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.op-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* List Styling */
.op-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 25px;
}

.op-list li {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.op-list li::before {
    content: "➜";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1rem;
    transition: transform 0.3s;
}

.op-card:hover li::before {
    transform: translateX(5px);
}

/* --- ANIMATIONS --- */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGreen {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(0, 200, 83, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

/* =========================================
           RESPONSIVE DESIGN
           ========================================= */

/* 1. TABLET (Max 1024px) */
@media (max-width: 1024px) {
    .operator-grid {
        gap: 20px;
        /* Tighter gap on tablet */
    }

    .op-card {
        padding: 40px 30px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* 2. MOBILE (Max 768px) */
@media (max-width: 768px) {
    .operator-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .operator-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 30px;
    }

    .op-card {
        padding: 35px 25px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

/* end Key Benefits for Travel Operators & Agents */


/* Core Capabilities of the DTOUR Analytics Dashboard */
/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #01111d;
    --accent: #00C853;
    /* Neon Green */
    --accent-glow: rgba(0, 200, 83, 0.2);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #b0bec5;
    --radius: 20px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- SECTION LAYOUT --- */
.capabilities-section {
    padding: 100px 20px;
    min-height: 100vh;
    /* Subtle tech grid background */
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 200, 83, 0.03) 0%, transparent 40%),
        linear-gradient(var(--bg-dark), var(--bg-dark));
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* --- HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeDown 1s ease-out forwards;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

/* --- GRID 1: CORE CAPABILITIES --- */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.cap-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.cap-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 83, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(0, 200, 83, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.cap-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.cap-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* --- SECTION 2: CLOUD BASED (Split Layout) --- */
.cloud-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 200, 83, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.4s forwards;
}

.cloud-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cloud-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #fff;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "✦";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* --- SECTION 3: ECOSYSTEM (Centered) --- */
.ecosystem-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.6s forwards;
}

.ecosystem-container h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.eco-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.eco-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.eco-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.05);
}

.eco-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

/* --- ANIMATIONS --- */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
           RESPONSIVE DESIGN
           ========================================= */

/* 1. LAPTOP (Standard) - Rules applied above */

/* 2. TABLET (Max 1024px) */
@media (max-width: 1024px) {
    .cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Make the 5th card centered or span 2 */
    .cap-card:nth-child(5) {
        grid-column: span 2;
    }

    .cloud-wrapper {
        padding: 40px;
        gap: 40px;
    }

    .cloud-content h3 {
        font-size: 1.8rem;
    }
}

/* 3. MOBILE (Max 768px) */
@media (max-width: 768px) {
    .capabilities-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Stack Capabilities Grid */
    .cap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cap-card:nth-child(5) {
        grid-column: span 1;
    }

    /* Stack Cloud Section */
    .cloud-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .ecosystem-container h3 {
        font-size: 1.8rem;
    }

    .eco-grid {
        flex-direction: column;
        gap: 15px;
    }

    .eco-item {
        justify-content: center;
    }
}

/* end Core Capabilities of the DTOUR Analytics Dashboard */


























/* FAQs */
/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #01111d;
    --card-bg: rgba(255, 255, 255, 0.03);
    --accent-green: #00C853;
    --accent-hover: #00e676;
    --text-gray: #b0bec5;
    --border-radius: 16px;
    --faq-active-bg: rgba(0, 200, 83, 0.05);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- SECTION LAYOUT --- */
.faq-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    min-height: 80vh;
    /* Slightly shorter since fewer questions */
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* --- HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* --- ACCORDION ITEM --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.faq-item:hover {
    border-color: rgba(0, 200, 83, 0.3);
}

.faq-item.active {
    background-color: var(--faq-active-bg);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Question Button */
.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-green);
}

/* Icon */
.faq-question .icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    /* Rotates + to X */
}

/* Answer Content */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer-content {
    padding: 0 25px 25px 25px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Allows content to show */
}

/* --- ANIMATIONS --- */
.animate-fade-down {
    animation: fadeDown 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
}

/* End FAQs */

/* Ready to Power Smarter Tourism Decisions? */
/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #01111d;
    color: #fff;
    line-height: 1.6;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

:root {
    --bg-dark: #01111d;
    --accent: #00C853;
    /* Primary Green */
    --accent-dark: #00963f;
    --text-light: #e0f2f1;
    --radius: 24px;
}

/* --- SECTION LAYOUT --- */
.final-cta-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* --- FLOATING ISLAND CARD --- */
.cta-island {
    position: relative;
    background: linear-gradient(135deg, #022b22 0%, #001510 100%);
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: var(--radius);
    padding: 80px 40px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 200, 83, 0.1);
    overflow: hidden;
}

/* --- TYPOGRAPHY --- */
.cta-content {
    position: relative;
    z-index: 5;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #fff;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-content .sub-text {
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
    display: block;
    /* Ensures spacing works */
}

/* --- PULSE BUTTON --- */
.btn-wrapper {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

.btn-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.3);
    white-space: normal;
    text-align: center;
}

.arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
    font-size: 1.4rem;
    line-height: 1;
}

.btn-pulse:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-pulse:hover .arrow {
    transform: translateX(5px);
}

/* Pulse Animation Ring */
.btn-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--accent);
    z-index: -1;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* --- BACKGROUND RINGS --- */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 700px;
    height: 700px;
    animation: spinRight 20s linear infinite;
    border-color: rgba(0, 200, 83, 0.1);
}

.ring-2 {
    width: 900px;
    height: 900px;
    animation: spinLeft 25s linear infinite;
}

@keyframes spinRight {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spinLeft {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* --- FLOATING ANIMATION --- */
.animate-float {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet */
@media (max-width: 1024px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 20px;
    }

    .cta-island {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .btn-pulse {
        width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
        flex-direction: column;
        gap: 1px;
    }

    .arrow {
        margin: 0;
        transform: rotate(90deg);
    }

    .btn-pulse:hover .arrow {
        transform: translateY(5px) rotate(90deg);
    }
}

/* end Ready to Power Smarter Tourism Decisions? */