/* urbanPOS Website Styles - Optimized */

/* Font Awesome Icon Fixes */
.fas,
.far,
.fab,
.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 600;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fab {
    font-weight: 400;
}

.far {
    font-weight: 400;
}

/* CSS Variables - Modern Black & ffffff85 Theme */
:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --secondary-color: #666666;
    --accent-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-light: #ffffffba;
    --text-dark: #000000;
    --border-color: #e5e5e5;
    --border-dark: #333333;
    --background-light: #ffffff;
    --background-dark: #000000da;
    --background-dark-blur: #000000da;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;
    --opacity-light: 0.7;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animation Setup - Prevent flickering */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
}

.animate-on-scroll.animate__animated {
    opacity: 1;
    visibility: visible;
}

html {
    scroll-behavior: smooth;
}

p,
li {
    opacity: var(--opacity-light)
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-dark);
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

a:hover {
    /* color: var(--text-light); */
    text-decoration: none;
}

/* Material Icons Styling */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: inherit;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Icon sizing variations */
.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    min-width: 140px;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.btn-large {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--text-light);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    padding: 18px 32px;
    border-radius: 50px;
}

.btn-primary:hover {
    /* background-color: var(--text-light); */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}


.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    /* color: var(--text-light); */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}



/* Header Styles */
.header {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.sticky {
    top: 0;
}

.header.scrolled {
    background-color: var(--background-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #262f3faf;
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Logo Styles */
.navbar-brand img {
    height: 40px;
    width: auto;
    display: block;
}

.navbar-menu {
    flex: 1;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Navigation link styles */
.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: #00D4FF;
}

.nav-link.active {
    color: #00D4FF;
}

.navbar-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    /* background: #00D4FF; */
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a4b5c 30%, #2d6a7a  60%, #4a9fb8 100%); */
    /* background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, rgba(9, 9, 121, 1) 60%, rgba(0, 0, 0, 1) 100%); */
    color: var(--text-light);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    transition: filter 0.3s ease;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse at 30% 80%, rgba(0, 85, 122, 0.5) 0%, transparent 60%);
    pointer-events: none;
    /* animation: backgroundPulse 8s ease-in-out infinite; */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05) 3px, transparent 3px),
        radial-gradient(circle at 10% 90%, rgba(0, 212, 255, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.06) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 80px 80px, 120px 120px;
    background-position: 0 0, 50px 50px, 100px 100px, 25px 25px, 75px 75px;
    pointer-events: none; */
    /* animation: floatingDots 20s linear infinite; */
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1366px;
}

.home-page,
.about-page,
.products-page,
.pricing-page,
.contact-page,
.blog-page,
.request-demo-page,
.partner-page {
    background: #000000cc url('../assets/home-bg-1.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-blend-mode: darken;
    background-position: top;
}

.hero-content {
    max-width: 100%;
    text-align: left;
}

.hero-content h1, .hero-content h2 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 12px solid rgba(0, 0, 0, 1);
    transform: perspective(1200px) rotateX(347deg) rotateY(343deg);
    transition: var(--transition);
}


/* Section Headers */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: left;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}


/* Products Page Specific Styles - Moved to products.css */


/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 120px 0;
    z-index: 10;
    display: flex;
    align-items: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}


.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
}

.testimonial-card.parallax-visible {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced parallax effects */
.testimonials {
    will-change: transform;
}

.testimonials-grid {
    perspective: 1000px;
}

.testimonial-card {
    will-change: transform, opacity;
}

/* Products styles moved to products.css */


.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00D4FF, #0909B9, #00D4FF);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0.1;
    z-index: -1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

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

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    color: ffffff85;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 0.2rem;
    color: #FFD700;
    font-size: 0.9rem;
}

