@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@400;500;700&display=swap');

/* ===================================
   MAVE AVL Theme - Main Styles
   =================================== */

/* CSS Variables - Exact colors from design */
:root {
    --primary-blue: #3b82f6;
    --dark-navy: #0f172a;
    --dark-bg: #1e293b;
    --light-blue: #60a5fa;
    --gradient-start: #3b82f6;
    --gradient-end: #8b5cf6;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
}

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

body {
    font-family: 'Host Grotesk', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    font-size: 15px;
}

html {
    scroll-behavior: smooth;
}
.lang-toggle button{
    background: #213359;
    padding: 5px 10px;
    border: none;
    border-radius: 2px;
    color: var(--white);
    cursor: pointer;
    font-weight: bold;
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Public Sans', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-navy);
}

.section-title, .hero-title, h1 {
    font-size: 32px;
    font-weight: 800;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

h4, h5, h6 {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .section-title, .hero-title, h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .section-title, .hero-title, h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 17px;
    }
    h3 {
        font-size: 15px;
    }
}

/* Gradient Text */
.typing-caret {
  display: inline-block;
  width: 1ch;
  color: inherit;
  font-weight: 400;
  font-family: inherit;
  animation: blink-caret 1s steps(1) infinite;
}

@keyframes blink-caret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Section Labels */
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    background: var(--dark-navy);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.site-logo img {
    max-height: 40px;
}

.main-nav .menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav .menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav .menu a:hover {
    color: var(--primary-blue);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: var(--dark-navy);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero Title */
.hero-title {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.hero-main-image .hero-main-video-inner{
  box-shadow: inset 0px 0px 20px 16px #0f1931;
    border-radius: 50%;
    width: 340px;
    height: 340px;
    clip-path: circle(50% at 50% 50%);
    object-fit: cover;
    object-position: center;
}

.hero-main-image video.hero-image {
    width: 340px;
    height: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
    box-shadow: 0 0 80px 10px rgba(59,130,246,0.18);
}
.hero-main-image video {
  mix-blend-mode: screen; /* removes black */
}

.hero-main-image .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 50px rgba(0,0,0,1);
  pointer-events: none;
}
.hero-image {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-main-image:hover .hero-image {
    transform: scale(1.02);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-main-image:hover .image-glow {
    opacity: 1;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(1deg); 
    }
}

/* Analytics Card */
.analytics-card {
    bottom: 30px;
    left: -30px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: 280px;
    animation-delay: 0.5s;
}

.analytics-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.analytics-card .card-content {
    flex: 1;
}

.analytics-card .card-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark-navy);
}

.analytics-card .card-content p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.card-stats {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-600);
}

/* Contact Preview Card */
.contact-preview {
    top: 40px;
    right: -40px;
    padding: 20px;
    width: 260px;
    animation-delay: 1s;
}

.form-preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.form-dots {
    display: flex;
    gap: 4px;
}

.form-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
}

.form-dots span:nth-child(1) { background: #ff5f57; }
.form-dots span:nth-child(2) { background: #ffbd2e; }
.form-dots span:nth-child(3) { background: #28ca42; }

.form-preview-header h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
}

.form-preview-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field {
    height: 36px;
    background: var(--gray-100);
    border-radius: 6px;
    animation: pulse-field 2s ease-in-out infinite;
    padding: 5px;
    border: 1px solid var(--gray-200);
}

.form-field.short {
    height: 60px;
}

@keyframes pulse-field {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.form-button {
    height: 40px;
    background: var(--primary-blue);
    border-radius: 6px;
    margin-top: 6px;
    border: none;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: var(--gradient-end);
}

/* Hero Partners */
.hero-partners {
    background: #0f172a;
    padding: 50px 0;
    
}

.partners-wrapper {
    text-align: center;
}

.partners-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 140px;
    height: auto;
    opacity: 0.5;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--gradient-end));
    padding: 40px;
    border-radius: 16px;
    color: var(--white);
    margin-bottom: 30px;
}

.about-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: 100px 0;
    background: var(--primary-blue);
    color: var(--white);
}

.features-section .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.features-section .section-title {
    color: var(--white);
}

.features-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.product-content p {
    font-size: 14px;
    color: var(--gray-600);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--gray-600);
}

