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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #FFFFFF;
}

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

/* Header */
header {
    background: #001765;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 23, 101, 0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

/* Redesigned logo with smooth transparent borders and color transitions */
.logo-redesigned {
    height: 75px;
    width: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 188, 212, 0.1) 50%, rgba(0, 23, 101, 0.1) 100%);
    padding: 8px;
    box-shadow: 
        0 0 20px rgba(0, 188, 212, 0.3),
        0 0 40px rgba(0, 188, 212, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-redesigned::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(0, 188, 212, 0.6) 0%, 
        rgba(0, 23, 101, 0.8) 25%, 
        rgba(0, 188, 212, 0.6) 50%, 
        rgba(0, 23, 101, 0.8) 75%, 
        rgba(0, 188, 212, 0.6) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-redesigned:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 188, 212, 0.5),
        0 0 60px rgba(0, 188, 212, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.logo-redesigned:hover::before {
    opacity: 1;
}

/* Alternative circular logo with gradient border */
.logo-circular {
    height: 63px;
    width: 63px;
    border-radius: 50%;
    object-fit: cover;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border: 3px solid;
    border-image: linear-gradient(45deg, rgba(0, 188, 212, 0.8), rgba(0, 23, 101, 0.8), rgba(0, 188, 212, 0.8)) 1;
    filter: drop-shadow(0 4px 15px rgba(0, 188, 212, 0.3));
    transition: all 0.3s ease;
}

.logo-circular:hover {
    filter: drop-shadow(0 6px 20px rgba(0, 188, 212, 0.5));
    transform: rotate(5deg) scale(1.1);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

nav > ul > li > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 0;
}

/* Global link styling - remove underlines from all clickable elements */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

nav > ul > li > a:hover,
nav > ul > li:hover > a {
    background: rgba(0, 188, 212, 0.1);
    color: #00BCD4;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #001765;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 23, 101, 0.3);
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s ease;
    z-index: 1000;
    border-top: 3px solid #00BCD4;
    display: flex;
    flex-direction: column;
}

/* Single-level dropdown styles */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
}

.dropdown-menu a:hover {
    background: #00BCD4;
    color: white;
    padding-left: 2rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 40px;
    padding: 100px 0;
    color: #2D3748;
    position: relative;
}

/* Homepage hero with white background */
.hero-with-bg {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

/* Smart Retail hero with heatmap background */
.smart-retail-hero {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.smart-retail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('/images/retail-heatmap-bg.png') right center / contain no-repeat;
    opacity: 0.15;
    z-index: 1;
}

/* Smart Warehouse hero with warehouse icon background */
.smart-warehouse-hero {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.smart-warehouse-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('/images/rfid-inventory.svg') right center / contain no-repeat;
    opacity: 0.1;
    z-index: 1;
}

/* Smart Home hero with home automation icon background */
.smart-home-hero {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.smart-home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('/images/home-automation.svg') right center / contain no-repeat;
    opacity: 0.1;
    z-index: 1;
}

/* Custom Solutions hero with IoT ecosystem background */
.custom-solutions-hero {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.custom-solutions-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('/images/iot-ecosystem.svg') right center / contain no-repeat;
    opacity: 0.1;
    z-index: 1;
}

/* About hero with enterprise IoT background */
.about-hero {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('/images/hero-enterprise-iot.svg') right center / contain no-repeat;
    opacity: 0.1;
    z-index: 1;
}

/* Product pages hero styling */
.product-hero {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

/* Smart Retail hero with heatmap background */
.smart-retail-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%), url('/images/retail-heatmap-analysis.png') center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

/* Smart Retail page hero with icon background */
.smart-retail-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%),
                url('/images/smart-retail-bg.png') right center / contain no-repeat;
    background-size: auto 80%, contain;
    background-position: 85% center, right center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

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

.hero-logo-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 23, 101, 0.1));
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 3;
    opacity: 0.8;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
}

