/* Establish a basic reset and define key colors/fonts
    You would define your custom fonts here (e.g., @import url('...') or @font-face)
*/

@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');

:root {
    --color-primary: #5f1928; /* A deep, maroon */
    --color-secondary: #e285aa; /* DE87C2 A bright pink/magenta for buttons */
    --color-text-dark: #000;
    --color-text-light: #fff;
    --color-background-light: #f8f8ff; /* Off-white for general background */
    --color-hover: #d33859;
    --color-stars: #FFC107;
    --nav-gradient-start: #e43f63; /* Pink */
    --nav-gradient-end: #722934;   /* Purple */
    --nav-default-color: #333;     /* Default text color for nav links */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Golos Text', sans-serif;
    --even-background: #f9f9feb3;
    --linear-gradient: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    --icon-size: 40px;
    --hover-border-color: #5f1928;
    --gradient-start: #5f1928; /* Light Pink/Purple */
    --gradient-end: #d33859;   /* Deeper Purple */
    --link-color: #5f1928;
    --text-color: #555;
    --heading-color: #222;
    --cta-gradient-start: #5f1928; /* Deeper purple for CTA */
    --cta-gradient-end: #d33859;   /* Pink/Magenta for CTA */
    --pink-rating-color: #d33859;
    --linear-gradient-text: linear-gradient(132.22deg, #722934 10.57%, #722934 73.78%);
    --accent-maroon: #A65074; /* A color close to the button/icon color in the image */
    --light-bg: #fdfdfd;
    --text-dark: #333;
    --text-light: #666;
    --color-black: #000000b8;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
}

/* 1. Header/Navigation Bar Styling
*/
.hero-content span {
font-family: 'Fraunces', serif !important;
}
p.white {
  font-family: 'Figtree', sans-serif !important;
}
.industries-hero-section h1, .hero-section h1, .blog-hero-section h1, .contact-hero-section h1 {
  font-family: 'Fraunces', serif !important;
}

.industries-hero-section p, .hero-section p, .blog-hero-section p, .contact-hero-section p {
 font-family: 'Figtree', sans-serif !important;
}

h3 {
    font-family: var(--font-heading);
}
.animated-underline {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    margin: 20px auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    border-radius: 50px;
    max-width:1300px;
}
.sticky {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    margin: 0px auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    width: 100%;
    border-radius: 0px;
    max-width: none;
    box-shadow:
        /* Layer 1 (Ambient): Wide, soft, and very light */
        0 8px 16px rgba(0, 0, 0, 0.05),
        /* Layer 2 (Key): Closer to the edge, slightly darker for definition */
        0 2px 4px rgba(0, 0, 0, 0.1);
}
nav.nav.dark a {
    color: #000;
}
nav.nav.dark a.active {
    color: var(--color-secondary);
}

.industries {
    margin: 75px 0px 0px 0px;
    text-align:center;
}

.logo {
    height: 60px;
    width: 100%;
    background-image: url(/images/logo-light.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    transition: background-image 0.3s ease;
    position: absolute;
    left: 0px;
    top: 4px;
    z-index: -1;
}
.sticky .logo {
    background-image: url(/images/logo.png);
    left: 7%;
    top: 4px;
}

.nav {
    margin-left: 225px;
}
a.login {
    text-decoration: none;
    color: #6f1e2f;
    font-size:18px;
}
.login {
  margin-right:20px;
}
.event {
    margin-left: 60px;
    margin-right: -100px;
    margin-top: -7px;
}


.logo img {
    height: 40px;
    position: absolute;
    margin-top: -17px;
}

.nav a {
    text-decoration: none;
    color: var(--color-text-light);
    margin-left: 20px;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s;
    font-size:18px;
    text-shadow: 1px 1px 2px rgb(6 6 6 / 50%);
}

.nav a.active {
    color: var(--color-secondary);
}
.nav a:hover {
    color: var(--color-secondary);
}

/* Styling for all CTA buttons
*/
.cta-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    font-family: var(--font-heading);
}




/* 2. Hero Section Styling
*/
.hero-section {
    padding: 120px 5% 50px;
    text-align: center;
    min-height: 100vh;
    margin-top: -100px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-image: linear-gradient(270deg, rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 50%) 100%), url(/images/hero-bg.webp);
    background-position: 0px 15px;
}


section.dashboard-preview.scroll-reveal.fade-up.visible {
    height: 280px;
    margin-top: 40px;
}

h2.scroller {
    text-align: center;
    margin-bottom:25px;
    font-size: 35px;
    font-family: var(--font-heading);
    color: #333;
}

span.black {
    color: #FFF;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    /* This makes sure the text is on top of the background layers */
    position: relative;
    z-index: 2;
}


.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFF;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.hero-content span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 56px;
    line-height: 140%;
    text-align: center;
    background-clip: text;
    color: var(--color-secondary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section.about-us-hero span {
    color: var(--color-secondary);
}
.hero-section.about-us-hero {
    background-image: linear-gradient(270deg, rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 50%) 100%), url(/images/hero-bg.webp);
    margin-top: -95px;
    min-height: 550px;
    background-position: 0px 10px;
}
.hero-section.features-hero {
    background-image: linear-gradient(270deg, rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 50%) 100%), url(/images/hero-bg.webp);
    margin-top: -15px;
    min-height: 550px;
    background-position: 0px 10px;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.6;
    color: #fff;
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-heading);
}


.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 75px;
    margin-top: 60px;
}

.primary-cta {
    /* Set the gradient background */
    background-image: linear-gradient(
        /* Direction: top left to bottom right */
        to bottom right,
        /* Start Color: EC4899 (Pink) */
        #EC4899,
        /* End Color: 6A0DAD (Purple) */
        #6A0DAD
    );

    color: #FFFFFF;

    background-color: transparent;
    transition: transform 0.2s ease;
    width: 200px;
    border-radius: 15px;
    height: 52px;
}

/* Optional: Subtle hover effect */
.primary-cta:hover {
    transform: translateY(-2px); /* Lifts the button slightly */
}

.secondary-cta {
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    border: 3px solid var(--color-secondary) !important;
    color: #fff;
    background: #dbd5d55e !important;
    transition: all 0.3s ease;
    background-origin: border-box;
    max-height: 54px;
    line-height: 13px;
  }

/* 3. Main Content/Dashboard Preview Styling */
.dashboard-preview {
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.laptop-frame {
    max-width: 900px; /* Max width of the image */
    margin: 0 auto;
    /* Add a subtle shadow to make the screen pop */
    overflow: hidden; /* Important to keep the image within the border radius */
}

.laptop-frame img {
    width: 100%;
    display: block;
    /* If your image includes the laptop frame, you can skip the border-radius on the parent div */
    display:none;
}

/* 4. Footer Styling */
footer {
    background-color: var(--color-text-dark); /* Black/Dark Gray background */
    color: var(--color-text-light); /* White text */
    padding: 60px 5% 0; /* Top padding for main content area */
    font-size: 18px;;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider line */
}

.footer-col {
    /* Base style for all columns */
    flex-grow: 1;
    min-width: 150px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.copyright-bar a {
    color: var(--copyright-bar-a);
}

/* Brand/Logo Column Styling */
.brand-col {
    flex-basis: 300px; /* Give the logo column a fixed width/basis */
    min-width: 250px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
    margin-top: -65px;
    max-width:100%;
}

.brand-col p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 25px;
    margin-left:65px;
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation Links */
.footer-nav {
    list-style: none;
    font-family: var(--font-heading);
}

.footer-nav li {
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.footer-nav a:hover {
    color: var(--color-Primary); /* Pink hover color */
}

a.view-more-link.top {
    margin-top: 0px;
    margin-bottom: 20px;
}

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

.social-links a {
    color: var(--color-text-light);
    font-size: 1.2em;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20%;

    /* Using the primary CTA colors for the icon background */
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}


/* Copyright Bar */
.copyright-bar {
    text-align: center;
    padding: 20px 5%;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.5);
}

p.black {
    color: #fff;
}

.cta-mockup-container.scroll-reveal.fade-up.visible {
    display: none;
}




/* Basic reset and font assumption (assuming a modern sans-serif like Arial or a Google Font) */
body {
    font-family: var(--font-heading);
    margin: 0;
    padding-top: 80px;
    background-color: #fff; /* Assuming a white background for the whole page */
}

.event-features-section {
    padding: 60px 150px;
    margin: 0 auto;
    text-align: center;
    background: var(--even-background);
}

/* --- Header Section Styling --- */

.features-header {
    margin-bottom: 50px;
}

.features-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
    background-clip: text;
    border-radius: 50px;
    position: relative;
    color: var(--color-secondary);
}

/* Adding the gradient border appearance */
.features-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px; /* The thickness of the border */
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.features-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
}

.features-intro {
    font-size: 18px;
    color: var(--text-color);
    max-width: 850px;
    margin: 0 auto; /* Center the paragraph text */
    line-height: 1.6;
    font-family: var(--font-heading);
}

/* --- Feature Grid Styling --- */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}
/* Feature Card Styling */
.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow for definition */
    border: 1px solid #eee; /* Light border */
    text-align:center;
}

.feature-card h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.2;
    text-align: left;
    padding-left: 20px;
}
.feature-card p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    padding: 0 15px 25px 15px !important;
    min-height: 140px;
    text-align: left;
    padding-left: 20px;
}
.feature-card.scroll-reveal.fade-up.visible .card-content p {
  min-height: 140px;
  font-family: var(--font-heading);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Icon Wrapper Styling (The square with rounded corners) */
.card-icon-wrapper {
    /* This creates the purple/pink background with the border */
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Using the gradient as the background for the wrapper for the border effect */
    background: var(--color-secondary);
    padding: 30px;
    margin-bottom:20px;
    margin: 15px auto;
}

/* The inner white circle/square */
.card-icon-wrapper::after {
    content: '';
    position: absolute;
    width: calc(100% - 4px); /* Smaller size to create the border effect */
    height: calc(100% - 4px);
    background-color: #fff;
    border-radius: 8px; /* Slightly less rounded than the wrapper */
    z-index: 1;
}

.card-icon {
    /* Styles for the actual icon/unicode character */
    font-size: 24px;
    font-weight: bold;
    color: var(--link-color); /* Purple color for the icon */
    position: relative;
    z-index: 2; /* Ensure the icon is on top of the white background */
}

/* "Learn More" Link Styling */
.learn-more-link {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    transition: color 0.2s;
    background-image: var(--linear-gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    transition: none;
    margin-top:-30px;
    margin-bottom: 30px;
}

.learn-more-link:hover {
    color: #835bd6; /* Slightly darker purple on hover */
}

h2#leadership-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
}

h2#principles-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
    font-family: var(--font-body);
}

h2#final-cta-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
    font-family: var(--font-heading);
}

h2#story-heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
    font-family: var(--font-body);
}

/* --- 1. General Section Container (The Black Background Area) --- */
.industry-solutions {
    /* Ensure the container is visible and has the correct background/text */
    background-color: #f3f4f6;
    color: #ffffff;
    /* Add necessary padding to create space around content */
    padding: 80px 20px;
    font-family: var(--font-heading);
    /* Set minimum height if content is sparse, though usually unnecessary */
    min-height: 400px;
    /* Ensure no unexpected styles from parent elements are interfering */
    box-sizing: border-box;
}

/* --- 2. Header Section (Text Area) --- */
.header-section {
    /* Center the header content horizontally on the page */
    margin: 0 auto 50px;
    /* Limit the width of the content for better readability */
    max-width: 1200px;
    /* Adjust text alignment if needed, usually left is standard */
    text-align: left;
}