.testimonial-rating {
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.signage-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.signage-right .section-label {
    color: var(--primary-blue);
}

.signage-right .section-title {
    color: var(--white);
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 16px;
    color: var(--white);
}

.faq-icon {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: bold;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-container{
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}
.cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    opacity: 0.7;
    animation: gridFade 4s linear infinite alternate;
}
@keyframes gridFade {
    0% { opacity: 0.7; }
    100% { opacity: 0.4; }
}
.cta-container {
    padding: 100px 0;
    background: linear-gradient(270deg, #3b82f6, #0693e3, #3b82f6);
    background-size: 400% 400%;
    text-align: center;
    border-radius: 5px;
    animation: ctaGradientMove 18s ease-in-out infinite;
}
@keyframes ctaGradientMove {
    0% {background-position:0% 50%}
    50% {background-position:100% 50%}
    100% {background-position:0% 50%}
}
.cta-section {
   background-color: #10192b;
   
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* ===================================
   SERVICES PAGE (ENHANCED)
   =================================== */
.services-hero {
  padding: 120px 0 60px 0;
  background: var(--dark-navy);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}

.services-hero-title {
  color: #fff;
  margin-bottom: 16px;
}

.services-hero-subtitle {
  color: #cbd5e1;
  max-width: 620px;
}

.services-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-hero-meta {
  font-size: 13px;
  color: #9ca3af;
}

.services-hero-icons-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-hero-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(148,163,184,0.4);
}

.services-hero-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #e0f2fe, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(15,23,42,0.8);
  
}

.services-hero-icon svg {
  width: 14px;
  height: 14px;
  stroke: #0f172a;
  stroke-width: 1.8;
  fill: none;
}

.services-hero-icon-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e5e7eb;
  font-weight: 600;
}

.services-hero-right {
  display: flex;
  justify-content: flex-end;
}

.services-stats-card {
  background: radial-gradient(circle at top, rgba(59,130,246,0.35), rgba(17,24,39,1));
  border-radius: 20px;
  padding: 24px 24px 22px 24px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.5);
  max-width: 340px;
  width: 100%;
}

.services-stats-header {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bfdbfe;
  margin-bottom: 16px;
}

.services-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.services-stat:nth-child(3) {
  grid-column: span 2;
}

.services-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #e5e7eb;
}

.services-stat-label {
  font-size: 13px;
  color: #9ca3af;
}

.services-section {
  background: var(--gray-100);
}

.services-grid {
  gap: 32px;
}

.service-card {
  position: relative;
  padding-top: 20px;
}

.service-card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 24px;
  margin-bottom: 10px;
}

.service-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0%, #eff6ff, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(59,130,246,0.35);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0f172a;
  stroke-width: 1.8;
  fill: none;
}

.service-card-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1d4ed8;
  background: #e0edff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.service-card .product-content ul {
  margin-top: 10px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gray-600);
}

.service-card .product-content ul li + li {
  margin-top: 4px;
}

.services-process-section {
  background: #0b1220;
}

.services-process-section .section-title,
.services-process-section .section-description {
  color: #e5e7eb;
}

.services-steps-grid {
  gap: 24px;
}

.service-step-card {
  background: rgba(15,23,42,0.9);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(15,23,42,0.9);
  border: 1px solid rgba(55,65,81,0.9);
}

.service-step-card .product-content h3 {
  color: #e5e7eb;
}

.service-step-card .product-content p {
  color: #9ca3af;
}

.service-step-number {
  font-size: 24px;
  font-weight: 800;
  color: #4f46e5;
  padding: 18px 24px 0 24px;
}

@media (max-width: 1024px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-right {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 80px 0 40px 0;
  }

  .services-hero-icons-row {
    gap: 8px;
  }

  .services-stats-card {
    max-width: 100%;
  }
}

/* ===================================
   ABOUT US PAGE
   =================================== */