/* Testimonial card color variations */
.testimonial-card[data-color="yellow"]::before {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.testimonial-card[data-color="yellow"] .quote-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.testimonial-card[data-color="yellow"]:hover .quote-icon {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.testimonial-card[data-color="yellow"]:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.testimonial-card[data-color="yellow"]::after {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.testimonial-card[data-color="blue"]::before {
    background: linear-gradient(90deg, #00D4FF, #0909B9, #00D4FF);
}

.testimonial-card[data-color="blue"] .quote-icon {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.testimonial-card[data-color="blue"]:hover .quote-icon {
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.testimonial-card[data-color="blue"]:hover {
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.testimonial-card[data-color="blue"]::after {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.testimonial-card[data-color="saffron"]::before {
    background: linear-gradient(90deg, #FF8C00, #FF4500, #FF8C00);
}

.testimonial-card[data-color="saffron"] .quote-icon {
    background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.testimonial-card[data-color="saffron"]:hover .quote-icon {
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.4);
}

.testimonial-card[data-color="saffron"]:hover {
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.4);
}

.testimonial-card[data-color="saffron"]::after {
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
}

.testimonial-card[data-color="green"]::before {
    background: linear-gradient(90deg, #00FF7F, #32CD32, #00FF7F);
}

.testimonial-card[data-color="green"] .quote-icon {
    background: linear-gradient(135deg, #00FF7F 0%, #32CD32 100%);
    box-shadow: 0 8px 25px rgba(0, 255, 127, 0.3);
}

.testimonial-card[data-color="green"]:hover .quote-icon {
    box-shadow: 0 12px 35px rgba(0, 255, 127, 0.4);
}

.testimonial-card[data-color="green"]:hover {
    box-shadow: 0 20px 60px rgba(0, 255, 127, 0.2);
    border-color: rgba(0, 255, 127, 0.4);
}

.testimonial-card[data-color="green"]::after {
    background: radial-gradient(circle, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
}

.products::before,
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 0, 0, 0.01) 50%, transparent 51%);
    pointer-events: none;
}

.home-page .products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.products-grid::before,
.features-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.product-card,
.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-xl);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Color-specific gradient backgrounds */
.product-card[data-color="yellow"] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.product-card[data-color="blue"] {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(9, 9, 185, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.product-card[data-color="saffron"] {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.15) 0%, rgba(255, 102, 0, 0.08) 100%);
    border: 1px solid rgba(255, 153, 51, 0.3);
}

.product-card[data-color="green"] {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 102, 0.08) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Feature cards use unified dark gray theme */
.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* Color-specific shimmer effects */
.product-card[data-color="yellow"]::before {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.product-card[data-color="blue"]::before {
    background: linear-gradient(90deg, #00D4FF, #4392e7, #00D4FF);
}

.product-card[data-color="saffron"]::before {
    background: linear-gradient(90deg, #FF9933, #FF6600, #FF9933);
}

.product-card[data-color="green"]::before {
    background: linear-gradient(90deg, #00FF88, #00CC66, #00FF88);
}

/* Feature cards use unified shimmer */
.feature-card::before {
    background: linear-gradient(90deg, #404040, #606060, #404040);
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--text-light);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.product-card:hover::after {
    opacity: 1;
}

/* Color-specific hover effects */
.product-card[data-color="yellow"]:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.8);
}

.product-card[data-color="blue"]:hover {
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.8);
}

.product-card[data-color="saffron"]:hover {
    box-shadow: 0 20px 60px rgba(255, 153, 51, 0.25);
    border-color: rgba(255, 153, 51, 0.8);
}

.product-card[data-color="green"]:hover {
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.25);
    border-color: rgba(0, 255, 136, 0.8);
}

/* Feature cards use unified hover effects */
.feature-card:hover {
    box-shadow: 0 20px 60px rgba(100, 100, 100, 0.2);
    border-color: rgba(150, 150, 150, 0.4);
}

.product-icon,
.feature-icon {
    width: 100px;
    height: 100px;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 2rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Color-specific icon backgrounds */
.product-card[data-color="yellow"] .product-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.product-card[data-color="blue"] .product-icon {
    background: linear-gradient(135deg, #00D4FF 0%, #4392e7 100%);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.product-card[data-color="saffron"] .product-icon {
    background: linear-gradient(135deg, #FF9933 0%, #FF6600 100%);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
}

.product-card[data-color="green"] .product-icon {
    background: linear-gradient(135deg, #00FF88 0%, #00CC66 100%);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Feature cards use unified icon styling */
.feature-card .feature-icon {
    background: linear-gradient(135deg, #404040 0%, #606060 100%);
    box-shadow: 0 8px 25px rgba(100, 100, 100, 0.3);
}

.product-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00D4FF, #4392e7, #00D4FF);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Color-specific icon glow effects */
.product-card[data-color="yellow"] .product-icon::before {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
}

.product-card[data-color="blue"] .product-icon::before {
    background: linear-gradient(135deg, #00D4FF, #4392e7, #00D4FF);
}

.product-card[data-color="saffron"] .product-icon::before {
    background: linear-gradient(135deg, #FF9933, #FF6600, #FF9933);
}

.product-card[data-color="green"] .product-icon::before {
    background: linear-gradient(135deg, #00FF88, #00CC66, #00FF88);
}

/* Feature cards use unified icon glow */
.feature-card .feature-icon::before {
    background: linear-gradient(135deg, #404040, #606060, #404040);
}

.product-card:hover .product-icon,
.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

/* Feature cards use unified icon hover */
.feature-card:hover .feature-icon {
    box-shadow: 0 12px 35px rgba(100, 100, 100, 0.4);
}

.product-card:hover .product-icon::before,
.feature-card:hover .feature-icon::before {
    opacity: 1;
}

/* Color-specific icon hover effects */
.product-card[data-color="yellow"]:hover .product-icon,
.feature-card[data-color="yellow"]:hover .feature-icon {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    transform: scale(1.08) rotate(3deg);
}

.product-card[data-color="blue"]:hover .product-icon,
.feature-card[data-color="blue"]:hover .feature-icon {
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
    transform: scale(1.08) rotate(3deg);
}

.product-card[data-color="saffron"]:hover .product-icon,
.feature-card[data-color="saffron"]:hover .feature-icon {
    box-shadow: 0 12px 35px rgba(255, 153, 51, 0.4);
    transform: scale(1.08) rotate(3deg);
}

.product-card[data-color="green"]:hover .product-icon,
.feature-card[data-color="green"]:hover .feature-icon {
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
    transform: scale(1.08) rotate(3deg);
}

.product-card h3,
.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Color-specific title gradients */
.product-card[data-color="yellow"] h3 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card[data-color="blue"] h3 {
    background: linear-gradient(135deg, #00D4FF 0%, #4392e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card[data-color="saffron"] h3 {
    background: linear-gradient(135deg, #FF9933 0%, #FF6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card[data-color="green"] h3 {
    background: linear-gradient(135deg, #00FF88 0%, #00CC66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature cards use unified title styling */
.feature-card h3 {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card p,
.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Product Features Tags */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Know More Button */
.btn-know-more {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
    width: 100%;
    /* max-width: 140px; */
    margin: 0 auto;
}

/* Color-specific button styling */
.product-card[data-color="yellow"] .btn-know-more {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

.product-card[data-color="blue"] .btn-know-more {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(9, 9, 185, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00D4FF;
}

.product-card[data-color="saffron"] .btn-know-more {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(255, 102, 0, 0.1) 100%);
    border: 1px solid rgba(255, 153, 51, 0.4);
    color: #FF9933;
}

.product-card[data-color="green"] .btn-know-more {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 204, 102, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #00FF88;
}

.btn-know-more:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Color-specific button hover effects */
.product-card[data-color="yellow"] .btn-know-more:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.product-card[data-color="blue"] .btn-know-more:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(9, 9, 185, 0.2) 100%);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.product-card[data-color="saffron"] .btn-know-more:hover {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.3) 0%, rgba(255, 102, 0, 0.2) 100%);
    border-color: rgba(255, 153, 51, 0.6);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.2);
}

.product-card[data-color="green"] .btn-know-more:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 204, 102, 0.2) 100%);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}



/* Contact Page Specific Styles - Moved to contact.css */

/* Smooth transitions for testimonials */
.testimonials {
    will-change: auto;
}



/* Footer */
.footer {
    background-color: var(--dark-color);
    color: ffffff85;
    position: relative;
    z-index: 20;
}

.footer .container {
    padding: 60px 0 20px;
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 100%;
    max-width: 140px;
    height: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    padding: 0px 24px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #262f3faf;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0;
}

/* Why Choose urbanPOS Section */
.why-choose {
    padding: 120px 0;
    position: relative;
    background-color: #00000040;
}

.why-choose-content {
    margin-top: 4rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.why-features i {
    color: #00D4FF;
    font-size: 1rem;
}

/* Color variations for why cards */
.why-card[data-color="yellow"] .why-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.why-card[data-color="yellow"]:hover .why-icon {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.why-card[data-color="yellow"] h3 {
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card[data-color="yellow"] .why-features i {
    color: #FFD700;
}

.why-card[data-color="blue"] .why-icon {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.why-card[data-color="blue"]:hover .why-icon {
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.why-card[data-color="blue"] h3 {
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card[data-color="blue"] .why-features i {
    color: #00D4FF;
}

.why-card[data-color="saffron"] .why-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.why-card[data-color="saffron"]:hover .why-icon {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.why-card[data-color="saffron"] h3 {
    background: linear-gradient(135deg, #ffffff 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card[data-color="saffron"] .why-features i {
    color: #FF6B35;
}

.why-card[data-color="green"] .why-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.why-card[data-color="green"]:hover .why-icon {
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.why-card[data-color="green"] h3 {
    background: linear-gradient(135deg, #ffffff 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card[data-color="green"] .why-features i {
    color: #4CAF50;
}

/* Why Stats Section */
.why-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.why-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.why-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00D4FF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .why-stats .stat-item {
        padding: 1.5rem;
    }

    .why-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .why-choose {
    padding: 80px 0;
    }

    .why-card {
        padding: 2rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-card h3 {
        font-size: 1.2rem;
    }

    .why-stats .stat-number {
        font-size: 1.8rem;
    }
}

/* Pricing Page Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pricing-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card-floating {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.price-card-floating:nth-child(1) {
    top: 20%;
    left: 0%;
    animation-delay: 0s;
}

.price-card-floating:nth-child(2) {
    top: 50%;
    right: 0%;
    animation-delay: 2s;
}

.price-card-floating:nth-child(3) {
    bottom: 50%;
    left: 41%;
    animation-delay: 4s;
}

.price-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.price-info {
    text-align: center;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
}

.price-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 120px 0;
    /* background-color: var(--background-dark); */
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.discount-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-light);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.plan-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.pricing-card[data-color="yellow"] .plan-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.pricing-card[data-color="blue"] .plan-icon {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.pricing-card[data-color="saffron"] .plan-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.pricing-card[data-color="green"] .plan-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.plan-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.plan-pricing {
    margin-bottom: 2rem;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.annual-price {
    display: none;
}

.toggle-switch input:checked ~ * .monthly-price {
    display: none;
}

.toggle-switch input:checked ~ * .annual-price {
    display: inline;
}

.toggle-switch input:checked ~ * .monthly-total {
    display: none;
}

.toggle-switch input:checked ~ * .annual-total {
    display: block;
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.25rem;
}

.gst-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.total-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00D4FF;
}

.annual-total {
    display: none;
}

.plan-features {
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.plan-features i {
    color: #00D4FF;
    font-size: 1.1rem;
}

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-plan {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: var(--text-light);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Enterprise Section */
.enterprise {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e54 0%, #16213e03 50%, #0f346040 100%);
}

.enterprise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.enterprise-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.enterprise-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
}

.feature-item i {
    color: #00D4FF;
    font-size: 1.2rem;
}

.enterprise-actions {
    display: flex;
    gap: 1rem;
}

.enterprise-visual {
    display: flex;
    justify-content: center;
}

.enterprise-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.enterprise-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.enterprise-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.enterprise-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.benefit-item i {
    color: #00D4FF;
    font-size: 1.2rem;
}

/* FAQ Section */
.pricing-faq {
    padding: 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.faq-question i {
    color: #00D4FF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Pricing */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
    }
    
    .enterprise-actions {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 1rem;
    }
    .enterprise-card {
        width: 100%;
    }
    .enterprise-card .benefit-item{
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .pricing-plans,
    .enterprise,
    .pricing-faq {
        padding: 80px 0;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .enterprise-text h2 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card-floating {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    min-width: 270px;
}

.contact-card-floating:nth-child(1) {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.contact-card-floating:nth-child(2) {
    top: 114%;
    left: 0%;
    animation-delay: 2s;
}

.contact-card-floating:nth-child(3) {
    top: 62%;
    left: 0%;
    animation-delay: 4s;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 auto 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.contact-info {
    text-align: center;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    display: block;
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background-color: var(--background-dark);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    z-index: 2;
    top: auto;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #00D4FF;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 200px;
    font-family: inherit;
    line-height: 1.5;
    padding: 1rem !important;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    transition: width 0.3s ease;
}

.input-wrapper:focus-within .input-border {
    width: 100%;
}

.input-wrapper input.error,
.input-wrapper select.error,
.input-wrapper textarea.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.input-wrapper input.error:focus,
.input-wrapper select.error:focus,
.input-wrapper textarea.error:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.checkbox-group {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-color: #00D4FF;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 12px;
    font-weight: bold;
}

.privacy-link {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #0909B9;
}

.btn-submit {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: var(--text-light);
    padding: 18px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit.loading {
    pointer-events: none;
}

.btn-submit.loading span {
    opacity: 0;
}

.btn-submit.loading .btn-loading {
    opacity: 1;
}

.btn-loading {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

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

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.info-header {
    margin-bottom: 2rem;
    text-align: center;
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--text-light);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #0909B9;
}

.social-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.social-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.social-link img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: none;
}

/* Quick Contact Section */
.quick-contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.quick-contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.quick-contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.quick-contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.quick-contact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-contact {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.contact-details span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Color variations for quick contact cards */
.quick-contact-card[data-color="yellow"] .card-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.quick-contact-card[data-color="yellow"]:hover .card-icon {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.quick-contact-card[data-color="yellow"] .btn-contact {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.quick-contact-card[data-color="yellow"] .btn-contact:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.quick-contact-card[data-color="blue"] .card-icon {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.quick-contact-card[data-color="blue"]:hover .card-icon {
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.quick-contact-card[data-color="blue"] .btn-contact {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
}

.quick-contact-card[data-color="blue"] .btn-contact:hover {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.quick-contact-card[data-color="saffron"] .card-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.quick-contact-card[data-color="saffron"]:hover .card-icon {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.quick-contact-card[data-color="saffron"] .btn-contact {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.quick-contact-card[data-color="saffron"] .btn-contact:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.quick-contact-card[data-color="green"] .card-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.quick-contact-card[data-color="green"]:hover .card-icon {
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.quick-contact-card[data-color="green"] .btn-contact {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.quick-contact-card[data-color="green"] .btn-contact:hover {
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form-section,
    .quick-contact {
        padding: 80px 0;
    }
    
    .form-wrapper {
    padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0;
}

.form-group {
        margin-bottom: 1rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card-floating {
        position: relative;
        margin: 1rem 0;
    }
    
    .contact-visual {
        height: auto;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .quick-contact-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Request Demo Page Styles */
.demo-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-card-floating {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    min-width: 270px;
}

.demo-card-floating:nth-child(1) {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.demo-card-floating:nth-child(2) {
    top: 114%;
    left: 0%;
    animation-delay: 2s;
}

.demo-card-floating:nth-child(3) {
    bottom: -6%;
    left: 0%;
    animation-delay: 4s;
}

.demo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.demo-info {
    text-align: center;
}

.demo-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.demo-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    display: block;
}

/* Demo Benefits Section */
.demo-benefits {
    padding: 120px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.benefit-features i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Color variations for benefit cards */
.benefit-card[data-color="yellow"] .benefit-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.benefit-card[data-color="yellow"]:hover .benefit-icon {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.benefit-card[data-color="blue"] .benefit-icon {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.benefit-card[data-color="blue"]:hover .benefit-icon {
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.benefit-card[data-color="saffron"] .benefit-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.benefit-card[data-color="saffron"]:hover .benefit-icon {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.benefit-card[data-color="green"] .benefit-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.benefit-card[data-color="green"]:hover .benefit-icon {
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

/* Demo Form Section */
.demo-form-section {
    padding: 120px 0;
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
}

.demo-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.checkbox-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* Demo Info Sidebar */
.demo-info-sidebar {
    display: flex;
    flex-direction: column;
}

.demo-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.demo-stats h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stats-grid .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00D4FF;
    display: block;
    margin-bottom: 0.25rem;
}

.stats-grid .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Demo Process Section */
.demo-process {
    padding: 120px 0;
    background: #00000050;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Request Demo Page */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .demo-benefits,
    .demo-form-section,
    .demo-process {
        padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-form-container .form-row {
        grid-template-columns: 1fr;
    gap: 1rem;
        margin-bottom: 0;
    }
    
    .demo-form-container .form-group {
        margin-bottom: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .demo-card-floating {
        position: relative;
        margin: 1rem 0;
    }
    
    .demo-visual {
        height: auto;
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 2rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

/* Partner Page Styles */
.partner-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-card-floating {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(34, 24, 24, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    min-width: 270px;
}

.partner-card-floating:nth-child(1) {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.partner-card-floating:nth-child(2) {
    top: 112%;
    left: 0%;
    animation-delay: 2s;
}

.partner-card-floating:nth-child(3) {
    bottom: -5%;
    left: 0%;
    animation-delay: 4s;
}

.partner-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.partner-info {
    text-align: center;
}

.partner-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.partner-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    display: block;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 120px 0;
}

/* Partnership Types Section */
.partnership-types {
    padding: 120px 0;
    background: #00000030;
}

.partnership-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partnership-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partnership-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.partnership-card.featured {
    border: 2px solid #00D4FF;
    transform: scale(1.05);
}

.partnership-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    margin-bottom: 2rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.partnership-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-header p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.card-features {
    margin-bottom: 2rem;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.card-features i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.commission-info {
    margin-bottom: 1.5rem;
}

.commission-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.25rem;
}

.commission-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00D4FF;
    display: block;
}

.btn-partner {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-partner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Partner Form Section */
.partner-form-section {
    padding: 120px 0;
    background-color: #00000040;
}

.partner-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.partner-info-sidebar {
    display: flex;
    flex-direction: column;
}

.partner-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.partner-stats h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

/* Responsive Design for Partner Page */
@media (max-width: 1200px) {
    .partnership-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .partnership-benefits,
    .partnership-types,
    .partner-form-section {
        padding: 80px 0;
    }
    
    .partnership-cards {
        grid-template-columns: 1fr;
    }
    
    .partnership-card.featured {
        transform: none;
    }
    
    .partnership-card.featured:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .partner-card-floating {
        position: relative;
        margin: 1rem 0;
    }
    
    .partner-visual {
        height: auto;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .partnership-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.footer-social a:hover,
.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-social a i,
.social-links a i {
    font-size: 24px;
    color: var(--text-light);
}

.footer-social a:hover i,
.social-links a:hover i {
    color: #00D4FF;
}

/* SVG Social Media Icons */
.social-links a img {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.1);
}

/* Alternative styling for social icons in different contexts */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.social-icons a i {
    font-size: 20px;
    color: var(--text-light);
}

.social-icons a:hover i {
    color: #00D4FF;
}

/* Offer Page Specific Styles - Moved to offer.css */

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

/* Restaurant Management Page Specific Styles - Moved to restaurant-management.css */

/* Hotel Management Page Specific Styles - Moved to hotel-management.css */

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2rem;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes floatingDots {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-10px) translateX(-15px);
    }

    75% {
        transform: translateY(-30px) translateX(5px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}


@keyframes rotateCircle {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes rotateCircleReverse {
    0% {
        transform: rotate(360deg) scale(0.8);
    }

    50% {
        transform: rotate(180deg) scale(1);
    }

    100% {
        transform: rotate(0deg) scale(0.8);
    }
}

@keyframes connectingLineHorizontal {
    0% {
        width: 0px;
        opacity: 0;
    }

    50% {
        width: 150px;
        opacity: 1;
    }

    100% {
        width: 0px;
        opacity: 0;
    }
}