.header-section h1 {
    font-size: 3em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
    float: left;
    width: 50%;
}

.header-section p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    color: #000;
    width: 50%;
    float: left;
    font-family: var(--font-heading);
}

/* --- 3. Card Grid Layout (The Three Columns) --- */
.card-grid {
    /* Must use display: flex or display: grid for the column layout */
    display: flex;
    /* Space between the cards */
    gap: 30px;
    /* Center the card group and set maximum width */
    max-width: 1200px;
    margin: 0 auto;
    /* Ensure cards stay on one line on desktop */
    flex-wrap: nowrap;
    /* Distribute extra space if there is any */
    justify-content: space-between;
}

.industry-card {
    flex: 1;
    min-width: 300px;
    /* No background color needed, it inherits the white from the section */
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

/* Image styles remain the same */
.event-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px 0;
}

.card-content h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    /* Dark text for heading */
    color: #000000;
}

.card-content p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
    /* Standard body text color */
    color: #555555;
}

/* The "Learn More" button style (Light background, reddish border/text) */
.card-content button {
    /* Button background is white/light */
    background-color: #FFFFFF;
    /* Text color is a reddish-maroon */
    color: #661b2b;
    /* Border color matches text color */
    border: 1px solid #661b2b;
    padding: 8px 20px; /* Slightly reduced vertical padding to match the visual */
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 20px; /* Highly rounded corners */
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.card-content button:hover {
    /* Optional: Invert colors on hover for a visual pop */
    background-color: #661b2b;
    color: #FFFFFF;
}


/* --- Section Container and Two-Column Layout --- */

.mission-section {
    padding: 0px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-section-content {
    display: flex;
    align-items: center; /* Vertically center the text and image */
    gap: 50px;
    margin-top: 60px;
}

/* Left Column Styling */
.mission-text-content {
    flex: 1; /* Allows the text content to take up equal space */
    padding-right: 20px;
}

/* Right Column Styling */
.mission-image-content {
    flex: 1; /* Allows the image content to take up equal space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-mockup-img {
    /* Make the image responsive and fill its container */
    max-width: 100%;
    height: auto;
    display: block;
}
.mission img {
    width: 400px;
    height: auto;
    display: block;
    border-radius: 30px;
    margin-bottom:50px;
}


img.features-overview {
    margin-bottom: 10px;
}

/* --- Text & Tag Styling --- */

.mission-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50px;
    position: relative;
    color: var(--color-secondary);
}

/* Adding the gradient border appearance (Same as the 'Features Overview' tag) */
.mission-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.mission-text-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
}

.mission-statement {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

/* --- Stats Grid Styling --- */

.stats-grid-2 {
    display: grid;
    /* Two columns with a gap */
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 50px;
    margin-top: 40px;

}
.stats-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    margin-top: 40px;

}

.stat-item {
    /* Each stat item is aligned to the left */
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 18px;;
    font-weight: 500;
    color: var(--text-color);
}



/* --- Section Container and Header --- */

.industries-section {
    padding: 60px 150px;
    margin: 0 auto;
    text-align: center;
    background: var(--even-background);
}

.industries-header {
    margin-bottom: 50px;
}

.industries-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50px;
    position: relative;
    color: var(--color-secondary);
}

/* Gradient border for the tag */
.industries-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.industries-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
}

.industries-intro {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-heading);
}

.stat-icon {
    max-width: 50px;
    float: left;
    margin-right: 20px;
    margin-top: 8px;
}

.stat-icon img{
  max-width:40px;
  filter: grayscale(1);
}

/* --- Section Container and Overall Layout --- */
.hotel-value-section {
    background-color: #FFFFFF;
    padding: 80px 20px;
    font-family: var(--font-heading);
    color: #000000;
}

.hotel-value-content-area {
    /* Replaces .container and .content-wrapper */
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Left Column: Text Content --- */
.hotel-value-text-column {
    flex: 1;
    max-width: 50%;
}

.hotel-value-text-column h2 {
    font-size: 3em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

/* Specific highlight styling */
.engine-highlight-text {
    color: var(--color-primary);
    font-weight: 800;
    position: relative;
    display: inline-block;
}


/* Define the blinking animation */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.main-text-block p {
    font-size: 1.05em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 40px;
}

/* --- Right Column: Image --- */
.hotel-image-column {
    flex: 1;
    max-width: 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-prop-image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Statistics Area CSS --- */
.booking-stats-wrapper {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.stat-item {
    flex-basis: 50%;
}

.percentage-value { /* Replaces .percentage */
    font-size: 2em;
    font-weight: 900;
    color: #000000;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 1.3em;
    line-height: 1.4;
    color: #555555;
}

.testimonials-tag-2 {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 900;
  background-clip: text;
  border-radius: 50px;
  position: relative;
  color: var(--color-secondary);
}
.testimonials-tag-2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: #fff !important;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* --- 1. Section & Header Styling --- */
.faq-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.faq-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.faq-accent-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50px;
    position: relative;
    color: var(--color-secondary);
}
.faq-accent-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 3;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.faq-header p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    font-family: var(--font-body);
}

/* --- 2. FAQ List and Item Styling (The Accordions) --- */
.faq-list-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    /* Soft shadow mimicking the guiding principles cards */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    border: 1px solid #eee; /* Light border */
    overflow: hidden;
}

/* --- 3. Question Button Styling --- */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background-color: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.2s;
    /* Adding the expand/collapse indicator (e.g., a plus sign) */
    position: relative;
    font-family: var(--font-heading);
}

/* Adding the plus/minus icon visual */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #000;
    line-height: 1;
    transition: transform 0.3s;
}

/* You would need JavaScript to toggle an 'active' class on click */
.faq-item.active .faq-question::after {
    content: '-';
    color:#000;
}

/* Optional: Highlight the question when active/hovered */
.faq-question:hover {
    background-color: #fafafa;
}

/* --- 4. Answer Content Styling (Initially Hidden) --- */
.faq-answer {
    /* Initially hide this element, JS will show it on click */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

/* When the item is active, display the content */
.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on expected max content height */
    padding: 0 25px 20px 25px; /* Add padding to the visible answer */
}

.faq-answer p {
    font-size: 1rem;
    color: #fff !important;
    line-height: 1.6;
    margin: 0;
}

/* --- SECTION STYLES --- */
.eb-venue-management-section {
    padding: 60px 0 0 0; /* Adjust padding as needed */
    background-color: #ffffff; /* White background to match the mockup */
    font-family: var(--font-heading); /* Use your site's primary font-family */
}

/* Container to center content and apply max-width */
.eb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex; /* Enables two-column layout */
    align-items: flex-start; /* Aligns content to the top */
    gap: 40px; /* Space between the columns */
}

/* --- CONTENT COLUMN (TEXT) --- */
.eb-content-column {
    flex: 1; /* Takes up available space */
    padding-right: 20px;
}

.eb-main-heading {
    font-size: 38px;
    color: #333333; /* Dark color for contrast */
    margin-bottom: 30px;
    font-weight: bold;
    font-family: var(--font-body);
}

.eb-description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

/* --- BENEFITS LIST --- */
.eb-benefits-list {
    list-style: none; /* Remove default list bullets */
    padding: 0;
    margin: 0 0 30px 0;
}

.eb-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.eb-benefit-number {
    /* Styles for the numbered circle/marker */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Size of the number/circle */
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: #ffffff;
    font-size: 18px;;
    font-weight: bold;
    flex-shrink: 0; /* Prevents the number from shrinking */
    margin-right: 15px;
}

.eb-benefit-text {
    font-size: 18px;;
    line-height: 1.5;
    color: #333333;
    margin: 0; /* Remove default paragraph margin */
    font-family: 'Golos Text';
}

/* Strong tag inside the text for emphasis */
.eb-benefit-text strong {
    font-weight: bold;
    color: var(--color-secondary);
}

.eb-call-to-action {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    margin-top: 20px;
    font-family: var(--font-body);
}

/* --- IMAGE COLUMN --- */
.eb-image-column {
    flex: 1; /* Takes up the other half of the space */
    position: relative;
}

.eb-mockup-image img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Apply a slight shadow for depth, similar to the mockup */
    border-radius: 8px;
}

.trusted-by-thousands {
    padding: 100px 0;
    background: #fff;
}

.industries-header h2 span {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: bold;
}

p.right {
    font-size: 18px;
    font-family: var(--font-heading);
    line-height: 1.6;
}
.features-header-top h1 {
  flex: 1;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary-text-color);
  margin: 0;
}
.features-header-top h1 strong {
    color: var(--color-primary);
}
.industries-icon {
    width: 60px;
}

/* --- HAMBURGER ICON STYLING & DESKTOP HIDE (GLOBAL) --- */

