/* Professional Website Styles - HPE Inspired */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    min-height: 100vh;
}

/* Smooth scroll padding for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Active navigation link styles */
.nav-link.active,
.desktop-nav a.active {
    color: #fbbf24 !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after,
.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fbbf24;
    border-radius: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.professional-nav {
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #1e40af;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.company-logo-container {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 50px;
    max-width: 180px;
    object-fit: contain;
}

.text-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 8px 16px;
    border: 2px solid #1e3a8a;
    border-radius: 8px;
    display: inline-block;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .logo-text {
        color: #1e3a8a;
        background: none;
    }
}

/* Ensure images load properly */
.company-logo, .platform-logo {
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px;
}

/* Service images fallback */
.service-image img, .member-photo img, .hero-image img {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 8px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #f1f5f9;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle i {
    display: block;
    transition: transform 0.3s ease;
}

/* Animated hamburger menu */
.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

/* Add pulse effect for mobile menu toggle */
.mobile-menu-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.mobile-menu-toggle:active::after {
    width: 60px;
    height: 60px;
}

/* Dropdown Content */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 15px 0;
    top: 100%;
    left: 0;
    z-index: 1001;
    border: 1px solid #e2e8f0;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #475569;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f1f5f9;
    color: #1e3a8a;
    padding-left: 25px;
}

.dropdown-content a i {
    color: #3b82f6;
    width: 16px;
}