.about-hero-section {
  position: relative;
  background: linear-gradient(120deg, #1e293b 0%, #0f172a 60%, #3b82f6 120%);
  padding: 120px 0 60px 0;
  overflow: hidden;
}
.trending-hero-bg {
  background: linear-gradient(120deg, #1e293b 0%, #0f172a 60%, #3b82f6 120%);
  position: relative;
}
.about-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.about-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.about-hero-content {
  flex: 1 1 0%;
  min-width: 320px;
  max-width: 600px;
}
.about-hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6 30%, #8b5cf6 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.09em;
  box-shadow: 0 2px 12px rgba(59,130,246,0.10);
  text-transform: uppercase;
}
.about-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.12;
}
.about-hero-desc {
  color: #cbd5e1;
  font-size: 1.18rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.about-hero-actions {
  margin-bottom: 36px;
}
.about-hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 18px;
}
.about-hero-stat {
  text-align: left;
}
.about-hero-stat-value {
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 2px;
  text-shadow: 0 4px 24px #3b82f6aa;
  transition: color 0.2s;
}
.about-hero-stat-label {
  color: #93c5fd;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.about-hero-image-card {
  position: relative;
  flex: 1 1 0%;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(59,130,246,0.21), 0 2px 24px rgba(15,23,42,0.13);
}
.about-hero-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 24px;
  min-height: 280px;
  object-fit: cover;
}
.about-hero-card-glow {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, #3b82f6 0%, #0f172a 70%, transparent 100%);
  opacity: 0.18;
  filter: blur(24px);
  pointer-events: none;
}
.about-hero-card-floating {
  position: absolute;
  bottom: -26px;
  left: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.13);
  padding: 13px 22px 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  min-width: 120px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
  border: 1.5px solid #e0e7ef;
}
.about-hero-card-icon {
  background: #e0edff;
  border-radius: 50%;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-card-label {
  color: #3b82f6;
  font-weight: 700;
  font-size: 1.01rem;
}
@media (max-width: 1100px) {
  .about-hero-flex {
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
  }
  .about-hero-image-card {
    align-self: center;
  }
}
@media (max-width: 768px) {
  .about-hero-section {
    padding: 64px 0 36px 0;
  }
  .about-hero-title {
    font-size: 1.65rem;
  }
  .about-hero-flex {
    flex-direction: column;
    gap: 34px;
    align-items: flex-start;
  }
  .about-hero-image-card {
    min-width: 0;
    max-width: 100%;
  }
  .about-hero-card-floating {
    left: 12px;
    bottom: -18px;
    font-size: 0.98rem;
    padding: 10px 14px 10px 10px;
  }
  .about-hero-card-glow {
    width: 200px;
    height: 200px;
  }
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-hero-left .section-label {
  color: var(--primary-blue);
}
.about-hero-right img {
  width: 100%;
  max-width: 440px;
  border-radius: 18px;
  box-shadow: 0 10px 48px rgba(59,130,246,0.18);
}

.about-story-section {
  background: #f7faff;
  padding: 90px 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text .section-title {
  color: var(--dark-navy);
}
.about-list {
  margin: 28px 0 0 0;
  padding: 0 0 0 18px;
  color: var(--primary-blue);
  font-size: 15px;
  line-height: 2;
}
.about-story-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(15,23,42,0.12);
}

.about-team-section {
  background: #fff;
  padding: 90px 0 60px 0;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}
.about-team-card {
  background: #f7faff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(59,130,246,0.08);
  padding: 32px 16px 24px 16px;
  text-align: center;
  width: 100%;
  max-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-team-card:hover {
  box-shadow: 0 16px 48px rgba(59,130,246,0.18);
  transform: translateY(-4px) scale(1.03);
}
.about-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid #e0e7ef;
}
.about-team-name {
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.about-team-role {
  color: #3b82f6;
  font-size: 0.98rem;
  font-weight: 500;
}

.about-diff-section {
  background: #f1f5f9;
  padding: 90px 0 60px 0;
}
.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 32px;
}
.about-diff-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(59,130,246,0.07);
  padding: 38px 20px 30px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-diff-card:hover {
  box-shadow: 0 12px 40px rgba(59,130,246,0.13);
  transform: translateY(-2px) scale(1.02);
}
.about-diff-icon {
  margin-bottom: 16px;
}
.about-diff-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-navy);
}
.about-diff-desc {
  color: #475569;
  font-size: 0.97rem;
}

@media (max-width: 1024px) {
  .about-hero-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-team-grid,
  .about-diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .about-hero-section,
  .about-story-section,
  .about-team-section,
  .about-diff-section {
    padding: 48px 0 32px 0;
  }
  .about-team-grid,
  .about-diff-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-team-card {
    max-width: 100%;
  }
}

/* ===================================
   FOOTER (ENHANCED)
   =================================== */
.site-footer {
  background: var(--dark-navy);
  color: var(--gray-300);
  padding: 0;
  border-top: 1px solid rgba(59,130,246,0.10);
}

.footer-flex {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 56px 0 24px 0;
  align-items: flex-start;
}

.footer-logo img {
  display: block;
  margin-bottom: 18px;
  max-width: 160px;
}

.footer-company {
  color: #e0e7ef;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-address,
.footer-contact {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
  color: #b6c8e0;
}

.footer-address svg,
.footer-contact svg {
  margin-right: 7px;
}

.footer-contact a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.2s;
	display:content;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-links h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 14px;
}

.footer-menu a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.footer-menu a svg {
  min-width: 16px;
  min-height: 16px;
  margin-right: 4px;
}

.footer-menu a:hover {
  color: var(--primary-blue);
}

.footer-social h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(59,130,246,0.10);
  border-radius: 50%;
  color: #3b82f6;
  transition: all 0.2s;
  font-size: 1.3rem;
  border: 1px solid rgba(59,130,246,0.08);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  stroke: #3b82f6;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.2s;
}

.social-icon:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-3px) scale(1.06);
}

.social-icon:hover svg {
  stroke: #fff;
}

.footer-bottom-bar {
  background: #151c2f;
  border-top: 1px solid rgba(59,130,246,0.08);
  padding: 12px 0;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #b6c8e0;
}

.footer-bottom-left {
  font-weight: 500;
}

.footer-bottom-right {
  color: #b6c8e0;
}

