/* Global Styles */
:root {
    --primary-color: #0071e3;
    --secondary-color: #1d1d1f;
    --background-color: #ffffff;
    --text-color: #1d1d1f;
    --spacing-unit: 8px;
    --nav-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Navigation Styles */
.nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
}

.list-styled {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    height: var(--nav-height);
    gap: 35px;
}

.list-styled li {
    height: 100%;
    display: flex;
    align-items: center;
}

.list-styled li:last-child {
    margin-left: auto;
}

.list-styled a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    padding: 10px 0;
}

.logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.mobile-menu-toggle span:nth-child(2) {
    transform: translateY(0);
}

.mobile-menu-toggle span:nth-child(3) {
    transform: translateY(7px);
}

/* Hamburger to X animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/index/ST3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;
    padding: 0 var(--spacing-unit);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: var(--spacing-unit);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    margin-top: calc(var(--spacing-unit) * 2);
}

/* Solutions Grid */
.solutions-grid {
    padding: 80px 0;
    background-color: #fff;
}

.solutions-grid .section-label {
    color: #ff4d4f;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

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

.section-title {
    font-size: 42px;
    line-height: 1.2;
    color: #242424;
    margin-bottom: 24px;
    font-weight: 400;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #242424;
    margin-bottom: 24px;
    max-width: 900px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #242424;
    margin-bottom: 40px;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.logo-item {
    flex: 0 1 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.cta-section {
    text-align: right;
    margin-top: 40px;
}

.cta-link {
    color: #0071e3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .logo-item {
        flex: 0 1 120px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .logo-item {
        flex: 0 1 100px;
    }
}

/* Add more styles for other sections... */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

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

    .list-styled {
        gap: 25px;
    }

    .nav-content {
        padding: 0 16px;
    }
} 

/* Client Showcase Styles */
.client-showcase {
    padding: calc(var(--spacing-unit) * 8) 0;
    background: #f5f5f7;
    text-align: center;
}

.client-showcase h2 {
    margin-bottom: calc(var(--spacing-unit) * 6);
    font-size: 40px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.client-grid img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

/* Contact Section Styles */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-description {
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #ff0000;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group select {
    background-color: #f5f5f5;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.submit-btn {
    background-color: #0071e3;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    justify-content: center;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.submit-btn::after {
    content: "→";
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .contact-form {
        padding: 0 20px;
    }
}

/* Footer Styles */
footer {
    background: #1c2834;
    color: #fff;
    padding: 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-item .icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-item .icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-color);
}

.footer-contact-item .info h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.footer-contact-item .info p,
.footer-contact-item .info a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.5;
}

.footer-contact-item .info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 20px 30px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul li a:hover {
        transform: none;
    }
    
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
} 

/* Fade animations */
.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation link hover effect */
.list-styled a:not(.logo) {
    position: relative;
}

.list-styled a:not(.logo)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.list-styled a:not(.logo):hover::after {
    width: 100%;
}

/* Button hover effects */
.cta-button:hover {
    background-color: #0077ed;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
} 

/* Page Header Styles */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(to bottom right, #f5f5f7, #ffffff);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Active Navigation Link */
.list-styled a.active {
    color: var(--primary-color);
}

.list-styled a.active::after {
    width: 100%;
}

/* Solutions Page Styles */
.solutions-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px var(--spacing-unit);
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.solution-details h2 {
    margin-bottom: 20px;
}

.solution-details ul {
    margin: 20px 0;
    padding-left: 20px;
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 var(--spacing-unit);
}

.service-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Client Stories Styles */
.client-stories {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 var(--spacing-unit);
}

.client-case {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 60px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solution-item,
    .client-case {
        grid-template-columns: 1fr;
    }
} 

/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 var(--spacing-unit);
}

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

.about-text h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Locations Section Styles */
.locations-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.locations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #242424;
}

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

.location-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.location-card h3 {
    color: #242424;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.location-card .address {
    color: #515154;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.location-card .phone {
    color: #0071e3;
    font-weight: 500;
}

.location-card .email {
    color: #0071e3;
    font-weight: 500;
    margin-top: 0.5rem;
}

.location-card .email:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-section {
        padding: 60px 0;
    }
    
    .locations-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
} 

/* Contact Methods */
.contact-details {
    padding: 60px 0;
    background: #f5f5f7;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.contact-method {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    margin: 20px 0 10px;
}

/* Enhanced Contact Form */
.contact-form select {
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 17px;
    background-color: white;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
} 

/* Dropdown Panel Styles */
.nav-item {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    top: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.15s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px var(--spacing-unit);
}

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

