@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --samaaro-light: #CFC0F7;
    --samaaro-medium: #8E6BEC;
    --samaaro-dark: #000000;
    --samaaro-primary: #6C3CE6;
    --yellow-400: #facc15;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --blue-50: #eff6ff;
    --blue-600: #2563eb;
    --green-50: #f0fdf4;
    --green-600: #16a34a;
    --purple-50: #faf5ff;
    --purple-600: #9333ea;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    min-height: 100vh;
    background: white;
  }

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.cta-button {
    background: var(--samaaro-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
    margin-left: auto;
}

.cta-button:hover {
    background: var(--samaaro-dark);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--samaaro-primary) 0%, var(--samaaro-medium) 50%, var(--samaaro-dark) 100%);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: none;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-stats {
    margin-bottom: 2rem;
}

.stats-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-highlight {
    color: #ffffff;
    font-weight: 700;
}

.ratings {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-platform {
    font-weight: 700;
    min-width: 3rem;
}

.rating-details {
    display: flex;
    flex-direction: column;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.star {
    height: 1rem;
    width: 1rem;
    color: var(--yellow-400);
    fill: currentColor;
}

.rating-score {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #000000;
    font-family: inherit;
    font-size: 1rem;
}

.form-input::placeholder {
    color: #000000;
}

.form-input:focus, .form-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.form-select option {
    background: var(--samaaro-dark);
    color: #000000;
}

.form-submit {
    width: 100%;
    background: white;
    color: var(--samaaro-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1rem;
}

.form-submit:hover {
    background: var(--gray-100);
}

/* Ratings Section */
.ratings-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.ratings-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.legend-items {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.legend-icon.samaaro {
    color: var(--samaaro-primary);
}

.legend-icon.cvent {
    background: var(--gray-400);
    border-radius: 0.25rem;
}

.legend-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.legend-text.samaaro {
    color: var(--samaaro-primary);
}

.legend-text.cvent {
    color: var(--gray-600);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.table-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.table-rows {
    display: flex;
    flex-direction: column;
}

.table-row {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.table-row:last-child {
    border-bottom: none;
}

.row-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.metric-info1 {
    background: rgb(239 246 255 / var(--tw-bg-opacity, 1));
    padding: 1rem;
    border-radius: 0.5rem;
}
.metric-info2 {
    background: rgb(240 253 244 / var(--tw-bg-opacity, 1));
    padding: 1rem;
    border-radius: 0.5rem;
}
.metric-info3 {
    background: rgb(255 245 245);
    padding: 1rem;
    border-radius: 0.5rem;
}

.metric-source {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.metric-name {
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
}

.rating-column {
    text-align: center;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.score {
    font-weight: 700;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.score.samaaro {
    color: var(--samaaro-primary);
}

.score.cvent {
    color: var(--gray-600);
}

.star.gray {
    color: var(--gray-300);
}

.table-footer {
    background: var(--gray-50);
    padding: 1rem 1.5rem;
}

.source-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
    text-align: center;
}

/* Difference Section */
.difference-section {
    padding: 5rem;
    background: white;
}

.difference-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.difference-card {
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    transition: box-shadow 0.3s;
}

.difference-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-1 {
    background: linear-gradient(135deg, var(--samaaro-primary), var(--samaaro-medium));
}

.card-2 {
    background: linear-gradient(135deg, var(--samaaro-medium), var(--samaaro-dark));
}

.card-3 {
    background: linear-gradient(135deg, var(--samaaro-dark), var(--samaaro-primary));
}

.card-4 {
    background: linear-gradient(135deg, var(--samaaro-primary), var(--samaaro-medium));
}

.card-icon {
    height: 3rem;
    width: 3rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* ROI Section */
.roi-section {
    padding: 5rem 0;
    background: white;
}

.roi-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.roi-table {
    max-width: 1000px;
    margin: 0 auto;
}

.table-header {
    background: var(--gray-50);
    padding: 1.5rem 2rem;
}

.header-content {
    display: flex;
	width: 1250px;
	margin-left: 100px;
}

.header-column {
    text-align: center;
}

.header-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.brand-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.brand-icon.samaaro {
    color: var(--samaaro-primary);
}

.brand-icon.cvent {
    background: var(--gray-400);
    border-radius: 0.25rem;
}

.brand-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.brand-text.samaaro {
    color: var(--samaaro-primary);
}

.brand-text.cvent {
    color: var(--gray-600);
}

.roi-row {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.roi-row:last-child {
    border-bottom: none;
}

.roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.metric-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.metric-column {
    text-align: center;
}

.metric-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.metric-value.samaaro {
    color: var(--samaaro-primary);
}

.metric-value.cvent {
    color: var(--gray-600);
}

.metric-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.cost-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.cost-dollar {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-300);
}

.cost-dollar.active {
    color: var(--gray-600);
}

.cost-dollar.samaaro {
    color: var(--samaaro-primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem;
    background: var(--gray-50);
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating .star {
    height: 1.25rem;
    width: 1.25rem;
    color: var(--yellow-400);
    fill: currentColor;
}

.testimonial-text {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
	border: 1px solid #d8d8d8;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
}

.author-company {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--samaaro-primary) 0%, var(--samaaro-medium) 50%, var(--samaaro-dark) 100%);
    color: white;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.cta-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-main-button {
    background: white;
    color: var(--samaaro-primary);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.cta-main-button:hover {
    background: var(--gray-100);
}

.cta-arrow {
    height: 1.25rem;
    width: 1.25rem;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cta-feature {
    text-align: center;
}

.feature-icon {
    height: 3rem;
    width: 3rem;
    margin: 0 auto 1rem;
    opacity: 0.8;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.feature-description {
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 7rem;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    height: 3rem;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: var(--gray-400);
}

/* Responsive Design */
@media (min-width: 640px) {
    .header-container,
    .hero-container,
    .ratings-container,
    .difference-container,
    .roi-container,
    .testimonials-container,
    .cta-container,
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .ratings {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .rating-card {
        flex: 0;
    }
    
    .cta-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .header-container,
    .hero-container,
    .ratings-container,
    .difference-container,
    .roi-container,
    .testimonials-container,
    .cta-container,
    .footer-container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .difference-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 48px;
    }
}

/* ROI Section - 3 Column Table with Proper Alignment */
.roi-table-header {
    background: var(--gray-50);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.roi-header-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Give more space to metric column */
    gap: 2rem;
    align-items: center;
}

.roi-header-column {
    display: flex;
    align-items: center;
}

.metric-column-header {
    justify-content: flex-start;
}

.samaaro-column-header,
.cvent-column-header {
    justify-content: center;
}

.header-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Table Row Structure */
.table-row {
    border-bottom: 1px solid var(--gray-200);
}

.table-row:last-child {
    border-bottom: none;
}

.roi-row-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Match header proportions */
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 2rem;
}

/* Metric Info Column */
.metric-info-column {
    text-align: left;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: var(--samaaro-primary);
}

.metric-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
}

.metric-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Data Columns */
.metric-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.samaaro-column,
.cvent-column {
    padding: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.metric-value.samaaro {
    color: var(--samaaro-primary);
}

.metric-value.cvent {
    color: var(--gray-600);
}

.metric-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
    text-align: center;
}

/* Brand styling in header */
.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.brand-icon.cvent {
    height: 1.5rem;
    width: 1.5rem;
    background: var(--gray-400);
    border-radius: 0.25rem;
}

.brand-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.brand-text.samaaro {
    color: var(--samaaro-primary);
}

.brand-text.cvent {
    color: var(--gray-600);
}

/* Cost indicators */
.cost-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.cost-dollar {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-300);
}

.cost-dollar.active {
    color: var(--gray-600);
}

/* Responsive adjustments for ROI table */
@media (max-width: 768px) {
    .roi-header-content,
    .roi-row-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .metric-info-column {
        text-align: center;
        padding: 1rem;
        background: var(--blue-50);
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .metric-column {
        padding: 1rem;
        background: var(--gray-50);
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .roi-header-column {
        justify-content: center;
        padding: 0.5rem;
    }
}
/* ROI Comparison Table Styles */
.roi-comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
}

/* Header Row */
.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.header-cell {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    color: #1e293b;
}

.metric-header {
    justify-content: flex-start;
    background: #f1f5f9;
}

.brand-header {
    gap: 0.5rem;
}

.samaaro-header {
    background: #faf5ff;
}

.samaaro-header .brand-name {
    color: #7c3aed;
}

.brand-logo {
    font-size: 1.25rem;
}

.cvent-header {
    background: #f8fafc;
}

.cvent-header .brand-name {
    color: #64748b;
}

.cvent-icon {
    width: 20px;
    height: 20px;
    background: #94a3b8;
    border-radius: 4px;
}

/* Table Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

/* Metric Cell */
.metric-cell {
    padding: 1.75rem;
    display: flex;
    align-items: center;
}

.metric-info {
    width: 100%;
}

.metric-info1 {
    width: 100%;
}

.metric-info2 {
    width: 100%;
}

.metric-info3 {
    width: 100%;
}

.metric-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metric-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.metric-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Value Cells */
.value-cell {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
}

.primary-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.samaaro-cell .primary-value {
    color: #7c3aed;
}

.cvent-cell .primary-value {
    color: #64748b;
}

.secondary-value {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Cost Display */
.cost-display {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.dollar-sign {
    font-size: 1.5rem;
    font-weight: 700;
}

.dollar-sign.active {
    color: #7c3aed;
}

.samaaro-cell .dollar-sign.active {
    color: #7c3aed;
}

.cvent-cell .dollar-sign.active {
    color: #64748b;
}

.dollar-sign.inactive {
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .header-cell,
    .metric-cell,
    .value-cell {
        padding: 1rem;
        text-align: center;
    }
    
    .metric-cell {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .metric-title {
        justify-content: center;
    }
    
    .header-cell {
        justify-content: center;
    }
    
    .metric-header {
        order: -1;
        background: #e2e8f0;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.875rem;
        letter-spacing: 0.05em;
    }
}

/* Additional spacing and container */
.roi-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ratings Comparison Section */
.ratings-container {
    max-width: 890px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ratings-comparison-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

/* Header Row */
.ratings-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.ratings-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Changed to equal widths */
    align-items: center;
}

.ratings-header-column {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Center all headers */
    font-weight: 600;
    font-size: 0.9rem;
}

.metric-header {
    background: #f8fafc; /* Back to light background for header */
}

.brand-header {
    justify-content: center;
    gap: 0.5rem;
}

.samaaro-header {
    background: #f8fafc;
}

.cvent-header {
    background: #f8fafc;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon.samaaro {
    height: 1rem;
    width: 1rem;
    color: #7c3aed;
}

.cvent-icon {
    width: 16px;
    height: 16px;
    background: #94a3b8;
    border-radius: 3px;
}

.brand-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.samaaro-header .brand-name {
    color: #7c3aed;
}

.cvent-header .brand-name {
    color: #64748b;
}

.header-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

/* Rating Rows - More Compact */
.rating-row {
    border-bottom: 1px solid #e2e8f0;
}

.rating-row:last-child {
    border-bottom: none;
}

.rating-row-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

/* Metric Cell - White Background Like Image */
.metric-cell {
    padding: 1.25rem 1.5rem; /* More compact padding */
    background: white; /* Changed to white to match image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #e2e8f0; /* Add border like in image */
}

/* Add light background to the content inside metric cell */
.metric-content {
    background: #f8fafc; /* Light background for content */
    padding: 0.75rem 1rem;
    border-radius: 6px;
    width: 100%;
    text-align: center;
}

.metric-platform {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.2rem;
    font-weight: 400;
    line-height: 1.2;
}

.metric-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

/* Rating Cells - More Compact */
.rating-cell {
    padding: 1.25rem 1rem; /* More compact padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.samaaro-cell {
    background: #fefbff;
}

.cvent-cell {
    background: #f8fafc;
}

.stars-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Reduced gap for compactness */
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.15rem; /* Tighter star spacing */
}

.star {
    height: 1rem; /* Smaller stars for compactness */
    width: 1rem;
}

/* Same star color for both - Golden/Yellow */
.stars.samaaro .star.filled,
.stars.cvent .star.filled {
    color: #fbbf24; /* Same golden color for both */
}

.star.empty {
    color: #d1d5db;
}

.score {
    font-size: 1rem; /* Slightly smaller score */
    font-weight: 700;
    line-height: 1.2;
}

.score.samaaro {
    color: #7c3aed;
}

.score.cvent {
    color: #64748b;
}

/* Footer - More Compact */
.ratings-footer {
    background: #f8fafc;
    padding: 0.75rem 1.5rem; /* More compact footer */
    border-top: 1px solid #e2e8f0;
}

.source-text {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* Section Header Styles - More Compact */
.section-title {
    font-size: 2rem; /* Slightly smaller */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.25rem; /* Slightly smaller */
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 0.75rem;
}

.section-description {
    font-size: 1rem; /* Slightly smaller */
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem auto; /* Reduced bottom margin */
    line-height: 1.5;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem; /* Reduced margin */
}

/* Responsive Design */
@media (max-width: 768px) {
    .ratings-header-content,
    .rating-row-content {
        grid-template-columns: 1fr;
    }
    
    .ratings-header-column,
    .metric-cell,
    .rating-cell {
        padding: 0.75rem;
        text-align: left;
    }
    
    .metric-cell {
        border-bottom: 1px solid #e2e8f0;
        border-right: none;
        background: #f1f5f9;
    }
    
    .brand-header {
        justify-content: center;
    }
    
    .metric-header {
        order: -1;
        background: #e2e8f0;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }
    
    .stars {
        justify-content: center;
    }
}

/* Demo Form Section - Purple Gradient Background */
.demo-form-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #9333EA 100%);
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Container */
.demo-form-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* White Form Card */
.form-card {
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
	width:550px;
	margin-left:40px;
}

/* Form Title */
.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Override Existing Form Styles */
.form-control, 
input[type="text"], 
input[type="email"], 
select {
    width: 100% !important;
    padding: 1rem 1.25rem !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #1e293b !important;
    background: #ffffff1a;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    outline: none !important;
    margin-bottom: 1.5rem !important;
    float: none !important;
}

.form-control:focus, 
input[type="text"]:focus, 
input[type="email"]:focus, 
select:focus {
    border-color: #8B5CF6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}

.form-control::placeholder {
    color: #000000 !important;
    font-weight: 400 !important;
}

/* Select Dropdown Styling */
select.form-control {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 1rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
    padding-right: 3rem !important;
    cursor: pointer !important;
}

select.form-control:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238B5CF6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
}

/* Submit Button */
.submitBnt, 
.formsubmit, 
input[type="submit"] {
    width: 100% !important;
    background: #8B5CF6 !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 0.5rem !important;
    float: none !important;
}

.submitBnt:hover, 
.formsubmit:hover, 
input[type="submit"]:hover {
    background: #7C3AED !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3) !important;
}

.submitBnt:active, 
.formsubmit:active, 
input[type="submit"]:active {
    transform: translateY(0) !important;
}

/* Override Bootstrap Column Classes */
.col-md-12 {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}


/* Form Group Styling */
.form-group {
    position: relative !important;
}

/* reCAPTCHA Container */
.g-recaptcha {
    margin: 1.5rem auto !important;
    display: flex !important;
    justify-content: center !important;
}

.zcwf_row {
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
}

.zcwf_col_lab, .zcwf_col_fld {
    width: 100% !important;
    float: none !important;
    text-align: center !important;
    padding: 0 !important;
}

/* Error Message */
#recapErr226223000010575285 {
    font-size: 0.875rem !important;
    color: #ef4444 !important;
    margin-top: 0.5rem !important;
    text-align: center !important;
}

/* Remove any padding/margin overrides */
.pl-5 {
    padding-left: 1.25rem !important;
}

.position-relative {
    position: relative !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-card {
        padding: 2rem 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .form-title {
        font-size: 1.75rem !important;
    }
    
    .form-control, 
    input[type="text"], 
    input[type="email"], 
    select {
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem !important;
    }
    
    .submitBnt, 
    .formsubmit, 
    input[type="submit"] {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .demo-form-container {
        padding: 0 0.75rem !important;
    }
    
    .form-card {
        padding: 1.5rem 1rem !important;
    }
    
    .form-title {
        font-size: 1.5rem !important;
    }
}
/* Specific styling for Country and Phone row only */
.zcwf_row:has(.col-md-4):has(.col-md-8) {
    display: flex !important;
    gap: 1rem !important;
    align-items: flex-start !important;
}

.zcwf_row:has(.col-md-4):has(.col-md-8) .col-md-4 {
    flex: 0 0 35% !important;
    width: 35% !important;
}

.zcwf_row:has(.col-md-4):has(.col-md-8) .col-md-8 {
    flex: 0 0 60% !important;
    width: 60% !important;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to right,#260248, #6606c0, #270249);
    width: 100%;
    padding: 60px 0;
    color: #ffffff;
}

.site-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

/* Company Info Section */
.company-info-section {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.brand-logo {
    margin-bottom: 20px;
}

.brand-logo img {
    max-height: 50px;
    width: auto;
}

.company-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e8e8e8;
    margin: 0;
    text-align: left;
}

/* Industry Links Section */
.industry-links-section {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.industry-menu {
    width: 100%;
}

.section-heading {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.sub-heading {
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.industry-links-wrapper {
    width: 100%;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-item {
    margin-bottom: 8px;
}

.industry-link {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
}

.industry-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Awards Section */
.awards-section {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.awards-menu {
    width: 100%;
}

.awards-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-top: 15px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1290px) {
    .site-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .company-info-section,
    .industry-links-section,
    .awards-section {
        max-width: 100%;
        width: 100%;
    }
    
    .industry-links-section {
        padding-left: 0 !important;
    }
    
    .site-wrapper {
        padding: 0 15px;
    }
    
    .section-heading {
        font-size: 16px;
    }
    
    .sub-heading {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0;
    }
    
    .company-description {
        font-size: 13px;
    }
    
    .industry-link {
        font-size: 13px;
    }
    
    .section-heading {
        font-size: 15px;
    }
    
    .sub-heading {
        font-size: 13px;
    }
}

