 

/* ====== CRITICAL CSS - LOADS FIRST ====== */
:root {
    /* Color Variables */
    --primary-light: #00bfff; /* Accent Green */
    --primary-dark: #0476a3; /* Main Brand Green */
    --accent-call-bg: #0476a3; /* Phone Button Gradient */
    --text-primary: #1a1a1a;
    --text-heading: #000000;
    --background-white: #ffffff;
    
    /* Shadow Variables */
    --shadow-base: rgba(0, 0, 0, 0.15);
    --shadow-hover: rgba(0, 0, 0, 0.25);
    --cta-shadow: rgba(143, 176, 24, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    overflow-x: hidden;
}



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

/* ====== HERO SECTION ====== */

.app-card .app-link:hover {
    color: #000;
}

.hero {
    padding: 100px 0 60px;
    text-align: center;
        height: 100%;
        margin-top:50px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-heading);
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h1 span {
    color: var(--primary-light);
}

.subhead {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-weight: 700; /* Increased weight for visibility/contrast */
}

/* ====== CTA BAR ====== */
.cta-bar {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    padding: 25px 0;
    text-align: center;
    margin: 0 0 40px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--cta-shadow);
}

.cta-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-bar p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-dark);
    padding: 14px 28px;
    margin: 5px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-dark);
    background: rgb(245, 255, 230);
}

.cta-button.phone {
    background: var(--accent-call-bg);
    color: white;
}

/* ====== SECTIONS COMMON ====== */
.section {
    padding: 40px 0;
    margin-bottom: 3px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--text-heading);
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    border-radius: 2px;
}

/* ====== WHY CHOOSE SECTION ====== */
.why-choose-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-point-card {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-base);
    transition: all 0.3s ease;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.why-point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.why-point-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
}

.why-point-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* ====== SERVICES SECTION ====== */
.services-grid {
    /* MODIFIED: Using auto-fit for fluid responsiveness (3 columns to 2 to 1) */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px;
}

.service-item {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-base);
    color: #ffffff;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

/* ====== APPEXCHANGE APPS SECTION ====== */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.app-card {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px var(--shadow-base);
    transition: all 0.3s ease;
    color: #ffffff;
    position: relative;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}


.app-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    padding-right: 60px;
}

.app-description {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.app-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.app-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}



/* ====== CLIENT SECTION ====== */
.client-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
}

.client-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #000000;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.client-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #0476a3;
    border-radius: 2px;
}

.client-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
    min-height: 140px;
    border: 1px solid rgba(143, 176, 24, 0.1);
}

.logo-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 60px;
    transition: all 0.3s ease;
    opacity: 1;
    object-fit: contain;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #0476a3;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ====== RESPONSIVE BREAKPOINTS ====== */

/* Tablet */
@media (max-width: 992px) {
    .client-section {
        padding: 50px 0;
    }
    
    .client-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .logo-item {
        padding: 25px;
        min-height: 120px;
    }
    
    .logo-item img {
        max-height: 50px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .client-section {
        padding: 40px 0;
    }
    
    .client-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .logo-item {
        padding: 20px;
        min-height: 110px;
    }
    
    .logo-item img {
        max-height: 45px;
    }
    
    .client-intro {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .client-section {
        padding: 30px 0;
    }
    
    .client-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
    
    .client-section .section-title::after {
        width: 80px;
        height: 3px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .logo-item {
        padding: 15px;
        min-height: 90px;
        border-radius: 8px;
    }
    
    .logo-item img {
        max-height: 35px;
    }
    
    .client-intro {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .logo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .logo-item {
        min-height: 80px;
        padding: 15px;
    }
    
    .logo-item img {
        max-height: 30px;
    }
    
    .client-section .section-title {
        font-size: 1.4rem;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .logo-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
    }
    
    .logo-item {
        min-height: 150px;
        padding: 35px;
    }
    
    .logo-item img {
        max-height: 70px;
    }
}



























/* ====== WORLD SECTION ====== */
.cities-section {
    background: linear-gradient(135deg, rgba(143, 176, 24, 0.1), rgba(32, 81, 10, 0.1));
    padding: 60px 0;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.city-tag {
    background: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-dark);
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
}

.city-tag:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-3px);
}

/* ====== SEO CONTENT SECTION ====== */
.seo-content {
    background: var(--background-white);
    border-radius: 12px;
    padding: 20px 40px;
    line-height: 1.8;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
    border: 1px solid rgba(143, 176, 24, 0.1);
}

.seo-content h2 {
    color: var(--text-heading);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.seo-points {
    list-style: none;
}

.seo-point {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #333333;
}

.seo-point::before {
    content: '✓';
    color: var(--primary-light);
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* ====== FEATURED SECTION ====== */
.featured-section {
    margin-top: 0px;
    margin-bottom: 0px;
}

.featured-list {
    list-style: none;
    background: var(--background-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(143, 176, 24, 0.1);
}

.featured-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.featured-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.featured-title {
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 10px;
    font-weight: 700;
}

.featured-description {
    color: #333333;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.featured-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
    /* .services-grid rule removed due to auto-fit logic */

    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .subhead {
        font-size: 1.3rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }

    .cta-bar .container {
        flex-direction: column;
    }

    .services-grid {
        /* This now forces 1 column, overriding auto-fit below 768px */
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 35px 20px;
    }

    .seo-content {
        padding: 40px 25px;
    }

    .featured-list {
        padding: 30px 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
        
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .why-choose-points,
    .apps-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .logo-item {
        padding: 20px;
        min-height: 100px;
    }

    .logo-item img {
        max-height: 50px;
    }
}

/* ====== ACCESSIBILITY ====== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ====== PRINT STYLES ====== */
@media print {
    .cta-bar,
    .app-link,
    .featured-link {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section {
        page-break-inside: avoid;
    }
}