/* Homepage hero text styling */
.hero-with-bg .hero-text {
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    max-width: 900px;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 23, 101, 0.08), 0 8px 25px rgba(0, 23, 101, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

/* Smart Retail hero text styling */
.smart-retail-hero .hero-text {
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 23, 101, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Homepage hero text colors (dark background) */
.hero-with-bg h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-with-bg .subtitle {
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Smart Retail hero text colors (light background) */
.smart-retail-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.smart-retail-hero .subtitle {
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero .stats {
    font-size: 1.1rem;
    color: #001765;
    font-weight: 600;
    margin-bottom: 3rem;
}

.hero-image {
    text-align: center;
}

.hero-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
}

.cta-button {
    display: inline-block;
    background: #001765;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #002080;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 23, 101, 0.3);
}

/* IoT Ecosystem Section */
.iot-ecosystem-section {
    padding: 100px 0;
    background: #FAFBFC;
}

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

.ecosystem-image {
    text-align: right;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.ecosystem-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
}

.ecosystem-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ecosystem-text p {
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.ecosystem-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ecosystem-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ecosystem-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #001765 0%, #003CB3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ecosystem-feature .feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 0.5rem;
    text-align: left;
}

.ecosystem-feature .feature-text p {
    font-size: 1rem;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

/* Center align main title and subtitle for Our Development Approach section */
.technologies-section .section-title,
.technologies-section .section-subtitle {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trusted Clients Section */
.trusted-clients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trusted-clients-content {
    text-align: center;
}

.trusted-clients-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.trusted-clients-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-carousel-container {
    overflow: hidden;
    margin-bottom: 4rem;
    max-width: 100%;
    position: relative;
}

.clients-carousel {
    display: flex;
    animation: scroll-left 30s linear infinite;
    gap: 3rem;
    width: max-content;
}

.clients-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 23, 101, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 23, 101, 0.15);
    border-color: #00BCD4;
}

.client-placeholder {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748B;
    letter-spacing: 1px;
}

.client-logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

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

.clients-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.client-stat {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001765;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #001765, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #64748B;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive adjustments for trusted clients */
@media (max-width: 768px) {
    .trusted-clients-section {
        padding: 60px 0;
    }
    
    .trusted-clients-title {
        font-size: 2rem;
    }
    
    .trusted-clients-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .clients-carousel {
        gap: 2rem;
    }
    
    .client-logo {
        height: 80px;
        width: 160px;
    }
    
    .client-placeholder {
        font-size: 1rem;
    }
    
    .clients-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .client-logo {
        height: 70px;
        width: 140px;
    }
    
    .clients-stats {
        grid-template-columns: 1fr;
    }
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 23, 101, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    min-height: auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 23, 101, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #001765, #00BCD4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748B;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 4px solid #00BCD4;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 23, 101, 0.1);
}

.feature-image {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* Modern Solutions Cards Layout */
.solutions-modern {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 23, 101, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 23, 101, 0.12);
    border-color: #00BCD4;
}

.solution-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.solution-icon.retail-icon {
    background: linear-gradient(135deg, #001765 0%, #003CB3 100%);
    color: white;
}

.solution-icon.warehouse-icon {
    background: linear-gradient(135deg, #001765 0%, #003CB3 100%);
    color: white;
}

.solution-icon.home-icon {
    background: linear-gradient(135deg, #001765 0%, #003CB3 100%);
    color: white;
}

.solution-icon.custom-icon {
    background: linear-gradient(135deg, #001765 0%, #003CB3 100%);
    color: white;
}

.solution-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.solution-card-header h3 a {
    color: #001765;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-card-header h3 a:hover {
    color: #00BCD4;
}

.solution-card-header p {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.solution-card .feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    transition: none;
}

.solution-card .feature-item:hover {
    transform: none;
    box-shadow: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card .feature-content {
    flex: 1;
}

.solution-card .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.solution-card .feature-content p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsiveness for modern cards */
@media (max-width: 768px) {
    .solutions-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-card-header h3 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .solution-card .feature-content h4 {
        font-size: 1rem;
    }
    
    .solution-card .feature-content p {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 23, 101, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001765;
    display: block;
}

.stat-label {
    color: #64748B;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 23, 101, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #001765;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status.loading {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Footer */
footer {
    background: #001765;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-about p {
    color: #B8C5D6;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #B8C5D6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Social Media Links */
.social-media-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #B8C5D6;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #00BCD4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    color: #B8C5D6;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
}

.footer-social-bottom {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #B8C5D6;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-bottom:hover {
    background: #00BCD4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.social-link-bottom svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #001765;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 23, 101, 0.1);
    }

    nav ul.mobile-active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Apply Retail Traffic Analytic styling to all feature items - keep icon left, text left-justified */
    .solution-card .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .solution-card .feature-item .feature-content {
        text-align: left;
    }

    .feature-image {
        width: 40px;
        height: 40px;
        align-self: center;
    }

    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social-bottom {
        gap: 0.75rem;
    }

    .social-link-bottom {
        width: 36px;
        height: 36px;
    }

    .social-link-bottom svg {
        width: 16px;
        height: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #002080;
        margin-top: 0.5rem;
        border-radius: 4px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Why Choose EVO Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

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

.why-choose-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #F8F9FA;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 23, 101, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #00BCD4;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 23, 101, 0.15);
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-choose-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: #64748B;
    line-height: 1.6;
    font-size: 1rem;
}

/* Page-specific styles */
.page-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #001765;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero .subtitle {
    font-size: 1.2rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

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

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
}

/* Mission & Vision Grid - 2 Columns */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 23, 101, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    border-left: 4px solid #00BCD4;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 23, 101, 0.15);
}

.benefit-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

/* Enhanced feature images for analytics section */
.feature-image {
    width: 120px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 23, 101, 0.1);
}

.features-enhanced .feature-card {
    padding: 2rem;
}

.features-enhanced .feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.features-enhanced .feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

/* Modern Hero Section */
.hero-modern {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #E8F4FD 0%, #F8F9FA 100%);
    min-height: 500px;
}

/* Index page specific hero with gradient to pure white */
.hero-modern.index-hero-gradient {
    background: linear-gradient(135deg, #E8F4FD 0%, #ffffff 100%);
}



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

.hero-text-modern {
    max-width: 500px;
}

.hero-title-main {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #001765;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-title-accent {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2196F3;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.6;
    margin: 2rem 0;
}

.hero-description strong {
    color: #001765;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #001765 0%, #002080 50%, #0026a0 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 8px 30px rgba(0, 23, 101, 0.3), 0 4px 15px rgba(0, 23, 101, 0.1);
    display: inline-block;
    text-align: center;
    min-width: 180px;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #002080 0%, #0026a0 50%, #0033c0 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 23, 101, 0.4), 0 6px 20px rgba(0, 23, 101, 0.15);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    color: #001765;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 23, 101, 0.2);
    box-shadow: 0 8px 30px rgba(0, 23, 101, 0.1), 0 4px 15px rgba(0, 23, 101, 0.05);
    display: inline-block;
    text-align: center;
    min-width: 180px;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #001765 0%, #002080 50%, #0026a0 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 23, 101, 0.3), 0 6px 20px rgba(0, 23, 101, 0.1);
    border-color: rgba(0, 23, 101, 0.4);
}

/* Responsive button styles */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        min-width: auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

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

.hero-image-container {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 23, 101, 0.2);
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-modern {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.stats-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 23, 101, 0.15);
    text-align: center;
    min-width: 100px;
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: #001765;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
}

/* Mobile responsiveness for modern hero */
@media (max-width: 768px) {
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* For about.html specifically - move image above title */
    .hero-visual-modern {
        order: -1;
    }
    
    .hero-title-main,
    .hero-title-accent {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .hero-image-container {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .hero-image-modern {
        max-width: 350px;
    }
    
    .stats-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        width: 280px;
        height: 280px;
    }
    
    .hero-image-modern {
        max-width: 280px;
    }
}

/* Dashboard Hero Specific Styles */
.hero-content-modern:has(.hero-visual-dashboard) {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hero-visual-dashboard {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-dashboard-container {
    position: relative;
    width: 100%;
    max-width: 1020px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 23, 101, 0.15);
    background: transparent;
}

.hero-dashboard-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
    border-radius: 15px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

/* Mobile responsiveness for dashboard hero */
@media (max-width: 768px) {
    .hero-content-modern:has(.hero-visual-dashboard) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual-dashboard {
        justify-content: center;
        order: -1;
    }
    
    .hero-dashboard-container {
        max-width: 100%;
        margin: 0 auto;
    }
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748B;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-features {
    list-style: none;
}

.benefit-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333333;
}

.benefit-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00BCD4;
    font-weight: bold;
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: #F8F9FA;
}

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

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

@media (max-width: 768px) {
    .technologies-grid-2col {
        grid-template-columns: 1fr;
    }
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 23, 101, 0.15);
}

.tech-image {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
}

.tech-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.tech-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-card-button {
    margin-top: auto;
    font-size: 0.9rem;
    padding: 10px 20px;
    align-self: center;
}

.tech-detail-button {
    margin-top: 1.5rem;
    padding: 12px 24px;
    display: inline-block;
}

.tech-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 23, 101, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

/* Tech Detail Grid */
.tech-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.tech-detail-card {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 23, 101, 0.1);
    transition: all 0.3s ease;
}

.tech-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 23, 101, 0.15);
}

.tech-detail-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.tech-detail-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.tech-detail-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.tech-detail-info p {
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.tech-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.tech-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.tech-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333333;
}

.tech-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00BCD4;
    font-weight: bold;
}

/* ROI Section */
.roi-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #001765 0%, #002080 100%);
    color: white;
    text-align: center;
}

.roi-section .section-title {
    color: white;
    margin-bottom: 3rem;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.roi-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.roi-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00BCD4;
    display: block;
    margin-bottom: 0.5rem;
}

.roi-label {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #F8F9FA;
    text-align: center;
    color: #001765;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #001765;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #64748B;
}

.cta-section .cta-button {
    background: #001765;
    color: white;
}

.cta-section .cta-button:hover {
    background: #002080;
    color: white;
}

/* Home Benefits */
.home-benefits .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 23, 101, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 23, 101, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #64748B;
    line-height: 1.6;
}

/* Savings Section */
.savings-section {
    padding: 80px 0;
    background: white;
    color: #001765;
    text-align: center;
}

.savings-section .section-title {
    color: #001765;
    margin-bottom: 3rem;
}

.savings-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.savings-stat {
    text-align: center;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 12px;
    border: 2px solid #E0E0E0;
}

.savings-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    display: block;
    margin-bottom: 0.5rem;
}

.savings-label {
    color: #001765;
    font-weight: 500;
}

/* Custom Solutions Styles */
.approach-section {
    padding: 100px 0;
    background: #FAFBFC;
    position: relative;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E8ECF0 50%, transparent 100%);
}

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