@media (max-width: 1024px) {
  .footer-flex {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-flex {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0 18px 0;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Client Slider Section */
.client-slider-section {
  position: relative;
  padding: 80px 0 100px 0;
  background: none;
  z-index: 1;
  min-height: 600px;
}
.client-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  opacity: 1;
}
.client-slider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.client-slider-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 36px;
}
.client-slider-title {
  color: #fff;
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.client-slider-subtitle {
  color: #dbeafe;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-weight: 400;
}
.client-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-height: 420px;
}
.client-slider-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 12px rgba(59,130,246,0.10);
  color: #3b82f6;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
    
  cursor: pointer;
  margin: 0 22px;
  position: relative;
  z-index: 3;
  top: 0;
  padding: 15px;
}
.client-slider-arrow.left { left: 0; }
.client-slider-arrow.right { right: 0; }
.client-slider-arrow:hover {
  background: #3b82f6;
  color: #fff;
}
.client-slider-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
}
.client-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.7,.3,.2,1);
  gap: 10px;
  padding: 6px 0 18px 0;
}
.client-slider-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.15);
  min-width: 330px;
  max-width: 370px;
  flex: 0 0 33.333%;
  padding: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}
.client-slider-video {
  width: 100%;
  height: 145px;
  background: #e0e7ff;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.client-slider-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.client-slider-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(59,130,246,0.18));
}
.client-slider-quote-icon {
  color: #3b82f6;
  font-size: 2.3rem;
  margin: 24px 0 10px 0;
  line-height: 1;
  font-weight: 700;
  align-self: flex-start;
  margin-left: 32px;
}
.client-slider-text {
  color: #222;
  font-size: 1.09rem;
  font-family: 'Host Grotesk', Arial, sans-serif;
  text-align: left;
  margin: 0 32px 28px 32px;
  min-height: 90px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}
.client-slider-client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 32px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  width: calc(100% - 64px);
}
.client-slider-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e7ff;
  background: #f3f4f6;
}
.client-slider-client-info {
  display: flex;
  flex-direction: column;
}
.client-slider-name {
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  margin-bottom: 2px;
}
.client-slider-role {
  font-size: 0.93rem;
  color: #3b82f6;
}
@media (max-width: 1200px) {
  .client-slider-track {
    gap: 18px;
  }
  .client-slider-card {
    min-width: 260px;
    max-width: 300px;
  }
}
@media (max-width: 900px) {
  .client-slider-track {
    gap: 8px;
  }
  .client-slider-card {
    min-width: 220px;
    max-width: 260px;
  }
}
@media (max-width: 768px) {
  .client-slider-section {
    padding: 40px 0 60px 0;
  }
  .client-slider-header {
    margin-bottom: 18px;
  }
  .client-slider-track {
    gap: 8px;
  }
  .client-slider-card {
    min-width: 92vw;
    max-width: 97vw;
    flex: 0 0 100%;
    padding-bottom: 16px;
  }
  .client-slider-viewport {
    max-width: 100vw;
  }
}

/* END Client Slider Section */

/* FAQ Section - Modern Dark */
.dark-faq-bg {
  background: #10192b !important;
}
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #18213a;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(16,25,43,0.08);
  padding: 0 0 0 0;
  transition: box-shadow 0.2s;
  overflow: hidden;
}
.faq-item.open {
  box-shadow: 0 8px 32px rgba(59,130,246,0.18);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.faq-question h4 {
  margin: 0;
  color: #fff;
}
.faq-toggle {
  background: #22305b;
  border: none;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #6ea8fe;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.faq-toggle:focus,
.faq-toggle:hover {
  background: #2563eb;
  color: #fff;
}
.faq-plus {
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.open .faq-plus {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #18213a;
  color: #b6c8e0;
  font-size: 1rem;
  padding: 0 32px;
  transition: max-height 0.4s cubic-bezier(.7,.3,.2,1), padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 16px 32px 24px 32px;
}
.signage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .faq-question, .faq-answer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 900px) {
  .signage-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-content,
    .about-grid,
    .signage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-section {
        padding: 60px 0 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-circle-1 {
        width: 400px;
        height: 400px;
    }
    
    .hero-circle-2 {
        width: 300px;
        height: 300px;
    }
    
    .analytics-card {
        left: 0;
        bottom: 20px;
        min-width: 240px;
    }
    
    .contact-preview {
        right: 0;
        top: 20px;
        width: 220px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav .menu {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .hero-section {
        padding: 40px 0 0;
    }
    
    .hero-content {
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
    }
    
    .hero-circle-1,
    .hero-circle-2 {
        display: none;
    }
    
    .analytics-card {
        position: static;
        margin: 20px 0;
        min-width: auto;
    }
    
    .contact-preview {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-logo img {
        max-width: 100px;
    }
}