/* Enhanced Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
    animation: slideInFromLeft 0.3s ease-out;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Mobile menu animations */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-nav-content {
    padding: 30px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-section {
    margin-bottom: 30px;
}

.mobile-nav-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

.mobile-nav-section a {
    display: block;
    color: #f1f5f9;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 5px 0;
    position: relative;
    overflow: hidden;
}

.mobile-nav-section a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav-section a:active {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

/* Add ripple effect for mobile nav links */
.mobile-nav-section a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mobile-nav-section a:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav.active {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-nav {
        display: none !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll padding for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    padding: 120px 0 80px;
    margin-top: 70px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1e40af;
    padding: 16px 32px;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
    transition: all 0.4s;
    cursor: pointer;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
    border-color: #3b82f6;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-text {
    color: #64748b;
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #059669;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.member-role {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-certifications {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Collaboration Section */
.collaboration-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.collaboration-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.collaboration-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.collaboration-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.collaboration-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Company Info Section */
.company-info-section {
    padding: 80px 0;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
}

.company-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
}

.certifications h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.cert-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.legal-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.legal-info p {
    margin-bottom: 10px;
    color: #64748b;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.contact-section .section-title {
    color: white;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-btn {
    background: #2563eb;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Modal Styles */
.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: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
}

.close:hover {
    color: #1e293b;
}

.modal-content h2 {
    margin-bottom: 30px;
    color: #1e293b;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Professional Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.chat-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(30, 58, 138, 0.5);
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

.chat-widget i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .collaboration-content {
        grid-template-columns: 1fr;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Enh
anced Navigation Styles */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .btn-outline,
.nav-actions .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-actions .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-actions .btn-primary {
    background: #fbbf24;
    color: #1e3a8a;
    font-weight: 600;
}

.nav-actions .btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-1px);
}

/* 3-Dot Menu Styles */
.three-dot-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.three-dot-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.three-dot-menu i {
    color: white;
    font-size: 1.2rem;
}

.three-dot-dropdown {
    position: absolute;
    top: 100%;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    min-width: 320px;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: 80vh;
    overflow-y: auto;
}

.three-dot-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.three-dot-dropdown .dropdown-section {
    padding: 0 20px;
    margin-bottom: 20px;
}

.three-dot-dropdown .dropdown-section:last-child {
    margin-bottom: 0;
}

.three-dot-dropdown h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.three-dot-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.three-dot-dropdown a:hover {
    background-color: #f1f5f9;
    color: #3b82f6;
    transform: translateX(5px);
}

.three-dot-dropdown a i {
    width: 18px;
    text-align: center;
    color: #64748b;
    transition: color 0.2s ease;
}

.three-dot-dropdown a:hover i {
    color: #3b82f6;
}

/* Enhanced Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
    border: 2px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
    border-color: #3b82f6;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-action {
    display: inline-block;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: #3b82f6;
}

.contact-btn.secondary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #10b981;
}

.contact-btn.tertiary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-color: #f59e0b;
}

.contact-btn i {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-btn span {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-btn small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.company-legal-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.legal-item {
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
}

.legal-item strong {
    color: #1e3a8a;
}

/* Contact Modal Styles */
.contact-modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-detail-content h3 {
    color: #1e3a8a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-detail-content h3 i {
    color: #3b82f6;
}

.phone-options,
.email-options {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.phone-option,
.email-option {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.phone-option h4,
.email-option h4 {
    color: #1e3a8a;
    margin-bottom: 8px;
}

.phone-number,
.email-address {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 10px 0;
}

.support-hours,
.response-times {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
}

.support-hours h4,
.response-times h4 {
    color: #0c4a6e;
    margin-bottom: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.hours-section {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.timezone-info {
    background: #fef3c7;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

.timezone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.timezone-item {
    background: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-actions {
        display: none;
    }
    
    .three-dot-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .three-dot-dropdown {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .three-dot-dropdown {
        padding: 15px 0;
    }
    
    .three-dot-dropdown .dropdown-section {
        padding: 0 15px;
    }
}

/* Payment notification styles */
.payment-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}/
* Partners Section Styles */
.partners-section {
    padding: 60px 0;
    background: #f8fafc;
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-section .section-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.partners-section .section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100px;
    width: 100%;
    max-width: 180px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-height: 50px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Mobile responsiveness for partners */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-logo {
        height: 80px;
        max-width: 150px;
    }
    
    .partner-logo img {
        max-height: 40px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
/* Comprehensive Visual Enhancements */
.partner-logo, .partner-logos img {
    max-height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}

.partner-logo:hover, .partner-logos img:hover {
    transform: scale(1.1) !important;
}

.service-category:hover, .pricing-card:hover, .step-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2) !important;
    transition: all 0.3s ease !important;
}

.clickable {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.clickable:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Professional Logo and Team Image Enhancements */

/* Company Logo Sizing - Make logos bigger and professional */
.platform-logo, .company-logo, .logo-section img {
    height: 65px !important;
    max-height: 65px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
}

.platform-logo-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 70px !important;
}

/* Text logo fallback sizing */
.text-logo .platform-name {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
}

.text-logo .platform-tagline {
    font-size: 0.85rem !important;
    margin-top: 3px !important;
}

/* Navigation header adjustments for bigger logo */
.platform-nav, .nav-container {
    min-height: 80px !important;
    height: auto !important;
}

.nav-container {
    padding: 10px 20px !important;
    align-items: center !important;
}

/* Team Images - Professional uniform sizing */
.team-member img, .member-photo img, .team-photo img, 
.team-member-photo img, .member-image img {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    border: 4px solid #3b82f6 !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease !important;
}

/* Team member containers */
.team-member, .member-card, .team-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 25px !important;
    margin: 15px !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.team-member:hover, .member-card:hover, .team-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2) !important;
}

.team-member:hover img, .member-card:hover img, .team-card:hover img {
    transform: scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4) !important;
}

/* Team section layout */
.team-section, .team-grid, .members-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    padding: 40px 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Team member information styling */
.team-member h3, .member-name {
    color: #1e3a8a !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin: 20px 0 10px 0 !important;
}

.team-member h4, .member-role {
    color: #3b82f6 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin: 0 0 15px 0 !important;
}

.team-member p, .member-bio {
    color: #64748b !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-logo, .company-logo, .logo-section img {
        height: 55px !important;
        max-height: 55px !important;
    }
    
    .text-logo .platform-name {
        font-size: 1.5rem !important;
    }
    
    .text-logo .platform-tagline {
        font-size: 0.75rem !important;
    }
    
    .team-member img, .member-photo img, .team-photo img {
        width: 150px !important;
        height: 150px !important;
    }
    
    .team-section, .team-grid, .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 20px !important;
        padding: 30px 15px !important;
    }
    
    .nav-container {
        min-height: 70px !important;
        padding: 8px 15px !important;
    }
}

@media (max-width: 480px) {
    .platform-logo, .company-logo, .logo-section img {
        height: 45px !important;
        max-height: 45px !important;
    }
    
    .text-logo .platform-name {
        font-size: 1.3rem !important;
    }
    
    .team-member img, .member-photo img, .team-photo img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .team-section, .team-grid, .members-grid {
        grid-template-columns: 1fr !important;
    }
}
