:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    --success: #10b981;
    --google-blue: #4285f4;
    --google-green: #34a853;
    --google-yellow: #fbbc05;
    --google-red: #ea4335;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark);
    line-height: 1.6;
    background-color: #f8fafc;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    margin-left: -10vw;
    height: 8vh;
    width: 15vw;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: #f59e0b;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Modern Trusted Section Styles */
.trusted-section {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.trusted-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    overflow: visible;
}

.trusted-text {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin-left: 0vw;
}

.trusted-text::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 3px;
    animation: lineSlide 2s infinite alternate;
}

@keyframes lineSlide {
    0% {
        width: 30%;
    }

    100% {
        width: 70%;
    }
}


.marquee-container {
    width: 100vw;
}

.marquee {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    height: 8vh;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 60px));
    }
}

/* Responsive Styles */

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }

    .btn-primary,
    .btn-secondary {
        width: 220px;
    }

    .trusted-section {
        margin-top: 8vh;
        border-radius: 12px;
    }

    .trusted-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 24px;
    }

    .trusted-text {
        text-align: center;
        font-size: 1.8rem;
        color: white;
    }

    .marquee-container {
        gap: 2px;
    }

    .brand-logo {
        height: 6vh;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.875rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .trusted-section {
        margin-top: 6vh;
    }
}