.dropdown-item {
    padding: 12px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: var(--text-color);
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-item h3 {
    font-size: 19px;
    margin: 0;
    color: var(--text-color);
    font-weight: 400;
}

/* Hide descriptions */
.dropdown-item p {
    display: none;
}

/* Add hover delay with JavaScript */
.nav-item .nav-dropdown {
    transition-delay: 0.2s;
}

.nav-item:hover .nav-dropdown {
    transition-delay: 0s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-content {
        padding: 20px var(--spacing-unit);
    }
} 

/* Add these styles to ensure dropdowns are visible */
.nav-dropdown {
    display: block !important;
    z-index: 9999;
}

.nav-item {
    position: relative !important;
}

.dropdown-content {
    position: relative;
    z-index: 10000;
} 

.solutions-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.solution-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.solution-category:hover {
    transform: translateY(-5px);
}

.solution-category h3 {
    color: #242424;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.solution-category ul {
    list-style: none;
    padding: 0;
}

.solution-category ul li {
    color: #515154;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .solutions-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-list {
        grid-template-columns: 1fr;
    }
} 

.partner-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 20px 0;
    max-width: 1200px;
    margin: 40px auto;
}

.partner-logo {
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '↗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(128, 128, 128, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 24px;
    z-index: 1;
    border-radius: 12px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

.partner-logo:hover {
    transform: none;
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logo {
        width: 180px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-logo {
        width: 160px;
        height: 60px;
    }
} 

.industry-solutions {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #242424;
    font-weight: 400;
    margin: 0;
}

.view-all {
    color: #0071e3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #0056b3;
    text-decoration: underline;
}

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

.industry-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.industry-card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card .icon svg {
    width: 32px;
    height: 32px;
    fill: #0071e3;
}

.industry-card h3 {
    color: #242424;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}

.industry-card p {
    color: #515154;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.industry-card .learn-more {
    color: #0071e3;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.industry-card:hover .learn-more {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

.enterprise-apps {
    background-color: #1c2834;
    color: white;
    padding: 80px 0;
}

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

.enterprise-apps .section-label {
    color: #8b95a1;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.enterprise-apps h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 400;
}

.enterprise-apps .section-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #e6e9ec;
    margin-bottom: 48px;
    max-width: 900px;
}

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

.app-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.app-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}

.app-card p {
    color: #e6e9ec;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.app-card .explore-link {
    color: #0071e3;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.app-card:hover .explore-link {
    color: #2b8ffc;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .enterprise-apps h2 {
        font-size: 32px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .app-card {
        padding: 24px;
    }
} 

.infor-recognition {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.recognition-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.recognition-card:hover {
    transform: translateY(-5px);
}

.recognition-card .icon {
    margin-bottom: 20px;
}

.recognition-card .icon img {
    width: 40px;
    height: 40px;
}

.recognition-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.recognition-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.recognition-card .read-more {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s ease;
}

.recognition-card .read-more:hover {
    color: #4f46e5;
}

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

.resources-section {
    padding: 80px 0;
    background-color: #eef0f2;
}

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

.resources-section .resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.resource-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-content {
    padding: 24px;
}

.resource-type {
    font-size: 14px;
    font-weight: 600;
    color: #e31837;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.resource-card h3 {
    font-size: 24px;
    margin: 12px 0;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.resource-link {
    color: #0066cc;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #004999;
}

.resources-cta {
    text-align: right;
    margin-top: 40px;
}

.view-more-link {
    display: inline-block;
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.view-more-link:hover {
    background-color: rgba(0,102,204,0.1);
}

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

/* Advantages Section on Index Page */
.advantages-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.advantages-section .section-label {
    color: #ff4d4f;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.advantages-section h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #242424;
    margin-bottom: 24px;
    font-weight: 400;
}

.advantages-section .section-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 48px;
    max-width: 800px;
}

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

.advantage-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

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

.advantage-card:hover .advantage-image img {
    transform: scale(1.05);
}

.advantage-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.advantage-content h3 {
    color: #242424;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.advantage-content p {
    color: #515154;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.advantage-content .learn-more {
    color: #0071e3;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.advantage-card:hover .learn-more {
    color: #0056b3;
}

.advantages-cta {
    text-align: right;
    margin-top: 40px;
}

.advantages-cta .view-more-link {
    display: inline-block;
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.advantages-cta .view-more-link:hover {
    background-color: rgba(0,102,204,0.1);
}

/* Responsive adjustments for Advantages Section */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid .advantage-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-section h2 {
        font-size: 32px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid .advantage-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .advantage-image {
        height: 180px;
    }
}

.analysis-cta {
    text-align: right;
    margin-top: 40px;
}

.analysis-cta .view-more-link {
    display: inline-block;
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.analysis-cta .view-more-link:hover {
    background-color: rgba(0,102,204,0.1);
}

/* Partners Around the Globe Section */
.partners-globe-section {
    position: relative;
    padding: 80px 0 60px;
    background-color: #f5f7fa;
    overflow: hidden;
}

.partners-globe-section .globe-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cpath fill='%23e8ecf0' d='M0,300 Q150,250 300,280 Q450,310 600,290 Q750,270 900,300 Q1050,330 1200,300 L1200,600 L0,600 Z'/%3E%3Cellipse cx='200' cy='350' rx='150' ry='100' fill='%23e8ecf0'/%3E%3Cellipse cx='600' cy='320' rx='200' ry='120' fill='%23e8ecf0'/%3E%3Cellipse cx='950' cy='380' rx='180' ry='90' fill='%23e8ecf0'/%3E%3Cellipse cx='400' cy='200' rx='100' ry='60' fill='%23e8ecf0'/%3E%3Cellipse cx='800' cy='180' rx='120' ry='70' fill='%23e8ecf0'/%3E%3Cellipse cx='150' cy='150' rx='80' ry='50' fill='%23e8ecf0'/%3E%3Cellipse cx='1050' cy='220' rx='90' ry='55' fill='%23e8ecf0'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    pointer-events: none;
}

.partners-globe-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.partners-globe-section h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Marquee Animation */
.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f5f7fa 0%, transparent 100%);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f5f7fa 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track.paused {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.marquee-logo {
    flex-shrink: 0;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* Marquee Controls */
.marquee-controls {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 3;
}

.marquee-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.marquee-pause-btn:hover {
    border-color: #0071e3;
    color: #0071e3;
    background: white;
}

.marquee-pause-btn.playing svg {
    display: none;
}

.marquee-pause-btn.playing::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .partners-globe-section h2 {
        font-size: 36px;
    }
    
    .marquee-logo {
        width: 120px;
        height: 50px;
    }
    
    .marquee-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .partners-globe-section {
        padding: 60px 0 40px;
    }
    
    .partners-globe-section h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .partners-cta-button {
        padding: 12px 24px;
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .marquee-logo {
        width: 100px;
        height: 40px;
    }
    
    .marquee-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .partners-marquee::before,
    .partners-marquee::after {
        width: 80px;
    }
    
    .marquee-controls {
        left: 15px;
        bottom: 10px;
    }
    
    .marquee-pause-btn {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================== */

/* Mobile Navigation - Below 992px */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: var(--nav-height);
    }

    .list-styled {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: calc(100vh - var(--nav-height));
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 20px 0;
        gap: 0;
        overflow-y: auto;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .list-styled.active {
        right: 0;
    }

    .list-styled li {
        height: auto;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .list-styled li:last-child {
        margin-left: 0;
        margin-top: auto;
        border-top: 1px solid #e0e0e0;
        border-bottom: none;
        padding-top: 20px;
    }

    .list-styled > li > a {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        height: auto;
    }

    .list-styled .logo {
        display: none;
    }

    /* Mobile Dropdown Styles */
    .nav-item {
        flex-direction: column;
        align-items: stretch;
        height: auto !important;
    }

    .nav-item > a {
        position: relative;
    }

    .nav-item > a::after {
        content: '';
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        width: 10px;
        height: 10px;
        border-right: 2px solid #666;
        border-bottom: 2px solid #666;
        transform-origin: center;
        transition: transform 0.3s ease;
        transform: translateY(-50%) rotate(45deg);
    }

    .nav-item.dropdown-open > a::after {
        transform: translateY(-25%) rotate(-135deg);
    }

    .nav-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #f8f9fa;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: auto !important;
    }

    .nav-item.dropdown-open .nav-dropdown {
        max-height: 500px;
    }

    .dropdown-content {
        padding: 10px 0;
    }

    .dropdown-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .dropdown-item {
        padding: 12px 24px 12px 40px;
        border-radius: 0;
    }

    .dropdown-item h3 {
        font-size: 15px;
        font-weight: 400;
        color: #515154;
    }

    .dropdown-item:hover {
        background-color: rgba(0, 113, 227, 0.08);
    }

    .dropdown-item:hover h3 {
        color: var(--primary-color);
    }
}

/* Mobile Phone Styles - Below 768px */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-content h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 100px 16px 40px;
    }

    .page-header h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .section-description,
    .section-subtitle {
        font-size: 16px;
    }

    /* Partner Logos Grid Mobile */
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 10px 0;
    }

    .partner-logo {
        width: 140px;
        height: 55px;
    }

    /* Solutions Grid Mobile */
    .solutions-grid {
        padding: 50px 0;
    }

    .solutions-grid .container {
        padding: 0 16px;
    }

    /* Apps Grid Mobile */
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .app-card {
        padding: 24px 20px;
    }

    .app-card h3 {
        font-size: 18px;
    }

    .app-card p {
        font-size: 14px;
    }

    /* Advantages Grid Mobile */
    .advantages-section {
        padding: 50px 0;
    }

    .advantages-section h2 {
        font-size: 28px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-image {
        height: 160px;
    }

    .advantage-content {
        padding: 20px;
    }

    .advantage-content h3 {
        font-size: 18px;
    }

    .advantage-content p {
        font-size: 14px;
    }

    /* Industry Solutions Mobile */
    .industry-solutions {
        padding: 50px 0;
    }

    .industry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-card {
        padding: 24px;
    }

    /* Enterprise Apps Mobile */
    .enterprise-apps {
        padding: 50px 0;
    }

    .enterprise-apps h2 {
        font-size: 28px;
    }

    .enterprise-apps .section-intro {
        font-size: 16px;
    }

    /* Recognition Grid Mobile */
    .infor-recognition {
        padding: 50px 0;
    }

    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recognition-card {
        padding: 24px;
    }

    /* Resources Grid Mobile */
    .resources-section {
        padding: 50px 0;
    }

    .resources-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .resource-image {
        height: 180px;
    }

    .resource-content {
        padding: 20px;
    }

    .resource-card h3 {
        font-size: 20px;
    }

    /* Locations Grid Mobile */
    .locations-section {
        padding: 50px 0;
    }

    .locations-section h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .location-card {
        padding: 24px;
    }

    .location-card h3 {
        font-size: 18px;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 50px 0;
    }

    .contact-section h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 0 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-group input,
    .form-group select {
        padding: 14px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .submit-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    /* Footer Mobile */
    .footer-main {
        padding: 40px 16px 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        width: 100%;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-contact-info {
        margin-top: 30px;
        padding-top: 24px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .footer-contact-item .icon {
        width: 40px;
        height: 40px;
    }

    .footer-contact-item .info h5 {
        font-size: 13px;
    }

    .footer-contact-item .info p,
    .footer-contact-item .info a {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    /* Solution Item Mobile */
    .solution-item {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 50px;
    }

    .solutions-content {
        padding: 40px 16px;
    }

    /* About Grid Mobile */
    .about-content {
        padding: 0 16px;
        margin: 40px auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    /* Client Stories Mobile */
    .client-stories {
        padding: 0 16px;
        margin: 40px auto;
    }

    .client-case {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
        margin-bottom: 30px;
    }

    /* Services Grid Mobile */
    .services-grid {
        padding: 0 16px;
        margin: 40px auto;
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }

    /* Client Showcase Mobile */
    .client-showcase {
        padding: 50px 16px;
    }

    .client-showcase h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }

    .client-grid img {
        max-width: 120px;
    }

    /* Contact Methods Mobile */
    .contact-details {
        padding: 50px 16px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

    .contact-method {
        padding: 24px;
    }

    /* Section Headers Mobile */
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    /* CTA Sections Mobile */
    .cta-section,
    .analysis-cta,
    .advantages-cta,
    .resources-cta {
        text-align: center;
        margin-top: 30px;
    }

    .cta-link,
    .view-more-link {
        display: inline-block;
        padding: 12px 20px;
    }
}

/* Extra Small Mobile - Below 480px */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    /* Partner Logos Extra Small */
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo {
        width: 100%;
        max-width: 130px;
        height: 50px;
    }

    /* Footer Links Stacked */
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul li a:hover {
        transform: none;
    }

    /* List styles on mobile */
    .list-styled {
        width: 100%;
        max-width: none;
    }

    /* Card padding adjustments */
    .app-card,
    .industry-card,
    .recognition-card,
    .location-card,
    .service-card {
        padding: 20px 16px;
    }

    /* Smaller stat numbers */
    .stat-number {
        font-size: 32px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .list-styled a {
        min-height: 48px;
    }

    .dropdown-item {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Remove hover effects on touch devices */
    .partner-logo:hover::before {
        opacity: 0;
    }

    .partner-logo:active::before {
        opacity: 1;
    }

    .feature-card:hover,
    .advantage-card:hover,
    .industry-card:hover,
    .app-card:hover {
        transform: none;
    }

    /* Active states for touch */
    .feature-card:active,
    .advantage-card:active,
    .industry-card:active,
    .app-card:active {
        transform: scale(0.98);
    }

    .cta-button:active {
        transform: scale(0.95);
    }
}

/* Landscape phone orientation */
@media (max-width: 992px) and (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        min-height: auto;
        padding: 80px 20px 40px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .list-styled {
        height: calc(100vh - var(--nav-height));
    }
} 