/* Expertise Cards - Modern Enterprise Design */
.approach-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #FFFFFF;
    border: 1px solid #E8ECF0;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 23, 101, 0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.approach-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 23, 101, 0.15);
    border-color: #001765;
    text-decoration: none;
}

/* Pokemon GO Inspired Icon Styles */
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001765 0%, #003CB3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 23, 101, 0.2);
    position: relative;
    overflow: visible;
}

.pokemon-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000B3D 0%, #001765 50%, #000F55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 11, 61, 0.3),
        0 0 0 0px rgba(0, 23, 101, 0);
    cursor: pointer;
    overflow: visible;
}

.pokemon-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        rgba(0, 188, 212, 0.8) 0%, 
        rgba(0, 150, 180, 0.8) 25%, 
        rgba(0, 188, 212, 0.8) 50%, 
        rgba(0, 150, 180, 0.8) 75%, 
        rgba(0, 188, 212, 0.8) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
    animation: rotate 3s linear infinite;
    animation-play-state: paused;
}

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

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 23, 101, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 23, 101, 0);
    }
}

.icon-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-main svg {
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}


/* Hover Effects */
.approach-step:hover .pokemon-icon {
    transform: scale(1.1);
    box-shadow: 
        0 8px 25px rgba(0, 11, 61, 0.4),
        0 0 0 8px rgba(0, 23, 101, 0.3);
}