/* Section Common Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Anti-Cheating Features */
.anti-cheating-features {
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-tick {
    background-color: rgba(37, 99, 235, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-tick i {
    font-size: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        max-width: 100%;
    }
}

/* Main Features Section */
.main-features {
    background-color: white;
}

.main-features .section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid.detailed {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.feature-card.detailed {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card.detailed .feature-icon {
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    width: 70px;
    height: 70px;
    border-radius: 12px;
}

.feature-card.detailed .feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    margin-bottom: 20px;
    flex: 1;
}

.view-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.view-more span {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-more:hover {
    color: var(--primary-dark);
}

.view-more:hover span {
    transform: translateX(3px);
}

/* Testimonials */
.testimonials {
    background-color: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 14px;
}

/* Comparison Section */
.comparison {
    background-color: white;
}

.comparison-table-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.comparison-column {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
}

.column-header {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}

.others-header {
    background-color: #e2e8f0;
    color: var(--dark);
}

.pesofts-header {
    background-color: var(--primary);
    color: white;
}

.comparison-item {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.comparison-item p {
    color: var(--gray);
    font-size: 14px;
}

/* Trusted Companies Section */
.trusted-companies {
    background-color: var(--light);
}

.trusted-companies .section-title h2 {
    color: #2563eb;
}

.cloud-providers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.partner-card {
    margin-bottom: 40px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partner-logo .aws img {
    width: 12vw;
    height: 15vh;
}

.partner-logo .azure img {
    width: 12vw;
    height: 15vh;
}

.logo-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--google-blue);
    background: linear-gradient(45deg, var(--google-blue) 0%, var(--google-green) 25%, var(--google-yellow) 50%, var(--google-red) 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-placeholder span {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
}

.partner-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.partner-info p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.partner-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 60px;
}

.review-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.platform-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.platform-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo svg {
    width: 40px;
    height: 40px;
}

.goodfirms {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.goodfirms svg {
    color: white;
}

.getapp {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
}

.getapp svg {
    color: white;
}

.capterra {
    background: linear-gradient(135deg, #00d2d3 0%, #54a0ff 100%);
}

.capterra svg {
    color: white;
}

.platform-info h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.rating {
    margin-bottom: 10px;
}

.star {
    font-size: 20px;
    color: #e2e8f0;
    margin: 0 2px;
}

.star.filled {
    color: var(--secondary);
}

.star.half {
    background: linear-gradient(90deg, var(--secondary) 50%, #e2e8f0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.reviews-count {
    color: var(--gray);
    font-size: 14px;
}

/* Love Section */
.love-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.love-section .section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--light);
    transition: transform 0.3s ease, background 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.reason-card:hover h4,
.reason-card:hover p {
    color: white;
}

.reason-card:hover .reason-icon {
    background: rgba(255, 255, 255, 0.2);
}

.reason-card:hover .reason-icon svg {
    color: white;
}

.reason-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.reason-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.reason-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Know More Section */
.know-more-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-text p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.content-text strong {
    color: var(--primary);
    font-weight: 600;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--primary);
    opacity: 0.7;
}

/* Features Highlight */
.features-highlight {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    text-align: center;
}

.features-highlight h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}

.features-highlight p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.feature-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.feature-item:hover .feature-number {
    background: white;
    color: var(--primary);
}

/* Detailed Features */
.detailed-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-detail {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-detail:hover {
    transform: translateY(-5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Cities Section */
.cities-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    text-align: center;
}

.cities-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}

.cities-section p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.city-card {
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.city-card:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-3px);
}

.city-card.coming-soon {
    background: linear-gradient(135deg, var(--secondary) 0%, #e69008 100%);
    color: white;
    grid-column: 1 / -1;
    cursor: pointer;
}

/* Importance Section */
.importance-section {
    margin-bottom: 60px;
}

.importance-content {
    display: grid;
    gap: 40px;
}

.importance-point {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.importance-point h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.importance-point p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Software Types */
.software-types {
    margin-bottom: 60px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.type-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.type-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.type-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.type-card ul {
    list-style: none;
    text-align: left;
}

.type-card li {
    padding: 8px 0;
    color: var(--gray);
    position: relative;
    padding-left: 25px;
}

.type-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.type-note {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.type-note p {
    color: var(--dark);
    margin: 0;
}

/* Audience Section */
.audience-section {
    margin-bottom: 60px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.audience-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.audience-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.audience-header h3 {
    font-size: 24px;
    margin: 0;
}

.audience-content {
    padding: 30px;
}

.audience-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.audience-content ul {
    list-style: none;
    margin-top: 20px;
}

.audience-content li {
    padding: 8px 0;
    color: var(--gray);
    position: relative;
    padding-left: 25px;
}

.audience-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

/* Clients Section */
.clients-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    text-align: center;
}

.clients-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}

.clients-section p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.client-logo {
    padding: 25px 15px;
    background: var(--light);
    border-radius: 10px;
    font-weight: 700;
    color: var(--dark);
    transition: all 0.3s ease;
}

.client-logo:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: #e69008;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 144, 8, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .content-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .types-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .know-more-section {
        padding: 40px 0;
    }

    .section-header h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .content-section,
    .features-highlight,
    .cities-section,
    .importance-point,
    .type-card,
    .clients-section,
    .cta-section {
        padding: 30px;
    }

    .detailed-features {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }

    .section-header h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .content-section,
    .features-highlight,
    .cities-section,
    .importance-point,
    .type-card,
    .clients-section,
    .cta-section {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .feature-detail {
        flex-direction: column;
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background-color: white;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 14px;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background-color: var(--light);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-header .subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.demo-request {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 40px;
    transition: background-color 0.3s;
}

.demo-request:hover {
    background-color: var(--primary-dark);
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.pricing-card.free {
    border-top: 4px solid #2ecc71;
}

.pricing-card.basic {
    border-top: 4px solid var(--primary);
}

.pricing-card.professional {
    border-top: 4px solid #9b59b6;
}

.pricing-card.business {
    border-top: 4px solid #e74c3c;
}

.pricing-card.custom {
    border-top: 4px solid var(--secondary);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price.free {
    color: #2ecc71;
}

.price.basic {
    color: var(--primary);
}

.price.professional {
    color: #9b59b6;
}

.price.business {
    color: #e74c3c;
}

.price.custom {
    color: var(--secondary);
}

.features {
    list-style-type: none;
    margin-bottom: 25px;
    text-align: left;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
    margin-right: 10px;
}

.select-plan {
    background-color: var(--dark);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.select-plan:hover {
    background-color: #34495e;
}

.custom-plan-note {
    text-align: center;
    color: var(--gray);
    font-style: italic;
    margin-top: 20px;
}

/* Features Comparison Table */
.features-comparison {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.features-comparison h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
    font-size: 2rem;
}

/* Desktop Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95rem;
}

.comparison-table th {
    background: var(--primary);
    color: white;
    padding: 18px 12px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.comparison-table th:first-child {
    background: var(--dark);
    text-align: left;
    padding-left: 20px;
    width: 300px;
}

.comparison-table td {
    padding: 16px 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8fafc;
    padding-left: 20px;
    width: 300px;
    color: var(--dark);
}

/* Feature status styling */
.feature-check {
    color: var(--success);
    font-weight: bold;
    font-size: 1.3rem;
}

.feature-demo {
    color: var(--primary);
    font-weight: 600;
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: inline-block;
}

.feature-support {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.3;
    font-weight: 500;
}

/* Row hover effect */
.comparison-table tr:hover td {
    background: #f1f5f9;
}

.comparison-table tr:hover td:first-child {
    background: #e2e8f0;
}

@media (max-width: 768px) {
    .features-comparison {
        padding: 20px 15px;
        margin: 40px 0;
    }

    .features-comparison h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    /* Hide the table on mobile */
    .comparison-table {
        display: none;
    }

    /* Mobile cards view */
    .features-mobile {
        display: block;
    }

    .feature-mobile-card {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .feature-mobile-header {
        background: var(--dark);
        color: white;
        padding: 15px;
        font-weight: 600;
        font-size: 1rem;
    }

    .feature-mobile-content {
        padding: 0;
    }

    .feature-mobile-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        border-bottom: 1px solid #e2e8f0;
    }

    .feature-mobile-row:last-child {
        border-bottom: none;
    }

    .feature-mobile-plan {
        font-weight: 600;
        color: var(--dark);
        font-size: 0.9rem;
        min-width: 80px;
    }

    .feature-mobile-status {
        text-align: right;
        flex: 1;
    }
}

/* Desktop Styles - Hide mobile cards */
@media (min-width: 769px) {
    .features-mobile {
        display: none;
    }

    .comparison-table {
        display: table;
    }
}

/* Pricing Info Section */
.pricing-info {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-info h2 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 2rem;
}

.pricing-info h3 {
    color: var(--primary);
    margin: 25px 0 15px;
}

.pricing-info p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.pricing-info .pricing-highlight p {
    color: black;
}

.pricing-highlight h3 {
    color: white;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    color: var(--dark);
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 0px 0;
}

.faq-question {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--gray);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.get-quote {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: background 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.get-quote:hover {
    background: #e69008;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .pricing-header h1 {
        font-size: 2.5rem;
    }

    .features-comparison,
    .pricing-info,
    .faq-section {
        padding: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    .nav-links {
        display: none;
        /* hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        /* 👈 navbar ke niche open hoga */
        left: 0;
        width: 100%;
        background: #fff;
        text-align: center;
        padding: 20px 0;
        z-index: 999;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links li a:hover {
        color: var(--google-blue);
    }

    .navbar .cta-button {
        display: none;
    }

    .logo {
        margin-left: 0;
        height: 10vh;
        width: 38vw;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .trusted-container {
        display: flex;
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .partner-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .partner-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table-home {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .partner-card,
    .love-section {
        padding: 30px;
    }

    .review-platforms {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .features-grid.detailed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .partner-card,
    .love-section {
        padding: 20px;
    }

    .logo-placeholder svg {
        width: 60px;
        height: 60px;
    }

    .platform-card {
        padding: 20px;
    }

    .feature-card {
        padding: 20px;
    }
}