* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    background-color: #F5F5F5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    height: 50px;
    width: auto;
}

nav {
    position: relative;
}

nav li:last-child {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #2E2E2E;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #4DE0EB;
}

/* Contact Dropdown */
.contact-dropdown {
    position: absolute;
    top: 205%;
    right: -6%;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    width: 280px;
    min-width: 260px;
}

.contact-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-content {
    margin: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
}

.contact-info {
    text-align: center;
    flex: 1;
}

.contact-phone {
    font-size: 1rem;
    font-weight: 500;
    color: #2E2E2E;
    margin: 0 0 0.25rem 0;
}

.contact-email {
    font-size: 1rem;
    font-weight: 500;
    color: #2E2E2E;
    margin: 0.25rem 0 0 0;
}

.contact-close {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.contact-close:hover {
    color: #2E2E2E;
}

/* Hero Section */
.hero {
    background: #F5F5F5;
    color: #2E2E2E;
    padding: 4rem 0 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: clamp(1.2rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: 2rem;
    margin-top: 0.1rem;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    color: #2E2E2E;
}

.hero-subtitle-part1 {
    opacity: 0;
    display: inline;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
}

.hero-subtitle-part2 {
    opacity: 0;
    display: inline;
    animation: fadeIn 1s ease-in-out 1.75s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.7;
    color: #2E2E2E;
}

/* Quick Links Section */
.quick-links {
    padding: 4rem 0;
    background: #F5F5F5;
}

.quick-links h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2E2E2E;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.quick-link-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #4DE0EB;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(77, 224, 235, 0.2);
    border-color: #3CBAC6;
}

.quick-link-card h3 a {
    text-decoration: none;
    color: #2E2E2E;
    transition: color 0.3s ease;
}

.quick-link-card h3 a:hover {
    color: #4DE0EB;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background: white;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #2E2E2E;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2E2E2E;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #D1D5DB;
    text-decoration: none;
    color: inherit;
    display: block;
}

.solution-card:hover,
.solution-card.mobile-active {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(209, 213, 219, 0.3);
    border-color: #9CA3AF;
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2E2E2E;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.solution-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    stroke: white;
    transition: all 0.3s ease;
}

.solution-icon:hover svg {
    fill: #2E2E2E;
    stroke: #2E2E2E;
}

/* Override SVG sizing and styling for reporting icon */
.reporting-icon-new svg {
    width: 100%;
    height: 100%;
    fill: #4DE0EB !important;
    stroke: white !important;
}

.reporting-icon-new:hover svg {
    fill: white !important;
    stroke: white !important;
}

/* Specific animations for each icon */
.ai-icon svg {
    animation: pulse 2s infinite;
}

.implementation-icon svg {
    animation: bounce 2s infinite;
}

/* New AI Icon Styles - matching reporting suite */
.ai-icon-new {
    width: 240px;
    height: 112px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    transition: all 420ms ease;
    position: relative;
    overflow: hidden;
}

.ai-icon-new:hover {
    background: transparent;
    box-shadow: none;
}

/* Override SVG sizing and styling for AI icon */
.ai-icon-new svg {
    width: 100%;
    height: 100%;
    fill: white !important;
    stroke: white !important;
    overflow: visible;
}

.ai-icon-new:hover svg {
    fill: white !important;
    stroke: white !important;
}

/* Robot hand animation */
.ai-icon-new .robot-hand {
    opacity: 1;
    transform: translate(190px, 160px) rotate(0deg);
    transform-origin: 0px 20px;
}

.solution-card:hover .ai-icon-new .robot-hand,
.solution-card.mobile-active .ai-icon-new .robot-hand {
    animation: handWave 10s ease-in-out infinite;
}

@keyframes handWave {
    0%, 100% { transform: translate(190px, 160px) rotate(0deg); }
    4% { transform: translate(190px, 80px) rotate(0deg); }
    5% { transform: translate(185px, 78px) rotate(-15deg); }
    6% { transform: translate(190px, 80px) rotate(0deg); }
    7% { transform: translate(195px, 78px) rotate(15deg); }
    8% { transform: translate(190px, 80px) rotate(0deg); }
    11% { transform: translate(190px, 80px) rotate(0deg); }
    13% { transform: translate(190px, 160px) rotate(0deg); }
}

/* Robot antenna blinking animation */
.ai-icon-new circle[fill="#4DE0EB"] {
    animation: antennaBlink 5s infinite;
}

.solution-card:hover .ai-icon-new circle[fill="#4DE0EB"],
.solution-card.mobile-active .ai-icon-new circle[fill="#4DE0EB"] {
    animation: none;
}

@keyframes antennaBlink {
    0%, 88% { opacity: 1; }
    90%, 94% { opacity: 0; }
    96%, 100% { opacity: 1; }
}

/* New Rectangular Reporting Icon Styles */
.reporting-icon-new {
    width: 240px;
    height: 112px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    transition: all 420ms ease;
    position: relative;
    overflow: hidden;
}

.reporting-icon-new:hover {
    background: transparent;
    box-shadow: none;
}

.reporting-icon-new .bar {
    transform-origin: 50% 100%;
    transform: scaleY(0);
    transition: transform 420ms cubic-bezier(.7,.9,.2,1);
    fill: #2E2E2E;
    opacity: 0.98;
}

.reporting-icon-new .trend-line {
    fill: none;
    stroke: #000000;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 520ms cubic-bezier(.2,.9,.2,1),
                stroke 420ms ease;
    opacity: 0.95;
}

.reporting-icon-new .trend-point {
    transform-origin: center center;
    transform: scale(1);
    transition: transform 220ms ease, fill 220ms ease, cy 420ms ease, opacity 520ms ease;
    fill: #2E2E2E;
    opacity: 0.3;
}

/* Flickering animation for idle state */
@keyframes flicker {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.solution-card:not(:hover):not(.mobile-active) .reporting-icon-new .trend-point {
    animation: flicker 3s infinite;
}

.solution-card:not(:hover):not(.mobile-active) .reporting-icon-new .trend-point:nth-child(2) { animation-delay: 0.3s; }
.solution-card:not(:hover):not(.mobile-active) .reporting-icon-new .trend-point:nth-child(3) { animation-delay: 0.6s; }
.solution-card:not(:hover):not(.mobile-active) .reporting-icon-new .trend-point:nth-child(4) { animation-delay: 0.9s; }
.solution-card:not(:hover):not(.mobile-active) .reporting-icon-new .trend-point:nth-child(5) { animation-delay: 1.2s; }
.solution-card:not(:hover):not(.mobile-active) .reporting-icon-new .trend-point:nth-child(6) { animation-delay: 1.5s; }

/* Hover animations */
.solution-card:hover .reporting-icon-new .bar,
.solution-card.mobile-active .reporting-icon-new .bar {
    transform: scaleY(1);
    fill: #2E2E2E;
}

.solution-card:hover .reporting-icon-new .trend-line,
.solution-card.mobile-active .reporting-icon-new .trend-line {
    stroke-dashoffset: 200;
    transition-delay: 120ms;
    transition: stroke-dashoffset 520ms cubic-bezier(.2,.9,.2,1),
                stroke 420ms ease;
    stroke: #2E2E2E;
}

.solution-card:hover .reporting-icon-new .trend-point,
.solution-card.mobile-active .reporting-icon-new .trend-point {
    opacity: 1;
    transform: scale(1);
    fill: #2E2E2E;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* AI Lightbulb animation - rises like an idea */
@keyframes lightbulbRise {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(3px) scale(1);
    }
}

/* Initial state */
.ai-lightbulb text {
    opacity: 0;
    transform: translateY(40px) scale(1);
    transition: opacity 300ms ease, transform 300ms ease;
}

/* Animation triggers on hover */
.solution-card:hover .ai-lightbulb text,
.solution-card.mobile-active .ai-lightbulb text {
    opacity: 0.8;
    transform: translateY(3px) scale(1);
    transition: opacity 200ms ease-out 120ms, transform 200ms ease-out 120ms;
}

/* Robot head lowering animation on hover */
.ai-icon-new svg g[transform="translate(70,25)"] {
    transition: transform 200ms ease;
}

.solution-card:hover .ai-icon-new svg g[transform="translate(70,25)"],
.solution-card.mobile-active .ai-icon-new svg g[transform="translate(70,25)"] {
    transform: translate(70px, 37px);
    transition-delay: 120ms;
}

/* New Implementation Icon Styles - matching other icons */
.implementation-icon-new {
    width: 240px;
    height: 112px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    transition: all 420ms ease;
    position: relative;
    overflow: hidden;

}

.implementation-icon-new:hover {
    background: transparent;
    box-shadow: none;
}

/* Override SVG sizing and styling for implementation icon */
.implementation-icon-new svg {
    width: 100%;
    height: 100%;
    fill: white !important;
    stroke: white !important;
    overflow: visible;
}

.implementation-icon-new:hover svg {
    fill: white !important;
    stroke: white !important;
}

/* Puzzle piece animation */
.implementation-icon-new .puzzle-left {
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(1, 0, 0.16, 1);
}

.implementation-icon-new .puzzle-right {
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(1, 0, 0.16, 1);
}

.solution-card:hover .implementation-icon-new .puzzle-left,
.solution-card.mobile-active .implementation-icon-new .puzzle-left {
    transform: translateX(10px);
}

.solution-card:hover .implementation-icon-new .puzzle-right,
.solution-card.mobile-active .implementation-icon-new .puzzle-right {
    transform: translateX(-10px);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.solution-card p {
    margin-bottom: 1.5rem;
    color: #2E2E2E;
    opacity: 0.8;
    text-align:center;
}

.solution-card ul {
    list-style: none;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.solution-card.expanded ul {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.solution-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #2E2E2E;
    opacity: 0.9;
}

.solution-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4DE0EB;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.solution-card li.tick-visible:before {
    opacity: 1;
    transform: scale(1);
}

/* Solution Image Styles */
.solution-image {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.solution-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background: #F5F5F5;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2E2E2E;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.benefit h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.benefit p {
    color: #2E2E2E;
    opacity: 0.7;
}

/* About Page Styles */
.about-section {
    padding: 4rem 0;
    background: white;
}

.about-section.alt-bg {
    background: #F5F5F5;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2E2E2E;
}
.proven-track-record {
    background: white;
    padding-left: 5%;
    padding-right: 5%;
}
.section-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.team-member:hover .team-photo {
    border-color: #d0d0d0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member:hover {
    border-color: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2E2E2E;
}

.team-member .role {
    font-weight: 600;
    color: #777;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-member p {
    color: #2E2E2E;
    opacity: 0.8;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.service-item p {
    color: #2E2E2E;
    opacity: 0.8;
    line-height: 1.5;
}

.clients-section h3 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
    color: #2E2E2E;
    text-align: center;
}

.animated-timeline {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    padding-top: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 120px;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #666;
    transition: height 0.3s ease;
}

.timeline-line.active::after {
    height: 100%;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    z-index: 2;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    background: #666;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-item.visible .timeline-marker {
    background: #666;
    box-shadow: 0 0 0 4px white, 0 0 0 8px #666;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    width: calc(50% - 30px);
    margin: 0 30px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
    text-align: right;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -16px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -16px;
    border-right-color: white;
}

.timeline-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2E2E2E;
}

.timeline-content p {
    color: #2E2E2E;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

.timeline-continuation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.timeline-dash-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, 
        #666 0%, 
        #666 25%, 
        transparent 25%, 
        transparent 50%, 
        #666 50%, 
        #666 75%, 
        transparent 75%, 
        transparent 100%);
    margin-bottom: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    opacity: 0.8;
    text-align: center;
    margin-top: 80px;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 0;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 40px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-content::before {
        left: -16px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .timeline-dash-line {
        left: 20px;
        transform: none;
    }
}

.client-logos {
    margin-bottom: 3rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2E2E2E;
    line-height: 1.5;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
}

nav a.active {
    color: #4DE0EB;
    font-weight: 600;
}

/* Main content area */
main {
    flex: 1;
}

/* Footer */
footer {
    background: #2E2E2E;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 2rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2E2E2E;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4DE0EB;
    box-shadow: 0 0 0 3px rgba(77, 224, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(rgba(0, 94, 184, 0.8), rgba(0, 61, 130, 0.8));
    color: #F5F5F5;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(rgba(0, 94, 184, 0.8), rgba(0, 61, 130, 0.8));;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(77, 224, 235, 0.3);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.contact-method {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-method h3 {
    color: #2E2E2E;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-phone-large,
.contact-email-large,
.contact-office-hours-large {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2E2E2E;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact form mobile styles */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Contact dropdown mobile adjustments */
    .contact-dropdown {
        position: fixed;
        top: 70px;
        right: 10px;
        left: 10px;
        bottom: auto;
        width: auto;
        min-width: auto;
        max-width: none;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
    }
    
    .contact-dropdown.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .contact-content {
        padding: 1.25rem;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 1rem;
    }
}