/* Hides the toggle button on desktop/large screens */
.nav-toggle {
    display: none !important;
    position: relative !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

/* Base middle line */
.hamburger {
    display: block !important;
    width: 30px !important;
    height: 3px !important;
    background-color: var(--nav-default-color, #333) !important;
    border-radius: 3px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

/* Top and Bottom lines */
.hamburger::before,
.hamburger::after {
    content: '' !important;
    position: absolute !important;
    width: 100% !important;
    height: 3px !important;
    background-color: var(--nav-default-color, #333) !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
}

/* Line positioning */
.hamburger::before {
    top: -8px !important;
    left: 0 !important;
}
.hamburger::after {
    bottom: -8px !important;
    left: 0 !important;
}

/* X Transformation */
.nav-toggle.active .hamburger {
    background-color: transparent !important;
}
.nav-toggle.active .hamburger::before {
    top: 0 !important;
    transform: rotate(45deg) !important;
}
.nav-toggle.active .hamburger::after {
    bottom: 0 !important;
    transform: rotate(-45deg) !important;
}

/* --- 4. TESTIMONIALS CAROUSEL STYLING --- */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
}
.testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonials-grid::-webkit-scrollbar {
    display: none;
}
.testimonial-card {
    width: 350px;
    height: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 25px 20px;
    margin-right: 20px;
    flex-shrink: 0;
    overflow-y: auto;
}
.testimonial-card .quote {
    max-height: 200px;
    overflow-y: hidden;
}
.modal.active {
    display: flex;
}
/* --- START: GDPR Cookie Banner Styles --- */

.gdpr-cookie-banner {
    /* Positioning & Layout */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    /* Appearance */
    background-color: #f4f7f6; /* Light grey background */
    border-top: 1px solid #e0e4e8; /* Subtle top border */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05); /* Soft shadow on top edge */
    padding: 20px 40px;

    /* Content Alignment */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Z-Index & Transition */
    z-index: 1000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out, transform 0.5s ease-out;
}

.gdpr-cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gdpr-banner-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.gdpr-text-section {
    flex: 1;
    color: #333;
}

.gdpr-heading {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0; /* Adjusted margins */
    color: #1a202c;
}

.gdpr-subtext {
    font-size: 14px;
    line-height: 1.5;
    margin: 0; /* Remove default paragraph margins */
}

.gdpr-link {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.gdpr-link:hover {
    color: #1a4f7f;
    text-decoration: underline;
}

.gdpr-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gdpr-button {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent; /* Base border */
    transition: all 0.2s ease;
}

/* Specific Button Styles */

.gdpr-button.custom-button {
    background-color: transparent;
    border-color: #a0aec0; /* Light grey border */
    color: #4a5568;
}

.gdpr-button.custom-button:hover {
    background-color: #edf2f7;
}

.gdpr-button.reject-button {
    background-color: #e53e3e; /* Red/Negative action */
    border-color: #e53e3e;
    color: #fff;
}

.gdpr-button.reject-button:hover {
    background-color: #c53030;
    border-color: #c53030;
}

.gdpr-button.accept-button {
    background-color: #38a169; /* Green/Positive action */
    border-color: #38a169;
    color: #fff;
}

.gdpr-button.accept-button:hover {
    background-color: #2f855a;
    border-color: #2f855a;
}

main.hero-section.about-us-hero {
    padding-top: 200px;
}
.main-text-block {
    min-height: 400px;
}
.hotel-value-text-column h2 {
    font-size: 3em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    min-height: 215px;
}

/* Chatbot AI */

.cgptcb-body {
    z-index: 2147483000;
    position: fixed;
}

.cgptcb-body .cgptcb-chat-bubble, .cgptcb-body .cgptcb-chat-box-toggle {
    position: fixed;
    bottom: 1rem;
    left: var(--chatbot-position-left, auto);
    right: var(--chatbot-position-right, 1rem);
    transition: transform 0.3s ease;
    box-shadow:
            10px 10px 40px rgba(var(--chatbot-primary-color-rgb), 0.08),
            5px 14px 80px rgba(var(--chatbot-primary-color-rgb), 0.12);
    outline: 1px solid #DBDADE;
}

.cgptcb-body .cgptcb-chat-box-toggle {
    border-radius: 50%;
    text-align: center;
    background-color: var(--chatbot-bg-color, #0099dd);
    color: var(--chatbot-color, #fff);
    cursor: pointer;
    height: 45px;
}

.cgptcb-body .cgptcb-chat-bubble {
    display: flex;
    align-items: stretch;
    justify-content: right;
    overflow: hidden;
    gap: .3rem;
    transform: translateY(calc(100% + 1rem));
    padding: 2px;
    border-radius: 50%;
    box-sizing: border-box;
    margin-left: 16px;
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    background:
            radial-gradient(57.58% 71.02% at 45% 100%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%),
            radial-gradient(73.61% 153.78% at 43.64% -58.9%, rgba(242, 242, 242, 0.33) 0%, rgba(242, 242, 242, 0.00) 100%),
            linear-gradient(180deg, rgba(242, 242, 242, 0.05) 0%, rgba(242, 242, 242, 0.02) 100%);
    background-blend-mode: overlay, soft-light, normal;
}
.cgptcb-body .cgptcb-chat-bubble.left-aligned {
    flex-direction: row-reverse;
    justify-content: left;
    margin-right: 16px;
    margin-left: 0;
}

.cgptcb-body .cgptcb-chat-bubble.visible { transform: translateY(0) }

.cgptcb-body .cgptcb-chat-bubble:hover {
    animation: gentleWobble 2s ease-in-out forwards;
    outline: 2px solid var(--chatbot-toolbar-color, #7367F0);
}

.cgptcb-body .cgptcb-chat-circle {
    aspect-ratio: 1;
    align-self: end;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
}

.cgptcb-body .cgptcb-chat-question {
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    border-radius: 8px;
    display: none;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    cursor: pointer;
    max-width: 300px;
    margin: 0;
    border: none;
    outline: none;
}
.cgptcb-body .cgptcb-chat-bubble.cgptcb-spotlight-shape-rectangle .cgptcb-chat-question {
    padding: 8px;
}

.cgptcb-body .cgptcb-chat-question span {
    all: unset;

    opacity: 0;
    color: #212121;
    visibility: hidden;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.cgptcb-body .cgptcb-chat-circle.cgptcb-icon-size-small,
.cgptcb-body .cgptcb-chat-box-toggle.cgptcb-icon-size-small {
    min-width: 45px;
    width: 45px;
}

.cgptcb-body .cgptcb-chat-circle.cgptcb-icon-size-medium {
    min-width: 75px;
    width: 75px;
}

.cgptcb-body .cgptcb-chat-circle.cgptcb-icon-size-large {
    min-width: 100px;
    width: 100px;
}

/*Increase the size on Hover*/
.cgptcb-body .cgptcb-chat-box-toggle:hover,
.cgptcb-body .cgptcb-chat-box-toggle:active {
    transform: scale(1.1);
}

.cgptcb-body .cgptcb-spotlight-shape-rectangle {
	border-radius: 6px;
}

.cgptcb-body .cgptcb-spotlight-shape-rectangle .cgptcb-chat-circle {
    align-self: end;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    height: unset !important;
}

/* Center the icons inside the buttons */
.cgptcb-body .cgptcb-chat-circle img,
.cgptcb-body .cgptcb-chat-circle video,
.cgptcb-body .cgptcb-chat-circle svg {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    transform: translateZ(0); /* fix image jitter in firefox */
    object-position: center;
    left: 0;
    top: 0;
    border-radius: inherit;
}

.cgptcb-body .cgptcb-chat-box-toggle img,
.cgptcb-body .cgptcb-chat-box-toggle svg {
    width: 18px !important;
    height: 18px !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.cgptcb-body .cgptcb-chat-box-toggle {
    display: none;
}

.cgptcb-body .cgptcb-launcher-icon-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #ff00ff;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    box-shadow: 0 0 1px 0px #ffffff, 0 0 1px 1px #ff00ff, 0 0 1px 1px #00ffff;
    z-index: -999;
    animation-name: glow-animation;
    animation-duration: 7s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.pulse {
    animation: pulse-animation 1.5s infinite;
}

.squiggle {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: draw-path 2s ease-in-out infinite;
}


.cgptcb-body .cgptcb-chat-box-container {
    border: none;
    outline: none;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    left: var(--chatbot-position-left, auto);
    right: var(--chatbot-position-right, 1rem);
    bottom: var(--offset);
    border-radius: var(--cgptcb-chat-box-border-radius);
    background-color: var(--chatbot-bg-color, #0099dd);
    box-shadow: 5px 14px 80px 0 rgba(var(--chatbot-primary-color-rgb), 0.12), 10px 10px 40px 0 rgba(var(--chatbot-primary-color-rgb), 0.08);
}

.cgptcb-body .cgptcb-chat-box-container.overflow-hidden {
    overflow: hidden;
}

.cgptcb-body .cgptcb-chat-box-container > div {
    opacity: 1;
    transition: opacity .2s ease-in;
}

.cgptcb-body .cgptcb-chat-box-container.content-hidden > div {
    visibility: hidden;
    opacity: 0;
}

.cgptcb-body .cgptcb-chat-box-container.cgptcb-icon-size-small {
    --offset: 84px;
}
.cgptcb-body .cgptcb-chat-box-container.cgptcb-icon-size-medium {
    --offset: 110px;
}
.cgptcb-body .cgptcb-chat-box-container.cgptcb-icon-size-large {
    --offset: 140px;
}

.cgptcb-body .cgptcb-chat-box-container[data-chatbottype-window],
.cgptcb-body .cgptcb-chat-box-container[data-chatbottype-compact] {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2147483000;
    opacity: 0;
    visibility: hidden;
    transition: transform 300ms ease;
    transform: translate(-50%, -50%) scale(0.8);
    width: min(95%, 1200px);
    height: 800px;
    max-height: var(--cgptcb-chat-box-height, 100vh);
    max-height: var(--cgptcb-chat-box-height, 100dvh);
    max-width: var(--cgptcb-chat-box-width, 100vw);
}

:root {
    --cgpt-chat-box-container-height: 704px;
    --cgpt-chat-box-header-height: 52px;
}

.cgptcb-body .cgptcb-chat-box-iframe {
    overflow: hidden;
    position: relative;
    border-bottom-left-radius: var(--cgptcb-chat-box-border-radius);
    border-bottom-right-radius: var(--cgptcb-chat-box-border-radius);
    height: calc(100% - var(--cgpt-chat-box-header-height)) !important;
}

.cgptcb-body .cgptcb-chat-box-container.open {
    --top-margin: 1rem;
    height: 100%;
    z-index: 2147483000;
    position: fixed;
    min-height: 80px;
    /* fallback */
    max-height: min(var(--cgptcb-chat-box-height), calc(100vh - var(--offset) - var(--top-margin)));
    max-height: min(var(--cgptcb-chat-box-height), calc(100dvh - var(--offset) - var(--top-margin)));
    width: var(--cgptcb-chat-box-width, 420px) !important;
    transition: all .3s ease-in-out;
}

.cgptcb-body .cgptcb-chat-box-container[data-chatbottype-window].open,
.cgptcb-body .cgptcb-chat-box-container[data-chatbottype-compact].open  {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    width: min(95%, 1200px) !important;
    height: 800px;
    max-height: min(var(--cgptcb-chat-box-height), 100vh);
    max-height: min(var(--cgptcb-chat-box-height), 100dvh);
    max-width: var(--cgptcb-chat-box-width, 100vw);
}


/* responsive css */
@media only screen and (max-width: 600px) {
  .features-header h1, .mission-section h1, .industries-header h1, .testimonials-header h1
 {
    transition-delay: 0.1s;
    font-family: var(--font-heading);
    font-weight: bold !important;
    width: 100% !important;
    float: left;
    padding: 0px;
    font-size: 37px;
    margin-top: -75px;
    margin-bottom: 28px;
  }
  img.mission {
    max-width:100% !important;
  }
    .hero-content span {
        font-size: 36px !important;
    }
    .cgptcb-body .cgptcb-chat-question {
        font-size: 14px;
        line-height: 20px;
    }


    .cgptcb-body .cgptcb-chat-bubble,
    .cgptcb-body .cgptcb-chat-box-toggle {
        left: var(--chatbot-position-left, auto);
        right: var(--chatbot-position-right, 1rem);
        bottom: 1rem;
    }

    .cgptcb-body .cgptcb-chat-box-container.open {
        bottom: 0;
        max-height: 100%;
        max-width: 100%;
        height: 100% !important;
        width: 100% !important;

        .cgptcb-chat-box-header,
        .cgptcb-chat-box-iframe {
            border-radius: 0;
        }
    }

    .cgptcb-body .cgptcb-chat-box-container[data-chatbottype-window].open,
    .cgptcb-body .cgptcb-chat-box-container[data-chatbottype-compact].open  {
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        right: 0;
        bottom: 0;
    }
}

.cgptcb-body .cgptcb-chat-box-container.open .cgptcb-chat-box-header {
    display: flex;
}

.cgptcb-body .cgptcb-chat-box-header {
    background-color: var(
        --chatbot-toolbar-color,
        var(--chatbot-color, #730773)
    ) !important;
    height: var(--cgpt-chat-box-header-height);
    padding: 0 16px;
    display: none;
    justify-content: end;
    align-items: center;
    gap: 5px;
    border-top-left-radius: var(--cgptcb-chat-box-border-radius);
    border-top-right-radius: var(--cgptcb-chat-box-border-radius);
}

.cgptcb-body .cgptcb-chat-box-iframe {
    background-color: var(
            --chatbot-toolbar-color,
            var(--chatbot-color, #730773)
    ) !important;
}

.cgptcb-body .cgptcb-chat-box-action {
    cursor: pointer;
    outline: none;
    border: 0;
    background-color: var(--chatbot-bg-color, #730773) !important;
    color: var(--chatbot-color, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--cgptcb-action-button-border-radius);
    width: 28px;
    height: 28px;
    padding: 0;
    position: relative;
}

.cgptcb-body .cgptcb-chat-box-action > svg {
    width: 18px;
    height: 18px;
}

.cgptcb-body .cgptcb-chat-box-action::after {
    content: attr(data-title);
    position: absolute;
    top: 110%;
    left: -50%;
    transform: translate(-20%, -10%);
    color: #fff;
    background-color: #3b3b3b;
    border-radius: 10px;
    padding: 0.5rem;
    width: max-content;
    max-width: 7rem;
    border: 1px solid #808080;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease-in-out;
    word-break: normal;
}
.cgptcb-body .cgptcb-chat-box-action:hover::after {
    opacity: 1;
    visibility: visible;
}

.cgptcb-chat-box-iframe .cgptcb-chat-box-iframe-load-indicator {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--chatbot-loader-color, #000);
    background-color: var(--chatbot-toolbar-color);
}

.cgptcb-chat-box-iframe .cgptcb-chat-box-iframe-load-indicator svg {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Modal overlay */
.cgptcb-overlay {
    height: 100%;
    width: 100%;
    inset: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

/* Modal is open, overlay is visible */
.cgptcb-chat-box-container.open + .cgptcb-overlay {
    opacity: 1;
    visibility: visible;
    z-index: 2147482999;
}

.cgptcb-no-scroll {
    overflow: hidden;
    height: 100%;
}

@keyframes glow-animation {
    0% {
        opacity: 0;
        box-shadow: 0 0 1px 0px #ffffff, 0 0 1px 1px #ff00ff,
        0 0 1px 1px #00ffff;
    }

    10% {
        opacity: 0.5;
        box-shadow: 0 0 5px 0px #ffffff, 0 0 5px 5px #ff00ff,
        0 0 5px 5px #00ffff;
    }

    20% {
        opacity: 1;
        box-shadow: 0 0 10px 0px #ffffff, 0 0 10px 10px #ff00ff,
        0 0 10px 10px #00ffff;
    }

    30% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    40% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    50% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    60% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    70% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    80% {
        box-shadow: 0 0 10px 0px #ffffff, 0 0 10px 10px #ff00ff,
        0 0 10px 10px #00ffff;
    }

    90% {
        box-shadow: 0 0 5px 0px #ffffff, 0 0 5px 5px #ff00ff,
        0 0 5px 5px #00ffff;
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 1px 0px #ffffff, 0 0 1px 1px #ff00ff,
        0 0 1px 1px #00ffff;
    }
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    25% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

@keyframes draw-path {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes gentleWobble {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
    }
}

/* fullscreen mode is handled in js */

            @media only screen and (max-width: 600px) {
                .cgptcb-body .cgptcb-chat-bubble,
                .cgptcb-body .cgptcb-chat-box-toggle {
                    left: var(--chatbot-position-left, auto);
                    right: var(--chatbot-position-right, 1rem);
                    bottom: 1rem;
                }

                .cgptcb-body .cgptcb-chat-box-container.open {

                    bottom: 0;
                    max-height: 100%;
                    max-width: 100%;
                    height: 100% !important;
                    width: 100% !important;

                    .cgptcb-chat-box-header,
                    .cgptcb-chat-box-iframe {
                        border-radius: 0;
                    }
                }

                .cgptcb-body .cgptcb-chat-box-container[data-chatbottype-window].open {
                    width: 100vw !important;
                    height: 100vh !important;
                    height: 100dvh !important;
                    right: 0;
                    bottom: 0;
                }
            }

/* Chatbot AI End */

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .gdpr-banner-content {
        flex-direction: column; /* Stack content vertically */
        align-items: flex-start;
        gap: 20px;
    }

    .gdpr-actions {
        width: 100%;
        justify-content: stretch;
    }

    .gdpr-button {
        flex-grow: 1; /* Buttons fill the width */
    }

    .gdpr-cookie-banner {
        padding: 20px;
    }
}

/* --- MOBILE MENU STYLING FOR .nav-2 (Max-Width 992px) --- */
@media (max-width: 992px) {
    /* 1. Header Bar Layout (Ensures logo and toggle button are aligned) */
    .header-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #ffffff; /* Assuming white header bar */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 10000;
    }

    /* 2. Menu Container (Hidden State) */
    .nav-2 {
        /* Full screen overlay */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;

        /* Appearance - Adjusted to match your site's burgundy/maroon */
        background-color: var(--color-black); /* Deep burgundy with 95% opacity */
        backdrop-filter: blur(5px);

        /* Centering and layout */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        /* Off-screen/Hidden state */
        transform: translateX(100%);
        visibility: hidden;

        /* Animation */
        transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.35s;
        z-index: 9999; /* Below the header bar/toggle */
    }

    /* 3. Menu Container (Visible State) */
    .nav-2.open {
        transform: translateX(0); /* Slides into view */
        visibility: visible;
    }

    /* 4. Individual Menu Links */
    .nav-2 a {
        /* Styling */
        color: #ffffff; /* White text for contrast on dark burgundy background */
        font-size: 20px; /* Larger font size for mobile tapping */
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 1px;

        /* Spacing */
        padding: 5px 0;
        margin: 2px 0;

        /* Layout */
        display: block;
        width: 80%; /* Ensure links are wide and easy to tap */
        text-align: center;

        /* Hover/Focus effect */
        transition: color 0.2s ease, transform 0.2s ease;
    }

    /* Active/Hover states - Adjusted to a brighter pink/magenta */
    .nav-2 a:hover, .nav-2 a.active {
        color: var(--color-secondary); /* Bright pink/magenta for accent */
        transform: scale(1.05);
    }

    /* Ensure the logo is properly sized on mobile */
    .mobile-logo {
        height: 70px; /* Adjust based on your logo size */
        width: auto;
    }
    .blog-hero-section h1 {
      font-size:36px !important;
      margin-top: 60px !important;
    }
}


.nav-2 { visibility: hidden; transform: translateX(100%); }
.nav-2.open { visibility: visible; transform: translateX(0);}



/* --- MOBILE OVERRIDES (Screens 992px and smaller) --- */
@media (max-width: 992px) {
    .overview-laptop {
      max-width: 100% !important;
      margin-left: 0px !important;
    }
    /* Header & Toggle Positioning */
    .header-bar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
        width: 100% !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        background-color: #fff !important;
        z-index: 10000 !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    }

    /* Ensure Logo is Visible and Positioned */
    .mobile-logo {
        display: block !important;
        max-height: 60px !important;
        position: static !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    /* Force Hamburger to Show and Position */
    .nav-toggle {
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        right: 20px !important;
        z-index: 10001 !important;
        padding: 10px !important;
    }

    /* CRITICAL MENU VISIBILITY & LAYOUT */
    .nav {
        /* Positioning and Hiding */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        transform: translateX(100%) !important;
        visibility: hidden !important;

        /* Appearance and Stacking */
        background-color: var(--color-primary, #1a1a1a) !important;
        z-index: 99999 !important; /* Highest layer */

        /* Layout for links */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;

        transition: transform 0.3s ease-in-out !important, visibility 0.3s ease-in-out !important;
    }

    /* Menu Open State (Toggled by JavaScript) */
    .nav.open {
        transform: translateX(0) !important;
        visibility: visible !important;
        display: flex !important;
    }

    /* Menu Link Styling */
    .nav a {
        padding: 15px 0 !important;
        margin: 10px 0 !important;
        font-size: 15px !important;
        color: var(--text-light, #fff) !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        text-decoration: none !important;
    }
}

/* --- MEDIA QUERIES (for responsiveness) --- */
@media (max-width: 992px) {
    .eb-container {
        flex-direction: column; /* Stacks columns on smaller screens */
        gap: 60px;
    }

    .eb-content-column {
        padding-right: 0;
    }

    .eb-main-heading {
        font-size: 28px;
    }
}

/* --- Responsive CSS --- */
@media (max-width: 992px) {
    .hotel-value-content-area {
        flex-direction: column;
        gap: 40px;
    }

    .hotel-value-text-column,
    .hotel-image-column {
        max-width: 100%;
    }

    .hotel-value-text-column h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 600px) {
  .contact-form-container {
      padding: 45px !important;
  }
  .mission-tag, .features-tag, .industries-tag {
      margin-bottom: 100px !important;
  }
  .container {
    padding: 0px !important;
  }

  .ai-tag {
    font-size:17px !important;
  }
  .platform-tag {
    font-size: 20px !important;
  }
  .form-column {
    padding:0px !important;
  }
  .eb-container {
    padding: 0px !important;
  }
  .contact-hero-section p {
    padding:0px 15px !important;
  }

  .brand-col p {
    margin-left:0px;
    max-width: 90%;
  }
  .footer-logo img {
    max-width:100%;
  }
  .social-links {
    justify-content: left !important;
  }
    .booking-stats-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        flex-basis: 100%;
    }
    .hero-content p {
        width: 100% !important;
        margin: 0 auto;
        padding: 0px 30px;
        line-height: 1.3 !important;
    }
    h2.scroller {
        font-size: 21px;
    }
    .hero-content.scroll-reveal.fade-up.visible {
        margin-top: 0px !important;
    }
    .hero-content.scroll-reveal.fade-up.visible p {
      font-size: 18px !important;
    }


}


/* --- Industry Cards Grid --- */

.left-15 {
    margin-left: -15px;
}

.industry-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    height: 100%; /* Ensure all cards are the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-image-wrapper {
    /* Ensures the image area maintains aspect ratio and has rounded corners */
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    /* Create the subtle gradient border effect visible in the image */
    padding: 3px;
}

.card-image {
    width: 100%;
    height: 200px; /* Fixed height for image to match design */
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block;
    border-radius: 6px; /* Inner rounding */
}

.industry-card h2 {
    font-size: 23px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 10px 0;
    font-family: var(--font-heading);
}

.industry-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    /* Ensure paragraphs take up similar space */
    flex-grow: 1;
    font-family: var(--font-heading);
}

.view-more-link {
    /* Reusing the link style from the first section */
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    color: var(--link-color);
    font-size: 15px;
    transition: color 0.2s;
    margin-top: 10px;
    background-image: var(--linear-gradient-text);
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    transition: none;
    margin-left:-125px;

}


.view-more-link:hover {
    color: #835bd6;
}

.hero-content.scroll-reveal.fade-up.visible p {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 22px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* This line adds the drop shadow */
    line-height:1.6;
    font-weight: 400;
    width:80%;
}

.hero-content.scroll-reveal.fade-up.visible {
    margin-top: 70px;
}

p.white {
    color: #fff !important;
    font-family: var(--font-heading);
}

/* --- SECTION INTRODUCTION STYLING (Replaces old .section-header) --- */
.feature-intro {
    /* Set up the container to use Flexbox */
    display: flex;
    /* Space between the two columns */
    gap: 40px;
    /* Padding/margin to contain the section content */
    padding: 60px 0 0 0;
    /* Ensures items align to the top */
    align-items: flex-start;
    /* Limits total width if necessary, adjust as per your main site container */
    max-width: 1200px;
    margin: 0 auto;
}

.feature-intro h3 {
    flex: 1;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-text-color);
    margin: 0;
}

/* Optional: To apply the two-tone color effect */
.feature-intro h3 span {
    color: var(--color-primary);
}

/* New Selector: Targeting the <p> element */
.feature-intro p {
    /* The paragraph should fill the remaining space */
    flex: 1;
    /* Set font size for readability */
    font-size: 18px;
    /* Set text color to a soft dark grey */
    color: #555555;
    /* Margin below the paragraph block */
    margin-top: 10px;
    line-height: 1.6;
}

/* --- Responsive Adjustments for Mobile --- */
@media (max-width: 768px) {
    .feature-intro {
        /* Stack the columns vertically on smaller screens */
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    .feature-intro h3 {
        /* Full width on mobile */
        flex: 1 1 100%;
        font-size: 31px;
    }

}


/* --- CTA Button Styling --- */

.centered-button-container {
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    padding: 17px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: none;
    background:#5f1928;
    text-shadow: 1px 1px 2px rgb(6 6 6 / 50%);
}
nav.nav.dark a {
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.features-header h1 strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
}

img.checkmark {
    width: 22px;
    margin-top: 5px;
}

/* --- Scroll Reveal Animations --- */

/* Base class for all elements you want to animate */
.scroll-reveal {
    /* CRITICAL: Starts the elements off-screen or invisible */
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth transition */
}

/* Specific animations for different elements */

/* Fade Up: For section headers and main content blocks */
.fade-up {
    transform: translateY(30px); /* Start 30px below its final position */
}

/* Fade In: For elements that shouldn't move, just appear (like the main dashboard) */
.fade-in {
    transform: translateY(0); /* No vertical movement */
    transition: opacity 1s ease-out;
}

/* Fade Right: For elements coming from the left (like the text content of a two-column section) */
.fade-right {
    transform: translateX(-50px); /* Start 50px to the left */
}

/* Fade Left: For elements coming from the right (like the image content of a two-column section) */
.fade-left {
    transform: translateX(50px); /* Start 50px to the right */
}


/* Class added by JavaScript when the element is in view */
.scroll-reveal.visible {
    opacity: 1;
    transform: translate(0, 0); /* Move to final, natural position */
    font-family: var(--font-heading);
}

/* Add a slight delay to section headers to look more elegant */
.features-header h1,
.mission-section h1,
.industries-header h1,
.testimonials-header h1 {
    transition-delay: 0.1s; /* Slightly delayed from the main section */
    font-family: var(--font-heading);
    font-weight: bold !important;
}




/* --- Section Container and Header --- */

.mobile-header {
  display:none;
}

.platform-section {
    padding: 60px 0px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.platform-header {
    margin-bottom: 50px;
}

.platform-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50px;
    position: relative;
    color: var(--color-secondary);
}

/* Gradient border for the tag */
.platform-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.platform-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
    font-family: var(--font-heading);
}

.platform-intro {
    font-size: 18px;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-heading);
}

/* --- Two-Column Content Layout --- */

.platform-section-content {
    display: flex;
    align-items: center; /* Vertically align image and features */
    gap: 50px;
    margin-top: 50px;
    text-align: left; /* Reset text alignment for list content */
}

/* Left Column: Visual */
.platform-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Align the visual content to the center/right in its flex box */
    max-width: 50%;
}

.visual-mockup-img {
    max-width: 62%;
    height: auto;
    display: block;
}

/* Right Column: Features List */
.platform-features-list {
    flex: 1;
    max-width: 50%;
    padding-left: 20px;
}

/* --- Individual Feature Item Styling --- */

.feature-item-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon-wrapper {
    /* The square with the checkmark */
    min-width: 35px; /* Ensures the icon area is fixed width */
    height: 35px;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    /* Reusing the gradient background technique */
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

/* Inner white circle/square for the border effect */
.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    background-color: #fff;
    border-radius: 6px;
    z-index: 1;
}

.feature-icon {
    font-size: 18px;
    font-weight: bold;
    color: var(--link-color); /* Purple color for the checkmark */
    position: relative;
    z-index: 2;
}

.feature-text h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 5px 0;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

/* --- Request Demo Button Styling (reusing CTA styles) --- */

.request-demo-container {
    margin-top: 30px;
}

.demo-button {
    /* Reusing the gradient button style from the previous section */
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;;
    font-weight: 600;
    color: white;
    background: linear-gradient(90deg, var(--cta-gradient-start) 0%, var(--cta-gradient-end) 100%);
    box-shadow: 0 4px 15px rgba(160, 114, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 114, 255, 0.4);
}

.social-links {
    /* Layout for the group of icons */
    display: flex;
    gap: 10px; /* Space between icons */
    align-items: center;
    justify-content: center; /* Adjust as needed (left, center, right) */
}

.social-links a {
    /* Base styling for the container */
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size);
    height: var(--icon-size);
     /* Makes the container circular */
     /* Light background for the circle */
    background-size: 160%; /* Scales the image down slightly */
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

/* Hide the Font Awesome icons so only the background images show */
.social-links a i {
    display: none;
}

/* --- Specific Icon Styles using Background Images --- */



.social-links a:has(.fa-facebook-f) {
    background: url(/images/fb.png), var(--color-primary);
    background-size: 120%;
    background-position: center;
    margin-right: 15px;
}

/* LinkedIn */
.social-links a:has(.fa-linkedin-in) {
    background-image: url('/images/linkedin.png');
     /* 90% for icon, 100% for gradient */
     /* Center the icon, center the gradient */
    margin-right: 15px;
}

/* Instagram */
.social-links a:has(.fa-instagram) {
    background-image: url('/images/twitter.png');
     /* 90% for icon, 100% for gradient */
    background-repeat: no-repeat;
     /* Center the icon, center the gradient */
    margin-right: 15px;
}

/* YouTube */
.social-links a:has(.fa-youtube) {
    background-image: url('/images/youtube.png');
     /* 90% for icon, 100% for gradient */
     /* Center the icon, center the gradient */
}

/* --- Hover Effect --- */

.social-links a:hover {
    /* Add the purple border and subtle shadow on hover */
    border-color: var(--hover-border-color);
    box-shadow: 0 0 10px rgba(160, 114, 255, 0.4);
    transform: translateY(-2px);
}

.logo-container {
    /* Layout: Use Flexbox to arrange items horizontally */
    display: flex;
    justify-content: center; /* Center the logos group horizontally */
    align-items: center;    /* Vertically align logos */
    flex-wrap: wrap;        /* Allow logos to wrap onto new lines on small screens */
    gap: 40px;              /* Space between the logos */
    max-width: 1200px;      /* Maximum width for the container */
    margin: 0 auto;         /* Center the container within its parent section */
    padding: 40px 20px;     /* Add padding for breathing room */
}
.client-logo {
    /* Retained existing styles */
    display: block;
    width: auto !important;
    height: 100%;
    object-fit: contain;
    padding: 0 15px;
    flex-shrink: 0;
    max-height:60px;

    /* New: Overwrite the opacity/filter properties */
    opacity: 1 !important;

    /* Apply a strong, uniform grey filter */
    filter: grayscale(100%) brightness(1.2) contrast(1.1);

    /* Ensure hardware acceleration for smoother rendering */
    transform: translateZ(0);
    transition: filter 0.3s ease; /* Ensure transition is here */
}

/* ==========================================================================
   BLOG SPECIFIC STYLES
   ========================================================================== */

/* Main Blog Container Styling */
.blog-page-main {
    padding-top: 0; /* Ensures the hero section touches the header if needed */
}

/* -------------------- Blog Hero/Header Section -------------------- */
.blog-hero-section {
    padding: 50px 5%;
    text-align: center;
    background-image: linear-gradient(270deg, rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 50%) 100%), url(/images/hero-bg.webp);
    margin-top: -84px;
    padding-top: 160px;
    min-height: 540px;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-tag {
    display: inline-block;
    color: #9333ea; /* Purple brand color */
    background-color: #f3e8ff; /* Light purple background */
    padding: 5px 15px;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.blog-hero-section h1 {
    font-size: 56px;
    margin-bottom: 15px;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.blog-intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color:#FFF;
    font-weight:400;
    text-shadow: 1px 1px 2px rgb(6 6 6 / 50%);
}

/* Search and Filter Bar */
.search-and-filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.blog-search-input, .category-filter-select {
    padding: 12px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.blog-search-input {
    width: 400px;
}

.blog-search-input:focus, .category-filter-select:focus {
    border-color: var(--color-secondary);
    outline: none;
}


/* -------------------- Blog Post Grid Section (Conflict Resolution) -------------------- */
.blog-posts-grid-section {
    padding: 0px 5% 50px 5%;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. Blog Post Card: Structure, Shadow, and Hover Effects (Updated for Modern Look) */
.blog-post-card {
    background-color: #ffffff;
    border-radius: 8px; /* Using 8px for a cleaner corner */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

/* Ensure the link wraps and image fits */
.blog-post-card a {
    text-decoration: none;
    font-family: var(--font-heading);
}

/* 2. Image Styling */
.blog-post-card .post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image {
    transform: scale(1.03);
}

/* 3. Post Details: Padding and Flex (Updated Padding) */
.blog-post-card .post-details {
    padding: 20px 25px 25px; /* Updated padding for modern look */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 4. Category Tag: Styling with the Accent Color (Major Style Update) */
.blog-post-card .post-category {
    display: inline-block;
    background-color: rgba(156, 40, 71, 0.1); /* Light transparent magenta */
    color: var(--accent-color, #9c2847); /* Use your magenta variable */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 15px; /* Increased spacing */
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

/* 5. Title (H2): FORCING OLD STYLES WITH NEW SIZE */
.blog-post-card h2 {
    /* Kept the size/weight from the new design */
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4; /* Slightly taller line-height */
    margin-top: 0;
    margin-bottom: 10px;
    color: #1f2937; /* Original dark text color */
}

/* Ensuring the link inside H2 uses the original styles */
.blog-post-card h2 a {
    text-decoration: none;
    color: #1f2937; /* Default link color */
    font-family: var(--font-heading);
}

/* 6. Date: Subtle Metadata */
.post-date p {
    margin-bottom: 10px;
    font-size: 13px;
    color: #888;
    font-family: var(--font-heading);
}

/* 7. Excerpt: Readability */
.blog-post-card .post-excerpt {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: var(--font-heading);
}

/* 8. Read More Link: FORCING OLD STYLES */
.read-more-link {
    display: inline-block;
    /* Using your original color variable, whatever its value may be */
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    /* Explicitly remove the bottom border introduced in the new design */
    border-bottom: none !important;
    align-self: flex-start;
    padding: 0; /* Remove padding */
}

.read-more-link:hover {
    color: var(--color-primary); /* Use original hover color */
}

.read-more-link-2 {
    display: inline-block;
    /* Using your original color variable, whatever its value may be */
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    /* Explicitly remove the bottom border introduced in the new design */
    border-bottom: none !important;
    align-self: flex-start;
    padding: 0; /* Remove padding */
}

.request-a-quote-now {
    width: 100%;
    display: block;
    border-radius: 30px;
    padding: 20px;
}

/* Remove unused meta styling */
.blog-post-card .post-meta {
    display: none;
}
/* --- LANDING PAGE / DEMO REQUEST FORM STYLING --- */

/* The background of the entire section is now a light gray/off-white */
.landing-form-section {
    background-color: #fff;
    padding: 80px 0;
}

.landing-content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
    gap: 60px;
    padding-top:75px;
}

/* LEFT SIDE: Benefits List */
.landing-text-content {
    flex: 1;
    color: #333;
    padding: 20px 0;
}

.landing-text-content h1 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #e91e63
}

.benefits-list {
    font-size: 18px;
    line-height: 1.6;
}

.benefits-list p {
    font-weight: 700;
    margin-bottom: 20px;
    color: #333; /* Dark text for readability on the off-white background */
}

.benefits-list ul {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #333; /* Dark text for benefit points */
}

/* Checkmark color is the vibrant purple/pink */
.benefits-list li::before {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
    color: #c71585;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* RIGHT SIDE: Contact Form Container */
.landing-contact-form-container {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white; /* All form container text should be white */
}

/* Form field styling: Solid white background */
.demo-request-form input,
.demo-request-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 18px;
    color: #333;
    background-color: #f9f9f9;
    /* Placeholder text color to match the subtle look in the image */
    opacity: 0.8;
    font-family: var(--font-heading);
    border:1px solid #ddd;
}

.form-group {
    margin-bottom: 15px;
}
.demo-request-form textarea {
    height: 150px;
    resize: vertical;
}

/*Captera Customer reviews */

/* --- NEW/UPDATED CSS FOR FINAL DESIGN --- */

/* 1. Main Section Background */
.trust-ratings-section {
    /* Applying the specific color requested by the user */
    background: #f9f9feb3;
    padding: 80px 20px;
    text-align: center;
    /* Ensure other necessary base styles are inherited */
}

/* 2. Badge Containers and Content (The Clean White Boxes) */
.ratings-grid {
    display: flex;
    justify-content: center;
    gap: 0px;
    max-width: 900px;
    margin: 0 auto 50px auto;
    flex-wrap: wrap;
}

.rating-badge {
    /* Minimal styling here to allow .badge-content to define the look */
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 0;
}

.badge-content {
    /* ALL BADGES ARE PURE WHITE WITH SHADOW */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #FFFFFF; /* Pure white background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Soft, clean shadow */
    width: 100%;
    height: 100%;
    color: #000;
    border: 1px solid #eeeeee; /* Light border for definition */
}

/* 3. Logo and Text Styles */
.badge-logo-icon {
    /* Styles for the logos (adjust size as needed) */
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.badge-stars {
    /* Styles for the 5-star rating */
    color: gold;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    line-height: 1;
}

.rating-value-new {
    /* Styles for the "4.8" number */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.rating-label-new {
    /* Styles for "User Reviews" text */
    font-size: 14px;
    margin-top: 0;
    line-height: 1;
    color: #666; /* Dark gray */
}

/* 4. Comparison Block Styles (New Classes) */
.comparison-sub-headline {
    /* Style for "Direct Comparison" */
    font-size: 34px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
    font-family: var(--font-heading);
}

.laptop-image-wrapper {
    /* Container to control the maximum size of the laptop graphic */
    max-width: 1000px; /* Made slightly wider to make the image dominant */
    margin: 0 auto;
    padding: 0 15px;
}

.laptop-mockup-image {
    width: 100%;
    height: auto;
    /* Adding a clean shadow to the large image */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    border-radius: 8px;
}


/* --- 6. TRUST RATINGS SECTION STYLING --- */
.trust-ratings-section {
    padding: 20px;
    background-color: #fff;
    font-family: var(--font-heading);
}

.ratings-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    text-align: center;
}

/* Header Styling */
.ratings-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--trust-blue);
    margin-bottom: 10px;
    margin-top:-20px;
    font-family: var(--font-heading);
}

.separator-line {
    width: 60px;
    height: 3px;
    background-color: var(--trust-blue);
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

/* Ratings Grid (Badges) */
.ratings-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.rating-badge {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
}

.badge-image {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.rating-value {
    font-size: 18px;;
    color: var(--text-color);
}

.rating-value span {
    font-weight: 700;
    color: var(--trust-blue);
}

/* Comparison Blocks */
.comparison-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: left;
}

.comparison-block.alt-layout {
    flex-direction: row-reverse;
}

.comparison-text {
    flex: 1;
    max-width: 45%;
}

.comparison-headline {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--trust-blue);
    margin-bottom: 15px;
}

.comparison-source {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
}

.comparison-image-wrapper {
    flex: 1;
    max-width: 50%;
}

.comparison-mockup {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Styling for the Navigation Buttons */
.nav-arrow {
    position: absolute;
    margin-top: 200px;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border: 1px solid #ccc;
    color: #333;
    padding: 10px 15px;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    border-radius: 50%; /* Circular button */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.nav-arrow:hover {
    background-color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    color: #7A283B; /* Use your accent color on hover */
    border-color: #7A283B;
}

/* Position the arrows */
.prev-arrow {
    left: 0px; /* Space from the left edge */
}

.next-arrow {
    right: 0px; /* Space from the right edge */
}



/* Mobile Responsiveness for Arrows */
@media (max-width: 768px) {
    .nav-arrow {
        /* Optionally hide arrows on smaller screens if manual swiping is preferred */
        /* display: none; */

        /* Or make them smaller and closer to the edge */
        width: 35px;
        height: 35px;
        font-size: 18px;
        padding: 5px;
    }
    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }
}

/* 5. Responsiveness (Add these media queries if you don't have them yet) */
@media (max-width: 768px) {
    .ratings-grid {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
    .rating-badge {
        max-width: 80%;
    }
    .section-title {
        font-size: 28px !important;
    }
}

/* SUBMIT BUTTON: Matching the purple-to-pink gradient */
.submit-button {
    width: 100%;
    color: white;
    font-size: 18px;
    padding: 15px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-transform: capitalize;
    transition: opacity 0.3s
ease;
}

.submit-button:hover {
    opacity: 0.9;
}

/* --- THANK YOU PAGE STYLING --- */
.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background-color: #f5f5f5;
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%), url(/images/hero-bg.webp);
    background-size: cover;
}
.thank-you-content {
    max-width: 800px;
    margin: 80px auto;
}

/* Style for the "Request Received" tag */
.thank-you-tag {
    display: inline-block;
    color: #c71585; /* Pink accent */
    background-color: #fde8f2;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Main heading style - similar to the hero H1 but smaller */
.thank-you-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.thank-you-content h1 span {
    color: var(--color-secondary);
}

.confirmation-intro {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.confirmation-details {
    background-color: #ffffff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.confirmation-details p {
    font-size: 18px;;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.logo-track.track-reverse {
    margin-top: 30px;
}




section.contact-hero-section {
    background-image: linear-gradient(270deg, rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 50%) 100%), url(/images/hero-bg.webp);
    margin-top: -85px;
    padding-top: 170px;
    min-height: 540px;
    background-repeat: no-repeat;
    background-size: cover;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.feature-card.scroll-reveal.fade-up.visible img {
    max-width: 400px;
}

.feature-card.scroll-reveal.fade-up.visible h3 {
    margin-top: 20px;
}
/* --- CONTACT PAGE STYLING --- */


.contact-hero-section h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-secondary);
    text-align:center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-section p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align:center;
    color:#FFF !important;
    padding: 0px 50px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.features-section-top-paragraph {
    max-width: 1250px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-heading);
}

/* Two-column layout section */
.contact-form-section {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.contact-grid {
    /* Assuming a general .container class for max-width and centering */
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
}

/* Left Column: Contact Information */
.contact-info {
    flex: 1;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width:100%;
}

.contact-info h2 {
    color: #000; /* Pink accent */
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.contact-info p {
    font-size: 18px;;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 17px;
    color: #333;
}

.info-item i {
    color: var(--color-primary);
    margin-right: 15px;
    font-size: 20px;
}

.info-item span {
    font-weight: 600;
    margin-right: 5px;
}

.social-links a {
}

.social-links a:hover {
    color: #d83a7a;
}

img.login {
    width: 20px;
    margin: -3px 4px;
    padding: 0px;
}

/* --- MODAL BACKDROP AND POSITIONING --- */

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's above everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent backdrop */

    /* Center the modal-content using Flexbox */
    justify-content: center;
    align-items: center;

    /* Use opacity/visibility for smoother transitions */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

/* Activation State (Class added by JavaScript) */
.modal.active {
    display: flex; /* Makes the modal visible and centers content */
    opacity: 1;
    visibility: visible;
}

.gap-30 {
    gap: 25px !important;
}

/* --- MODAL CONTENT BOX --- */

.modal-content {
    position: relative;
    background-color: #ffffff; /* White background */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Lifted shadow effect */
    width: 90%;
    max-width: 450px;
    text-align: center;
    font-family: var(--font-heading); /* Fallback font */
    color: #333; /* Default dark text color */

    /* Animation start state */
    transform: translateY(-50px) scale(0.95);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Animation end state */
.modal.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #666; /* Light gray */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.close-btn:hover {
    color: #94174d; /* Primary color */
}

/* --- LOGIN FORM ELEMENTS --- */

/* Resetting conflicting styles for the inner login-container */
.modal .login-container {
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    max-width: none;
}

.login-title {
    font-size: 2em;
    margin-bottom: 5px;
    font-weight: 800;
    color: #333;
}

.login-subtitle {
    font-size: 1em;
    color: #666;
    margin-bottom: 30px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: calc(100% - 40px);
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1em;
    color: #333;
    background-color: #ffffff;
}

.remember-me {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.95em;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

/* Submit Button Style (Gradient) */
.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(to right, #94174d, #cc316f); /* Gradient */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(148, 23, 77, 0.4);
    transition: transform 0.2s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.signup-link {
    margin-top: 25px;
    font-size: 0.9em;
}

.signup-link a {
    color: #94174d;
    text-decoration: none;
    font-weight: bold;
}
/* --- CRITICAL: Resetting all inheritance inside the modal content --- */

.modal-content {
    /* Set an unmistakable background color to confirm the boundaries are working */
    background-color: #f0f0f0 !important; /* Light gray to visually contrast with white */

    /* Ensure the color property is set on the container itself */
    color: #333 !important;

    position: relative;
    /* ... (Keep other positioning/sizing properties below) ... */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    text-align: center;
    transform: translateY(-50px) scale(0.95);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}



/* Explicitly force links (like "Sign Up Now") */
.modal-content a {
    color: #94174d !important;
}

/* Explicitly force input text color */
.modal-content input {
    color: #333 !important;
    background-color: #ffffff !important;
}

/* Close Button Styling (the 'x') */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--color-text-dark);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--color-primary);
}

/* Close Button Styling (the 'x') */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--color-text-dark);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--color-primary);
}

/* Right Column: Contact Form */
.contact-form-container {
    flex: 1.2;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
    color: #333; /* Purple accent */
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    font-family: var(--font-heading);
}

.contact-form label {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 18px;;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
    font-family:var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ca3555;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

/* Submit button (reusing the gradient style) */
.contact-form .submit-button {
    color: white;
    font-size: 18px;
    padding: 15px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-transform: capitalize;
    transition: opacity 0.3s ease;
    width: 100%;
    background: var(--color-primary);
}

.contact-form .submit-button:hover {
    opacity: 0.9;
}

/* Map Section */
.map-section {
    padding: 0;
    margin-top: 60px;
}

.map-section iframe {
    width: 100%;
    display: block;
}

/* --- ABOUT US METRICS SECTION STYLING --- */

.about-metrics-section {
    padding: 50px 0;
    background-color: white; /* Clean white background */
    text-align: center;
}

.about-metrics-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--font-heading);
}

.about-metrics-section .section-heading {
    color: #000; /* Pink accent color for the main heading */
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.about-metrics-section .section-subheading {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-body);
    line-height: 1.6;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
    gap: 30px;
}

.metric-item {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px; /* Ensure consistent height */
}

.metric-icon {
    width: 60px; /* Size of the icons */
    height: 60px;
    margin-bottom: 15px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #000; /* Purple accent color for the numbers */
    margin-bottom: 10px;
    line-height: 1.2;
}

.metric-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
    flex-grow: 1;
    font-family: var(--font-heading);
}

/* --- 3. FEATURE CARDS STYLING --- */
.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
}

.feature-card {
    /* Set to 33.333% to fit three cards per row */
    flex: 1 1 calc(33.333% - 15px);
    min-width: 250px;
    overflow: hidden;
    text-align: center;
    /* Card styling */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;

    /* Flexbox to push content up and footer down */
    display: flex;
    flex-direction: column;

    /* FIX: Added padding to the top, bottom padding will be handled by the space in card-footer. */
    /* Adjust this value if you need more or less vertical padding inside the card. */
    padding: 0 0 25px 0;
}

.learn-more-button {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #ccc;
    border-radius: 50px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}
.card-footer {
    margin-top: 0px;
    padding: 0 15px;
    text-align: left;
    margin-bottom: 30px;
}

.feature-card p {
    flex-grow: 1; /* Pushes the card-footer to the bottom */
    padding: 0 15px;
    /* CRITICAL FIX: Explicitly remove default paragraph margins */
    margin-top: 0;
    margin-bottom: 0;
    color: #555;
    font-size: 15px;
    font-family: var(--font-heading);
}

.feature-card h2 {
    padding: 0 15px; /* Add horizontal padding to header */
    margin-top: 15px;
    font-family: var(--font-heading);
}



/* Base button style */
.learn-more-btn {
     display: inline-block;
     padding: 10px 25px;
     border: 1px solid #ccc;
     border-radius: 50px;
     color: #666;
     text-decoration: none;
     font-weight: 500;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     align-self: flex-start;
     font-family: var(--font-heading);
}

.learn-more-btn-2 {
  display: inline-block;
  padding: 10px 30px;
  margin: 0; /* Ensures the button itself has no unexpected margins */
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  background-color: var(--color-primary);
  color: var(--text-light);
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
  font-family:var(--font-heading);
  font-weight: 500;
  color:#fff;
}

/* Hover effect for the button */
.learn-more-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.platform-section .feature-container .feature-card {
    padding: 0px;
}

/* ... (rest of your CSS) ... */

.industries-hero-section h1 {
   font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height:78px;
    background-image: linear-gradient(to right, #af2d59, var(--color-primary));
    color: transparent;
    background-clip: text;
    text-align:center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.industries-hero-section p {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    color:#fff;
    margin-top:15px;
    text-align: center;
    font-family: var(--font-heading);
    text-shadow: 1px 1px 2px rgb(6 6 6 / 50%);
    font-weight: 400;
}

.industries-list-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.industries-list-section .section-heading {
    color: #000;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for the list */
    gap: 30px;
    max-width: 900px; /* Constrain width for a cleaner look */
    margin: 0 auto 60px auto; /* Center the grid and add space below */
}

.industry-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Remove underline from links */
    display: block; /* Make the whole div clickable */
}

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

.industry-item h3 {
    color: #8a2be2; /* Purple accent for industry titles */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.industry-item p {
    font-size: 18px;;
    color: #555;
    line-height: 1.6;
}

.call-to-action-block {
    background-color: #e0f2f7; /* Light blue background for the CTA block */
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 60px auto 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.call-to-action-block p {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Target the paragraph within the answer container inside an active FAQ item */
.faq-item.active .faq-answer p {
    /* 1. Force the color to black */
    color: #000000 !important;

    /* 2. Reset the text gradient properties that were setting color to transparent */
    background-image: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;

    /* 3. Ensure the text is visible and not transparent */
    -webkit-text-fill-color: #000000 !important;
}

/* Also ensure any bold text inside is correctly colored */
.faq-item.active .faq-answer p strong {
    color: #7B7B7B !important;
    -webkit-text-fill-color: #7B7B7B !important;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1) contrast(1);
}

.track-forward {
    animation-duration: 20s;
    animation-name: scroll-forward;
}
.track-reverse {
    animation-duration: 20s;
    animation-name: scroll-reverse;
}
.fade-transition {
    transition: opacity 0.5s ease-in-out;
}
.fading-out {
    opacity: 0;
}

.center {
  text-align:center;
  margin: 40px 0 0 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .industries-hero-section h1 {
        font-size: 38px;
    }
    .industries-grid {
        grid-template-columns: 1fr; /* Stack into one column on smaller screens */
        max-width: 600px;
    }
    .industries-list-section .section-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .industries-hero-section h1 {
        font-size: 32px;
    }
    .industries-hero-section p {
        font-size: 18px;
        padding: 0px 15px;
    }
}

@media (max-width: 992px) {
    /* For tablets and smaller screens, allow cards to wrap */
    .card-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    /*.industry-card {
        min-width: 45%; /* Two cards per row on tablets
        max-width: 45%;
    } */
}

@media (max-width: 600px) {
    /* For phones, stack cards vertically */
    .industry-card {
        min-width: 100%;
        max-width: 100%;
    }

    .header-section h1 {
        font-size: 2em; /* Reduce header size on mobile */
    }
    .info-item {
        font-size: 15px !important;
    }
    .blog-intro-text {
      font-size: 18px;
    }
    #cgptcb-chat-box-container-manual.open {
      height:550px !important;
    }

}

/* --- Responsive Adjustments for Metrics --- */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .metrics-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    .about-metrics-section .section-heading {
        font-size: 32px;
    }
}


/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column; /* Stacks columns vertically on tablets/small screens */
    }

    .contact-hero-section h1 {
        font-size: 38px;
    }
}




@media screen and (max-width: 767px) {

  .contact-hero-section h1 {
      font-size: 32px;
  }
  .contact-hero-section p {
      font-size: 18px;
  }
  .contact-form-section {
      padding: 50px 0;
  }

  .landing-content-wrapper {
      flex-direction: column;
  }

  .landing-text-content {
      padding-right: 0;
  }

  .logo {
      width: 100%;
      position: absolute;
      left: 100px;
  }
  header.header {
    display:none;
  }
  .mobile-header {
    display:inline-block;
  }
  .industries-section, .testimonials-section, .cta-section {
    padding: 60px 20px;
  }
  .hero-content span {
      font-size: 36px;
      line-height: 38px;
  }
  .dashboard-preview {
    margin-top:50px;
  }
  .cta-button {
    width:225px;
    text-align:center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
  }
}



/* --- Responsive adjustments --- */

@media (max-width: 992px) {
    .platform-section-content {
        /* Stack the columns vertically on tablet/mobile */
        flex-direction: column;
        gap: 30px;
    }
    .platform-visual,
    .platform-features-list {
        max-width: 100%;
        padding-left: 0;
    }
    .platform-visual {
        justify-content: center;
    }
    .logo-container {
        gap: 30px;
    }
    .client-logo {
        max-width: 120px; /* Make logos slightly smaller on tablets */
    }
}

.team-carousel-wrapper {
    /* This container holds the grid and enables horizontal scrolling */
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
    overflow-y: hidden;
    padding: 20px 0; /* Vertical padding for breathing room */
    /* Add padding to the left and right to align the first card properly */
    padding-left: 50px;
    padding-right: 50px;
    -webkit-overflow-scrolling: touch; /* Smoother scrolling on iOS */
    scroll-snap-type: x mandatory; /* Optional: Snap to cards on scroll */
}

/* Hide scrollbar for a cleaner look (optional) */
.team-carousel-wrapper::-webkit-scrollbar {
    display: none;
}
.team-carousel-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.team-grid {
    /* Set up the grid for the two-row card layout */
    display: grid;
    /* Define 2 rows */
    grid-template-rows: 1fr;
    /* Define columns with a fixed width, allowing them to stretch horizontally */
    grid-auto-columns: 350px;
    grid-auto-flow: column; /* Force content to flow horizontally */
    gap: 10px; /* Space between cards */
    min-height: 450px; /* Set a minimum height for the two-row structure */
}

/* --- Testimonial Card Styling --- */

.team-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    text-align: left;
    height: 100%;
    scroll-snap-align: start; /* Optional: for scroll snapping */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push client info to the bottom */
}



/* --- Section Container and Header --- */

.testimonials-section {
    padding: 60px 120px;; /* Padding left/right handled by max-width */
    margin: 0 auto;
    text-align: center;
    overflow: hidden; /* Important to hide default scroll on the main section */
    background: var(--even-background);
}

.testimonials-header {
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    background:
}

.testimonials-tag {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 900;
  background-clip: text;
  border-radius: 50px;
  position: relative;
  color: var(--color-secondary);
}

/* Gradient border for the tag */
.testimonials-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.testimonials-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
    font-family: var(--font-heading);
}

.testimonials-intro {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    font-family: var(--font-body);
}


/* --- Carousel/Scrolling Area --- */

.testimonials-carousel-wrapper {
    /* This container holds the grid and enables horizontal scrolling */
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
    overflow-y: hidden;
    padding: 20px 0; /* Vertical padding for breathing room */
    /* Add padding to the left and right to align the first card properly */
    padding-left: 50px;
    padding-right: 50px;
    -webkit-overflow-scrolling: touch; /* Smoother scrolling on iOS */
    scroll-snap-type: x mandatory; /* Optional: Snap to cards on scroll */
}

/* Hide scrollbar for a cleaner look (optional) */
.testimonials-carousel-wrapper::-webkit-scrollbar {
    display: none;
}
.testimonials-carousel-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.testimonials-grid {
    /* Set up the grid for the two-row card layout */
    display: grid;
    /* Define 2 rows */
    grid-template-rows: 1fr;
    /* Define columns with a fixed width, allowing them to stretch horizontally */
    grid-auto-columns: 350px;
    grid-auto-flow: column; /* Force content to flow horizontally */
    gap: 20px; /* Space between cards */
    min-height: 450px; /* Set a minimum height for the two-row structure */
}

/* --- Testimonial Card Styling --- */

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    text-align: left;
    height: 100%;
    scroll-snap-align: start; /* Optional: for scroll snapping */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push client info to the bottom */
}

.rating {
    font-size: 18px;
    background: var(--color-stars);
    margin-bottom: 15px;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.quote {
    font-size: 18px;
    color: var(--heading-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 0; /* Allows the quote to take up available space */
    font-family: var(--font-heading);
}

.footer-logo {
    width: 100%;
    height: 30px;
}


.client-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.client-photo {
    width:40px;
    height:40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    margin-top:25px;
}

.client-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    width:100%;
}

.client-title {
    font-size: 12px;
    color: var(--text-color);
    width:100%;
    position: absolute;
}

.testimonials-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}


/* --- Section Container and Header --- */

.ai-integration-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ai-header {
    margin-bottom: 50px;
}

.ai-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50px;
    position: relative;
    color: var(--color-secondary);
}

/* Gradient border for the tag */
.ai-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.ai-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
    font-family: var(--font-heading);
}

.ai-intro {
    font-size: 18px;
    color: var(--text-color);
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-heading);
}

/* --- AI Features Grid --- */

.ai-features-grid {
    display: grid;
    /* 4-column layout for desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
    margin-top: 40px;
}

/* --- Feature Card Styling --- */

.ai-feature-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding:0px 0px 25px 0px;
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    /* Ensures the image takes the full width at the top */
    width: 100%;
    height: 180px; /* Fixed height for visual consistency */
    margin-bottom: 20px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area */
    display: block;
}

.ai-feature-card h2 {
    font-size: 24px;
    color: var(--heading-color);
    margin: 0 15px 10px 15px;
    min-height:60px;
    line-height: 28px;
    font-family: var(--font-heading);
}

.ai-feature-card p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 15px;
    min-height: 200px;
    font-family: var(--font-body);
}

span.card-icon img {
    width: 34px;
    margin-top: 7px;
}

/* --- CSS for Visually Subdued Bottom Text --- */

.subtle-seo-text {
    /* Reduce size significantly */
    font-size: 12px;

    /* Change color to a very light, low-contrast gray */
    color: #999999;

    /* Reduce the line height slightly for compactness */
    line-height: 1.5;

    /* Center it and keep it within the main content width */
    text-align: center;
    max-width: 900px;
    margin: 0px auto 0 auto; /* Margin above the text */

    /* Ensure it is not bold (remove any inherited bolding) */
    font-weight: normal;
}

/* Optional: Add a light italic style for even more subtlety */
/*
.subtle-seo-text {
    font-style: italic;
}
*/

p.comparison-description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-heading);
    font-size: 18px;
}