.approach-step:hover .pokemon-icon::before {
    opacity: 1;
    animation-play-state: running;
}


.approach-step:hover .icon-main {
    transform: scale(1.1);
}

.approach-step:hover .icon-main svg {
    color: #E3F2FD;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Enhanced glow effect on hover */
.pokemon-icon:hover {
    box-shadow: 
        0 8px 25px rgba(0, 11, 61, 0.5),
        0 0 30px rgba(0, 23, 101, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Legacy hover for non-Pokemon icons */
.approach-step:hover .step-number:not(.pokemon-icon) {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 23, 101, 0.3);
}

.approach-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.approach-step:hover h3 {
    color: #003CB3;
}

.approach-step p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 1.5rem 0;
    transition: color 0.3s ease;
}

.approach-step:hover p {
    color: #2D3748;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.industry-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 23, 101, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 23, 101, 0.15);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #64748B;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-solutions {
    list-style: none;
}

.industry-solutions li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333333;
}

.industry-solutions li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00BCD4;
    font-weight: bold;
}

/* Tech Categories */
.custom-tech {
    background: white;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.tech-category {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #00BCD4;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1.5rem;
}

.tech-category ul {
    list-style: none;
}

.tech-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333333;
}

.tech-category li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #00BCD4;
    font-size: 0.8rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #F8F9FA;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-benefit {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 23, 101, 0.1);
    text-align: center;
}

