/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure Montserrat is applied to all text elements */
*,
*::before,
*::after {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 140px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    font-display: swap;
    background: #f5f5f5;
}

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

/* Header */
.header {
    background: #f5f5f5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.15em;
    line-height: 1.2;
}

.tech-text {
    font-size: 0.85em;
    font-weight: 400;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #6b7280;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    background: #f5f5f5;
}

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

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #1f2937;
    padding-bottom: 2rem;
}



.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: -15vh;
}

.hero-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    margin: 4rem 0;
    padding: 2rem 0;
    animation: flowContainerEnter 1.2s ease-out;
    position: relative;
}

.hero-flow::before {
    display: none;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    animation: stepEnter 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.flow-step:nth-child(1) {
    animation-delay: 0.2s;
}

.flow-step:nth-child(2) {
    animation-delay: 0.5s;
}

.flow-step:nth-child(3) {
    animation-delay: 0.8s;
}

.flow-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.flow-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.flow-icon:hover::before {
    animation: shimmerEffect 1.5s ease-in-out;
}

.flow-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: currentColor;
}

.flow-icon svg {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.flow-icon:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

.flow-label {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.flow-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.flow-step:hover .flow-label::after {
    width: 100%;
}

@keyframes stepEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scaleX(1);
    }
}

@keyframes shimmerEffect {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes observePulse {
    0%, 70%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    15%, 25% {
        transform: scale(1.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(37, 99, 235, 0);
    }
}

@keyframes securePulse {
    0%, 70%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(52, 211, 153, 0.4);
    }
    15%, 25% {
        transform: scale(1.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(52, 211, 153, 0);
    }
}

@keyframes optimizePulse {
    0%, 70%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(251, 191, 36, 0.4);
    }
    15%, 25% {
        transform: scale(1.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(251, 191, 36, 0);
    }
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.gradient-text {
    background: linear-gradient(135deg, #1f2937, #374151, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #4f46e5, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(1px);
    opacity: 0.3;
}

.hero-description {
    font-size: 1.375rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #06b6d4;
    color: #06b6d4;
    background: transparent;
}

.btn-outline:hover {
    background: #06b6d4;
    color: white;
}

/* Section styling */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.375rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Force Montserrat on all headings and text elements */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
button,
input,
textarea,
li {
    font-family: 'Montserrat', sans-serif !important;
}

/* Core Technology Focus */
.focused-tech {
    background: #f5f5f5;
}

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

.tech-card {
    text-align: center;
    cursor: pointer;
}

.tech-icon {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 2rem;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: #f8fafc;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon img {
    max-height: 100px;
    max-width: 200px;
    object-fit: contain;
}

.tech-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.tech-card p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Services */
.services {
    background: #f5f5f5;
}

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

.service-spacer {
    display: block;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.bg-primary {
    background: #00c0f5;
}

.bg-purple {
    background: #a0f5f5;
}

.bg-cyan {
    background: #f5c000;
}

.bg-red {
    background: #00c0f5;
}

.bg-orange {
    background: #a0f5f5;
}

.bg-indigo {
    background: #f5c000;
}

.bg-green {
    background: #22c55e;
}

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

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-card ul {
    list-style: none;
    color: #6b7280;
    font-size: 0.95rem;
}

.service-card li {
    margin-bottom: 0.5rem;
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

/* Emergency Service Styling */
.service-card-emergency {
    position: relative;
    overflow: visible;
}

.emergency-banner {
    position: absolute;
    bottom: -10px;
    left: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    animation: pulse-glow 2s infinite;
}

.emergency-icon {
    font-size: 1.25rem;
    animation: flash 1.5s infinite;
}

.emergency-text {
    flex: 1;
}

.emergency-text strong {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    margin: 0;
}

.emergency-btn {
    background: #f5f5f5;
    color: #dc2626;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.emergency-btn:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    }

    50% {
        box-shadow: 0 8px 35px rgba(239, 68, 68, 0.5);
    }
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.5;
    }
}

/* Emergency Assistance Section (replaces Learn More button) */
.emergency-assistance-section {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 12px;
    border: 2px solid #dc2626;
    position: relative;
    overflow: hidden;
}

.emergency-assistance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.emergency-icon-pulse {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.emergency-content h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.emergency-content p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.emergency-contact-btn {
    background: #f5f5f5;
    color: #dc2626;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.emergency-contact-btn:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Partners Page */
.partners-hero {
    background: #f5f5f5;
    color: #1f2937;
    padding: 8rem 0 3rem;
    text-align: center;
}

.partners-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.2;
}

.partners-hero p {
    font-size: 1.375rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.partners-content {
    padding: 0 0 4rem;
    background: #f5f5f5;
}

/* Partners Layout */
.partners-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Recommendation Sidebar */
.recommendation-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 130px;
}

.sidebar-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.sidebar-header p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.recommendation-form .form-group {
    margin-bottom: 1rem;
}

.recommendation-form label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.recommendation-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #374151;
    background: #ffffff;
    transition: border-color 0.2s;
}

.recommendation-form select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-recommend {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 0.5rem;
}

.btn-recommend:hover {
    background: #1d4ed8;
}

.btn-reset {
    width: 100%;
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-reset:hover {
    background: #4b5563;
}

.recommendations-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.recommendations-result h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.recommended-partner {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.recommended-partner:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.recommended-partner h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.recommended-partner p {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.match-score {
    font-size: 0.75rem;
    color: #059669;
    font-weight: 500;
}

.partners-main-content {
    min-height: 100vh;
}

/* Mobile responsive styles for sidebar */
@media (max-width: 768px) {
    .partners-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 0.5rem;
    }

    .recommendation-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .sidebar-header h3 {
        font-size: 1.1rem;
    }

    .sidebar-header p {
        font-size: 0.85rem;
    }

    .recommendation-form select {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .btn-recommend,
    .btn-reset {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .recommended-partner {
        padding: 0.75rem;
    }<replit_final_file>
    .recommended-partner h5 {
        font-size: 0.9rem;
    }

    .recommended-partner p {
        font-size: 0.75rem;
    }

    .match-score {
        font-size: 0.7rem;
    }
}

.vendor-category {
    margin-bottom: 4rem;
}

.vendor-category h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.vendor-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vendor-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vendor-logo img {
    max-height: 300px;
    max-width: 300px;
    object-fit: contain;
    transform: scale(2.0);
}

.vendor-logo img[src*="google-secops"] {
    transform: scale(3.5);
}

/* iPad Portrait and Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .vendor-logo img[src*="google-secops"] {
        transform: scale(1.0);
    }
}

/* Mobile Portrait */
@media (max-width: 768px) and (orientation: portrait) {
    .vendor-logo img[src*="google-secops"] {
        transform: scale(0.8);
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .vendor-logo img[src*="google-secops"] {
        transform: scale(1.8);
    }
}

.vendor-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.vendor-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

/* Vendor Modal */
.vendor-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 1200px;
    height: 100vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #6b7280;
    z-index: 1001;
}

.modal-close:hover {
    color: #1f2937;
}

.vendor-detail {
    padding: 2rem;
    height: calc(100vh - 4rem);
    overflow-y: auto;
    box-sizing: border-box;
}

.vendor-detail h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* This change ensures that the "Why Us" section header font size matches the service card titles.```text */
.vendor-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.solutions-list,
.benefits-list {
   list-style: none;
    padding: 0;
}

.solutions-list li,
.benefits_list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.solutions-list li:before,
.benefits_list li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industry-tag {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.modal-actions {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Technology Vendors */
.tech-vendors {
    background: #f5f5f5;
}

.vendor-category {
    margin-bottom: 3rem;
}

.vendor-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.vendor-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.vendor-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.vendor-card img {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.vendor-card h4 {
    font-weight: 600;
    color: #1f2937;
}

/* Why Choose Us */
.why-choose-us {
    background: #1e293b;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.why-choose-us .section-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-choose-us .section-header p {
    color: #94a3b8;
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4.5rem;
    line-height: 1.6;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.features-showcase .bottom-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
}

.feature-card {
    background: transparent;
    border: none;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover h3 {
    color: #60a5fa;
}

/* Card Size Variants */
.feature-compact,
.feature-wide-short,
.feature-wide,
.feature-split-wide {
    grid-column: span 1;
}

/* Remove unnecessary styling */
.feature-gradient-blue,
.feature-gradient-purple,
.feature-gradient-green,
.feature-gradient-orange,
.feature-gradient-teal,
.feature-gradient-red {
    background: transparent;
}

.feature-badge {
    display: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #60a5fa;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1rem;
    margin: 0;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.integration-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.integration-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.integration-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-us {
        padding: 5rem 0;
    }

    .why-choose-us .section-header p {
        margin: 0 auto 3.5rem;
    }

    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .features-showcase .bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 0;
    }

    .why-choose-us .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .why-choose-us .section-header p {
        font-size: 1rem;
        margin: 0 auto 3rem;
    }

    .features-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-showcase .bottom-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 2rem;
    }

    .integration-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-large,
    .feature-medium,
    .feature-wide,
    .feature-split {
        grid-column: 1;
        grid-row: auto;
    }

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

@media (max-width: 768px) {
    .header-content h2 {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .integration-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact */
.contact {
    background: #f9fafb;
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    min-height: 450px;
}

.contact-map,
.contact-info {
    flex: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
}

.contact-map {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.contact-map .interactive-map {
    height: 100%;
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 12px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    height: 100%;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #AEB6BF;
    /*linear-gradient(135deg, #10b981, #059669);*/
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #AEB6BF;
    /*linear-gradient(135deg, #059669, #047857);*/
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.contact-icon:hover {
    color: #3b82f6;
    transform: scale(1.1);
}

.office-photos {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.office-photos h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

/* Photo Slider Styles */
.photo-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0 0.5rem;
}

.slider-btn {
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: #3730a3;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4f46e5;
    transform: scale(1.2);
}

.dot:hover {
    background: #6b7280;
}

.map-section {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.map-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.map-placeholder {
    height: 384px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
}

.map-placeholder svg {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 0.25rem;
}

.map-placeholder small {
    font-size: 0.75rem;
    color: #9ca3af;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr auto;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-width: 400px;
}

.footer-company h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-company p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-services h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    text-align: left;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-services a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #94a3b8;
}

/* Responsive Design */

/* iPad Portrait Specific - Broader targeting */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait),
(min-width: 768px) and (max-width: 834px),
(min-width: 810px) and (max-width: 834px) and (min-height: 1080px) {
    .header-content {
        height: 100px;
        padding: 0 1.5rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 0.08em;
        line-height: 1.15;
    }

    .tech-text {
        font-size: 0.8em;
    }

    .header-logo-img {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    .nav-desktop {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.3rem 0.15rem;
        white-space: nowrap;
    }

    body {
        padding-top: 100px;
    }

    /* Tech Grid - Keep 2x2 grid for iPad portrait */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }

    /* Reduce hero spacing for better fit */
    .hero-content {
        margin-top: -10vh;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }

    /* Partners page layout - move sidebar to top like mobile */
    .partners-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .recommendation-sidebar {
        position: static;
        margin-bottom: 3rem;
        padding: 1.25rem;
    }

    .sidebar-header h3 {
        font-size: 1.125rem;
    }

    .sidebar-header p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    /* Reduce vendor logo size for iPad portrait */
    .vendor-logo img {
        max-height: 200px;
        max-width: 200px;
        transform: scale(1.3);
    }

    .vendor-card {
        padding: 1.75rem;
    }

    .vendor-card h3 {
        font-size: 1.25rem;
    }

    .vendor-card p {
        font-size: 0.95rem;
    }
}

/* iPad Landscape Specific (1024px - 1366px width, 768px - 1024px height) */
@media (min-width: 1024px) and (max-width: 1366px) and (min-height: 768px) and (max-height: 1024px) and (orientation: landscape) {
    .header-content {
        height: 90px;
        padding: 0 1.5rem;
    }

    .logo {
        gap: 0.4rem;
    }

    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
        line-height: 1.1;
    }

    .header-logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-desktop {
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.25rem 0.15rem;
        white-space: nowrap;
    }

    body {
        padding-top: 90px;
    }

    /* Tech Grid - Keep 2x2 grid for iPad landscape */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* iPad and Large Tablet Styles (1024px and below) */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-content {
        height: 100px;
        padding: 0 1rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        line-height: 1.1;
    }

    .header-logo-img {
        width: 45px;
        height: 45px;
    }

    .nav-desktop {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.3rem 0;
        white-space: nowrap;
    }

    body {
        padding-top: 100px;
    }

    /* Tech Grid - Keep 2x2 grid for iPad tablets */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* Medium Tablet and Small Landscape (900px and below) */
@media (max-width: 900px) {
    .header-content {
        height: 90px;
    }

    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }

    .tech-text {
        font-size: 0.75em;
    }

    .header-logo-img {
        width: 45px;
        height: 45px;
    }

    .nav-desktop {
        gap: 1.2rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.3rem 0;
    }

    body {
        padding-top: 90px;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .header-content {
        height: 80px;
    }

    .header-logo-img {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        line-height: 1.1;
    }

    .tech-text {
        font-size: 0.75em;
    }

    body {
        padding-top: 80px;
    }

    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-flow {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .flow-icon {
        width: 60px;
        height: 60px;
    }

    .flow-icon svg {
        width: 36px;
        height: 36px;
    }

    .flow-label {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Tech Focus Cards */
    .tech-icon {
        height: 120px;
        padding: 1.5rem;
    }

    .tech-icon img {
        max-height: 70px;
        max-width: 140px;
    }

    .tech-card h3 {
        font-size: 1.125rem;
    }

    .tech-card p {
        font-size: 0.95rem;
    }

    /* Partners Page - Vendor Categories */
    .partners-content .vendor-category h2 {
        font-size: 1.4rem !important;
    }

    /* Service Cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-spacer {
        display: none;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card ul {
        font-size: 0.85rem;
    }

    /* Tech Grid - 2x2 grid for mobile */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    /* Feature Cards */
    .feature-card h3 {
        font-size: 1.125rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Navigation */
    .mobile-nav-link {
        font-size: 1.125rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        font-size: 0.75rem !important;
        padding: 0.5rem 1rem !important;
        width: 140px;
        text-align: center;
        white-space: nowrap;
    }

    /* Footer */
    .footer h3 {
        font-size: 1.125rem;
    }

    .footer p,
    .footer a {
        font-size: 0.875rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }

    .contact-info {
        height: auto;
    }

    .contact-card {
        height: auto;
    }

    .contact-map iframe {
        height: 250px !important;
        min-height: 250px !important;
    }

    .contact-map {
        height: auto;
        min-height: auto;
    }

    .contact-map .interactive-map {
        min-height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
    }

    .footer-links-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        min-width: auto;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .header-logo-img {
        width: 35px;
        height: 35px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .header-content {
        height: 70px;
    }

    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 0.08em;
        line-height: 1.1;
    }

    .tech-text {
        font-size: 0.7em;
    }

    body {
        padding-top: 70px;
    }

    .hero {
        min-height: calc(100vh - 70px);
        height: calc(100vh - 70px);
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        margin-top: -18vh;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 1.5rem 15px;
    }

    .hero-flow {
        gap: 2.5rem;
        margin: 2rem 0 2.5rem 0;
        padding: 1rem 0;
    }

    .flow-icon {
        width: 50px;
        height: 50px;
    }

    .flow-icon svg {
        width: 28px;
        height: 28px;
    }

    .flow-label {
        font-size: 0.75rem;
    }

    .flow-arrow {
        margin-top: -0.5rem;
    }

    .flow-arrow svg {
        width: 20px;
        height: 20px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        white-space: nowrap;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Partners Page - Vendor Categories - Small Mobile */
    .partners-content .vendor-category h2 {
        font-size: 1.25rem !important;
    }

    .section-header p {
        font-size: 0.875rem;
    }

    /* Tech Focus Cards - Small Mobile */
    .tech-icon {
        height: 100px;
        padding: 1rem;
    }

    .tech-icon img {
        max-height: 60px;
        max-width: 120px;
    }

    .tech-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .tech-card p {
        font-size: 0.875rem;
    }

    /* Service Cards - Small Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-spacer {
        display: none;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 42px;
        height: 42px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.875rem;
    }

    /* Feature Cards - Small Mobile */
    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.825rem;
        line-height: 1.5;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Navigation - Small Mobile */
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    /* Buttons - Small Mobile */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
        width: 130px;
        text-align: center;
        white-space: nowrap;
    }

    /* Footer - Small Mobile */
    .footer-content {
        text-align: left !important;
    }

    .footer-links-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: left !important;
    }

    .social-links {
        justify-content: flex-start !important;
    }

    /* Partners Page - Mobile Tablet */
    .partners-hero {
        padding: 5rem 0 0.5rem;
    }

    .partners-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .partners-hero p {
        font-size: 1rem;
    }

    .partners-content {
        padding: 0.5rem 0 3rem 0;
    }

    .vendor-category h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .vendor-card {
        padding: 1.5rem;
    }

    .vendor-logo {
        height: 100px;
        margin-bottom: 1rem;
    }

    .vendor-logo img {
        max-height: 180px;
        max-width: 180px;
        transform: scale(1.2);
    }

    .vendor-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .vendor-card p {
        font-size: 0.95rem;
    }

    /* Recommendation Sidebar - Mobile Tablet */
    .recommendation-sidebar {
        padding: 1.25rem;
    }

    .sidebar-header h3 {
        font-size: 1.125rem;
    }

    .sidebar-header p {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .recommendation-form label {
        font-size: 0.875rem;
    }

    .recommendation-form select {
        padding: 0.625rem;
        font-size: 0.875rem;
    }

    .btn-recommend {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .btn-reset {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .recommendations-result h4 {
        font-size: 0.95rem;
    }

    .recommended-partner h5 {
        font-size: 0.9rem;
    }

    .recommended-partner p {
        font-size: 0.775rem;
    }

    .match-score {
        font-size: 0.725rem;
    }

    /* Partners Page - Small Mobile */
    .partners-hero {
        padding: 4rem 0 0.25rem;
    }

    .partners-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .partners-hero p {
        font-size: 0.9rem;
    }

    .partners-content {
        padding: 0.25rem 0 2.5rem 0;
    }

    .vendor-category {
        margin-bottom: 3rem;
    }

    .vendor-category h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .vendor-card {
        padding: 1.25rem;
    }

    .vendor-logo {
        height: 80px;
        margin-bottom: 0.75rem;
    }

    .vendor-logo img {
        max-height: 130px;
        max-width: 130px;
        transform: scale(1.0);
    }

    .vendor-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
    }

    .vendor-card p {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Small Mobile Vendor Grid */
    .vendor-grid {
        gap: 1.25rem;
    }

    /* Recommendation Sidebar - Small Mobile */
    .recommendation-sidebar {
        padding: 1rem;
    }

    .sidebar-header h3 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .sidebar-header p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .recommendation-form .form-group {
        margin-bottom: 0.875rem;
    }

    .recommendation-form label {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }

    .recommendation-form select {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .btn-recommend {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

    .btn-reset {
        padding: 0.425rem 0.875rem;
        font-size: 0.75rem;
    }

    .recommendations-result {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .recommendations-result h4 {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .recommended-partner {
        padding: 0.625rem;
        margin-bottom: 0.625rem;
    }

    .recommended-partner h5 {
        font-size: 0.825rem;
        margin-bottom: 0.2rem;
    }

    .recommended-partner p {
        font-size: 0.725rem;
        margin-bottom: 0.375rem;
    }

    .match-score {
        font-size: 0.675rem;
    }

    /* Footer - Small Mobile */
    .footer h3 {
        font-size: 1rem;
    }

    .footer p,
    .footer a {
        font-size: 0.8rem;
    }

    .footer-links-container {
        gap: 1rem;
    }

    .footer-links h4,
    .footer-services h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li,
    .footer-services li {
        margin-bottom: 0.4rem;
    }

    .tech-grid,
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .vendor-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .features-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .feature-compact,
    .feature-wide-short,
    .feature-wide,
    .feature-split-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .features-showcase .bottom-row {
        display: block;
    }

    .feature-split-wide {
        margin-bottom: 1.5rem;
        min-width: unset;
    }

    .feature-split-wide:last-child {
        margin-bottom: 0;
    }
}

/* Interactive Map Styles */
.map-section {
    margin-bottom: 2rem;
    padding: 0;
}

.interactive-map {
    position: relative;
    margin-bottom: 1.5rem;
}

.interactive-map iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-link:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #4f46e5;
}

.map-link svg {
    color: #4f46e5;
    transition: transform 0.3s ease;
}

.map-link:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        padding: 1rem;
        background: #f5f5f5;
    }

    .map-link {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        width: 100%;
        justify-content: center;
    }

    /* Mobile slider adjustments */
    .slider-container {
        height: 360px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .slider-btn svg {
        width: 14px;
        height: 14px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Mobile map adjustments */
    .interactive-map iframe {
        height: 250px;
    }
}

/* Service Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 98%;
    max-width: 1400px;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.3s ease-out;
    position: relative;
    z-index: 10001;
}

.modal-header {
    padding: 2.5rem 3rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: between;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    z-index: 10001;
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
    z-index: 10002;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 2rem 3rem;
    overflow-y: auto;
    max-height: 75vh;
    line-height: 1.7;
}

/* Vendor modal specific styling */
.vendor-modal .modal-body {
    overflow-y: visible;
    max-height: none;
}

.modal-footer {
    padding: 1.5rem 3rem 2.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-card {
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.service-card .service-link {
    background: none;
    border: none;
    color: #4f46e5;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
}

.service-card .service-link:hover {
    color: #3730a3;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

.feature-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.95rem;
}

.service-benefits {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.25);
}

.service-benefits h3 {
    color: white !important;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: white;
}

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

.benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.benefit-item span {
    color: white;
}

.process-steps {
    margin: 2.5rem 0;
}

.process-steps h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fafbfc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    background: #f1f5f9;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Additional Modal Content Styling */
.modal-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.modal-body .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.modal-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.modal-body li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.modal-body li strong {
    color: #1f2937;
    font-weight: 600;
}

/* Service Tier Cards */
.service-tier-card {
    background: #f5f5f5;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-tier-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        margin: 0;
        height: 100vh;
        max-width: none;
        border-radius: 0;
    }

    .vendor-detail {
        padding: 1.5rem;
        height: calc(100vh - 3rem);
        overflow-y: auto;
        box-sizing: border-box;
    }

    .modal-header {
        padding: 3rem 2rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 1.5rem 2rem;
    }

    .modal-footer {
        padding: 1rem 2rem 2rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .modal-body h3 {
        font-size: 1.2rem;
    }

    .modal-body .lead {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .modal-actions .btn-primary {
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
        white-space: nowrap;
        min-width: 200px;
        width: auto;
        display: inline-block;
    }

    .modal-close {
        top: 40px;
        right: 20px;
        position: fixed;
        z-index: 10002;
    }

    .modal-footer {
        position: relative;
        z-index: 10001;
    }
}





/* Awards Section */
.awards-section {}

.flow-icon.observe {
    color: #2563eb;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border-color: rgba(37, 99, 235, 0.3);
    animation: observePulse 5s ease-in-out infinite;
    animation-delay: 0s;
}

.flow-icon.observe svg {
    stroke: #2563eb;
    stroke-width: 2.5px;
    fill: none;
}

.flow-icon.observe:hover {
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.08));
    color: #1d4ed8;
}

.flow-icon.secure {
    color: #34d399;
    background: linear-gradient(145deg, rgba(52, 211, 153, 0.1), rgba(52, 211, 153, 0.05));
    border-color: rgba(52, 211, 153, 0.3);
    animation: securePulse 5s ease-in-out infinite;
    animation-delay: 1.7s;
}

.flow-icon.secure svg {
    stroke: #34d399;
    stroke-width: 2.5px;
    fill: none;
}

.flow-icon.secure:hover {
    background: linear-gradient(145deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.08));
    color: #10b981;
}

.flow-icon.optimize {
    color: #fbbf24;
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
    border-color: rgba(251, 191, 36, 0.3);
    animation: optimizePulse 5s ease-in-out infinite;
    animation-delay: 3.4s;
}

.flow-icon.optimize svg {
    stroke: #fbbf24;
    stroke-width: 2.5px;
    fill: none;
}

.flow-icon.optimize:hover {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.08));
    color: #f59e0b;
}

/* Mobile Landscape Specific - Fix hero section layout and navigation */
@media (max-width: 896px) and (max-height: 414px) and (orientation: landscape) {
    /* Header adjustments for mobile landscape */
    .header-content {
        height: 60px;
        padding: 0 1rem;
    }

    .logo {
        gap: 0.3rem;
    }

    .logo h1 {
        font-size: 1rem;
        letter-spacing: 0.05em;
        line-height: 1.1;
    }

    .tech-text {
        font-size: 0.65em;
    }

    .header-logo-img {
        width: 30px;
        height: 30px;
    }

    .nav-desktop {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.6rem;
        padding: 0.2rem 0.1rem;
        white-space: nowrap;
    }

    body {
        padding-top: 60px;
    }

    /* Hero section adjustments */
    .hero {
        min-height: 80vh;
        padding: 1rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        margin-top: -8vh;
        padding: 0.5rem 20px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-flow {
        gap: 2rem;
        margin: 0.75rem 0 1rem 0;
        padding: 0.25rem 0;
    }

    .flow-icon {
        width: 45px;
        height: 45px;
    }

    .flow-icon svg {
        width: 24px;
        height: 24px;
    }

    .flow-label {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
        white-space: nowrap;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        max-width: 600px;
    }

    .hero-buttons {
        gap: 0.75rem;
        margin-top: 0.25rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-width: 140px;
        text-align: center;
    }
}

/* Responsive Design */