/* --- CTA Section Container and Text --- */

.cta-section {
    padding: 60px 120px 0 120px; /* Reduced bottom padding since the image takes up space */
    margin: 0 auto;
    text-align: center;
    background: var(--even-background);
}

.cta-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px; /* Space between text/button and the image */
}

.verified-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
    background-clip: text;
    border-radius: 50px;
    position: relative;
    color: var(--color-secondary);
}

.verified-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#5f1928 0 0) content-box, linear-gradient(#5f1928 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}


.cta-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
    background-clip: text;
    border-radius: 50px;
    position: relative;
    color: var(--color-secondary);
}

/* Gradient border for the tag */
.cta-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: var(--color-secondary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.cta-content-wrapper h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 20px 0;
    line-height: 55px;
    font-family: var(--font-heading);
}

.cta-subtext {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-heading);
}

/* --- Final CTA Button Styling (reusing the gradient style) --- */

.final-cta {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.final-cta:hover {
    transform: translateY(-3px);
}

/* --- Mockup Image Styling --- */

.cta-mockup-container {
    /* Ensures the image is centered and can span close to the full width */
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.final-mockup-img {
    /* Make the image responsive, scaling down as needed */
    max-width: 70%;
    height: auto;
    display: block;
    /* Offset the image slightly to give it dimension below the fold */
    transform: translateY(0);
    margin-bottom:-200px;
    display:none;
}

.ai-feature-card.scroll-reveal.fade-up.visible span {
    margin-left: 15px;
}

.paint-points-icon img {
    max-width: 75px;
}







/* --- Responsive adjustments --- */

@media (max-width: 1200px) {
    .ai-features-grid {
        /* Drop to 3 columns if screen is a bit smaller */
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .ai-features-grid {
        /* Drop to 2 columns on tablets */
        grid-template-columns: repeat(2, 1fr);
    }
}



/* --- Responsive adjustments for smaller screens (tablets and mobile) --- */

@media (max-width: 1000px) {
    .features-grid {
        /* On smaller screens, stack them in 2 columns */
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-section-content {
        /* Stack the columns vertically on tablet/mobile */
        flex-direction: column;
        gap: 30px;
    }
    .mission-text-content {
        padding-right: 0;
    }
    .industry-cards-grid {
        /* Stack in 2 columns on tablets */
        grid-template-columns: repeat(2, 1fr);
    }
    .platform-section-content {
        /* Stack the columns vertically on tablet/mobile */
        flex-direction: column;
        gap: 30px;
    }
    .platform-visual,
    .platform-features-list {
        max-width: 100%;
        padding-left: 0;
    }
    .platform-visual {
        justify-content: center;
    }
}

@media (max-width: 650px) {

  .hero-content h1 {
    font-size:28px;
    line-height:1.3;
  }

  .industries-hero-section {
    margin-top:-90px;
  }
  .industries-hero-section .container p {
    line-height: 1.3 !important;
    padding:0px;
  }

  .black, .industries-hero-section h1, .underlined-text-wrapper {
    font-size:36px !important;
    line-height: 1.3 !important;
  }
  .hero-section {
    margin-top:-30px;
  }
  .features-header {
    gap: 15px !important;
  }
    .event-features-section {
        padding: 40px 15px;
    }
    .features-header h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    .features-grid {
        /* On mobile, stack them in a single column */
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 30px 25px;
    }
    .feature-card h2 {
        font-size: 18px;
    }
    .mission-text-content h1 {
        font-size: 28px;
    }
    .stats-grid {
        /* Stack stats in one column on smaller mobile screens */
        grid-template-columns: 1fr 1fr;
        gap: 20px 0;
    }
    .testimonials-section, .cta-section {
      padding:15px;
    }
    .verified-tag {
      font-size:20px;
    }
    .final-mockup-img {
      max-width:100%;
    }
    .stat-number {
        font-size: 28px;
    }
    .industries-header h1 {
        font-size: 28px;
    }
    .industry-cards-grid {
        /* Stack in a single column on mobile */
        grid-template-columns: 1fr;
    }
    .industry-card {
        padding: 15px;
    }
    .platform-header h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .feature-text h2 {
        font-size: 17px;
    }
    .testimonials-header h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .testimonials-carousel-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonials-grid {
        /* On small screens, keep only one row */
        grid-template-rows: 1fr;
        min-height: auto;
    }

    .ai-header h1 {
        font-size: 25px;
    }
    .ai-features-grid {
        /* Stack in a single column on mobile */
        grid-template-columns: 1fr;
    }
    .cta-content-wrapper h1 {
        font-size: 28px;
    }
    .cta-subtext {
        font-size: 18px;;
        padding: 0 10px;
    }
    .final-cta {
        padding: 12px 30px;
        font-size: 18px;;
    }
    .cta-mockup-container {
        margin-top: 30px;
    }
}



/* Optional: Basic Media Query for Mobile/Tablet
    This is critical for a responsive design!
*/
@media (max-width: 768px) {

    .footer-container {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer-col {
        /* On small screens, columns take half the width */
        flex-basis: calc(50% - 20px);
        margin-bottom: 30px;
        min-width: unset;
    }

    .brand-col {
        /* Make the brand column full width on mobile */
        flex-basis: 100%;
    }
    .header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav {
        display: none; /* Hide for a simple mobile nav (you'd use a hamburger menu in production) */
        width: 100%;
        text-align: center;
        margin: 10px 0;

    }

    .nav-cta {
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 36px !important;
    }

    .cta-buttons-container {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }
    .logo-container {
        gap: 20px;
    }
    .client-logo {
        max-width: 100px; /* Even smaller logos for mobile */
    }
}

@media (min-width: 1700px) {
  .header {
    min-width: 1470px !important; /* New, wider limit */
  }

}

/* 1. Global Rule: Hide the tablet header by default */
.header-tablet-only {
    display: none !important;
}

/* 2. Style the Tablet Navigation Layout (CROWDING FIX) */
@media (max-width: 1024px) and (min-width: 601px) {
  .social-links {
    margin-left:50px;
  }

    /* Hide the original desktop header */
    .header, .mobile-header {
        display: none !important;
    }

    /* SHOW the dedicated tablet header */
    .header-tablet-only {
        /* Use flex for the main header to align logo and button */
        display: flex !important;
        flex-direction: column; /* Stack the logo/button row and the navigation row */
        padding: 10px 20px;
        margin:0px;
        border-radius:0px;
        background: #fff;
    }

    /* Style the tablet navigation (<nav class="nav-tablet">) */
    .nav-tablet {
        /* Allow navigation links to wrap if necessary */
          display: flex;
          flex-wrap: wrap;
          width: 100%;
          margin-top: 10px;
          margin-left: 180px;
        }
    }

    .nav-tablet a {
        padding: 5px 0px;
        margin: 0px; /* Tighten horizontal spacing */
        font-size: 14px; /* Slightly reduce font size for more space */
        line-height: 1.3;
    }



    /* Ensure the logo and sidebar remain on the top row if they were initially flexed */
    .header-tablet-only {
        /* Re-apply flex to the inner elements for the top row (logo and sidebar) */
        justify-content: space-between;
        align-items: center;
    }

    /* IMPORTANT: Re-target the wrapper that holds the logo and sidebar if necessary.
       If the logo and sidebar are direct children of the header, the flex-direction: column
       above will stack them vertically. You may need to wrap them in a <div>
       for the top row to maintain alignment if the flex-direction: column is used for the header.
    */
}

/* 3. Mobile View (< 600px): Ensure it remains hidden */
@media (max-width: 600px) {
    .header-tablet-only {
        display: none !important;
    }
    .faq-hero-section {
      padding: 200px 20px !important;
    }
    .market-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr) !important;
      gap: 20px;
  }
    h2#final-cta-heading {
      font-size: 35px !important;
    }
    footer {
      padding: 50px 40px;
    }
    section {
      padding: 50px 30px !important;
  }

}
@media (max-width: 900px) and (min-width: 768px) {
}


/* --- TABLET LAYOUT FIX (601px to 1024px) --- */
@media (max-width: 1024px) and (min-width: 601px) {

    /* 1. Hide the Desktop Header */
    .header-desktop {
        display: none !important;
    }

    /* 2. Show the Tablet Header and structure it vertically */
    .header-tablet-only {
        display: block !important; /* Display the whole header block */
        padding: 10px 20px;
    }

    /* 3. Style the TOP ROW (Logo and CTA) */
    .header-top-row {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-bottom: 5px; /* Space above the nav bar */
        min-height:53px;
    }

    /* 4. Style the BOTTOM ROW (Navigation) */
    .nav-tablet {
        display: flex;
        flex-wrap: wrap; /* Allows links to flow onto 2 or 3 lines */
        padding: 5px 0;
    }

    .nav-tablet a {
        /* Reduce link spacing for tablet */
        padding: 0px;
        margin: 0 5px;
        font-size: 14px; /* Small font for better fit */
        white-space: nowrap; /* Keeps link text from breaking */
        color:#000;
        text-shadow:none;
    }
    .nav {
        margin-top: 9px;
        margin-left: 0px;
    }
    .logo-tablet {
      margin-left: 70px;
      height:55px;
    }
    .logo-tablet {
        height: 70px;
        width: 100%;
        background-image: url(/images/logo-tablet.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center left;
        transition: background-image 0.3s ease;
        position: absolute;
        left: 0px;
        top: -5px;
        z-index: -1;
    }
    .industries-hero-section {
      padding: 180px 20px !important;
    }
    button.cta-button.nav-cta {
        margin-top: -14px;
        margin-left: 30px;

    }
    .industries-section, .event-features-section, .benefits-overview-section, .cta-section, .eb-venue-management-section, .testimonials-section, .about-metrics-section .container, .ai-integration-section, .platform-section, .mission-section, .features-section, .target-markets-section {
        padding: 50px 40px !important;
    }
    .request-a-demo, .industry-solutions, .key-features-section {
      padding:50px 40px !important;
    }
    .card-grid {
      gap: 20px;
    }
    .features-section {
      padding: 50px 40px !important;
    }
    .fading-carousel-wrapper {
      padding: 50px 0px !important;
    }
    .target-markets-section {
      padding: 50px 40px !important;
    }
    .event-features-section.values-section {
      padding: 50px 40px !important;
    }
    .pain-points-section, .feature-intro {
        padding: 50px 40px !important;
    }
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card.scroll-reveal.fade-up.visible img {
      max-width:100%;
    }
    .hero-content.scroll-reveal.fade-up.visible p {
      width: 100%;
    }
    .hero-section {
      min-height: 50vh;
    }
    .underlined-text-wrapper, span.black,  {
      font-size:44px;
    }
    .top {
      height:0px !important;
    }
    .industries-cards {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .feature-grid {
      grid-template-columns: repeat(3, 1fr) !important;
    }
    .feature-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 30px;
    }
    .mission-section-content {
      margin-top: 0px;
    }
    .hero-content span, .hero-content h1, .underlined-text-wrapper, span.black {
      font-size: 48px !important;
    }
    .industries-header h2 {
      font-size: 37px !important;
    }
    .features-header h1, .features-header h1, .mission-section h1, .industries-header h1, .testimonials-header h1 {
      font-size: 38px !important;
    }
  }