.process-benefit h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #001765;
    margin-bottom: 1rem;
}

.process-benefit p {
    color: #64748B;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content,
    .ecosystem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    /* Mobile: Move image to top of Our Development Approach section */
    .technologies-section .ecosystem-image {
        order: -1;
        text-align: center;
        justify-content: center;
    }
    
    /* Mobile: Make icons bigger and align to top left for Our Development Approach */
    .technologies-section .ecosystem-feature {
        align-items: flex-start;
    }
    
    .technologies-section .ecosystem-feature .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .ecosystem-text h2 {
        font-size: 2rem;
    }
    
    .ecosystem-text p {
        font-size: 1rem;
    }
    
    .hero-main-image,
    .ecosystem-main-image {
        max-width: 400px;
    }

    .benefits-grid,
    .tech-detail-grid {
        grid-template-columns: 1fr;
    }

    .tech-detail-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Mobile: Left-justify text and position icons left for Automate Your Warehouse section */
    .technologies-section .tech-detail-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }
    
    .technologies-section .tech-detail-info {
        flex: 1;
        text-align: left;
    }
    
    .technologies-section .tech-detail-info h3 {
        text-align: left;
        margin-top: 0;
        line-height: 1.2;
    }
    
    /* Mobile: Make icons 1.5 times bigger (60px instead of 40px) */
    .technologies-section .feature-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .technologies-section .feature-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .technologies-section .tech-detail-info p {
        text-align: left;
        margin-left: -76px; /* Pull left to align with icon (60px icon + 1rem gap) */
    }
    
    /* Mobile: Left-justify all text below Key Features section and align with icon */
    .technologies-section .tech-benefits {
        text-align: left;
        margin-left: -76px; /* Pull left to align with icon (60px icon + 1rem gap) */
    }
    
    .technologies-section .tech-benefits h4,
    .technologies-section .tech-benefits ul,
    .technologies-section .tech-benefits li {
        text-align: left;
    }
    
    /* Mobile: Reduce padding for Our Development Approach section to match Industries We Serve */
    .tech-detail-card {
        padding: 2rem;
    }

    .tech-detail-image {
        margin: 0 auto 1.5rem;
    }

    .roi-stats,
    .savings-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .industries-grid,
    .tech-categories,
    .process-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .services,
    .about,
    .contact {
        padding: 60px 0;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
