/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa 0%, #6366f1 50%, #ec4899 100%);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

/* Smooth section transitions */
section {
    scroll-margin-top: 100px;
    transition: all 0.6s ease;
}

/* Section fade-in animation */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00639e 30%, #6366f1 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(0.95);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

/* Enhanced navbar for page hero sections */
.page-hero + * .header,
.header.page-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.header.show {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header.scrolled {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

/* Light theme for navbar when over white backgrounds */
.header.light-theme {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.header.light-theme .logo-n {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: #00639e;
    box-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
}

.header.light-theme .logo-text {
    color: #1a1a2e;
}

.header.light-theme .nav-link {
    color: #1a1a2e;
}

.header.light-theme .nav-link:hover {
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.08);
}

.header.light-theme .cta-button {
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
}

.header.light-theme .cta-button:hover {
    background: #1a1a2e;
    color: white;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.2);
}

/* Dark theme for navbar when over dark backgrounds */
.header.dark-theme {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.header.dark-theme .logo-n {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: #00639e;
    box-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
}

.header.dark-theme .logo-text {
    color: #ffffff;
}

.header.dark-theme .nav-link {
    color: #ffffff;
}

.header.dark-theme .nav-link:hover {
    color: #00d4aa;
}

.header.dark-theme .cta-button {
    border: 2px solid white;
    color: white;
}

.header.dark-theme .cta-button:hover {
    background: white;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    min-height: 70px;
    flex-wrap: nowrap;
}

/* Fix logo alignment */
.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

/* Ensure all nav items stay on same line */
.nav-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #00d4aa, #6366f1);
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Navigation item animations */
.nav-item-animate {
    opacity: 0;
    transform: translateY(-10px);
    animation: navItemFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

/* Enhanced logo animations */
.nav-logo .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    height: 100%;
    line-height: 1;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.logo-n {
    background: linear-gradient(135deg, #00639e 0%, #00639e 100%);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-logo .logo:hover .logo-n {
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.4);
    transform: rotate(5deg);
}

.nav-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta i{
    padding-left: 10px;
}

/* Hide mobile CTA by default (show only in mobile menu) */
.mobile-cta {
    display: none;
}

.cta-button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cta-button::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 ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: white;
    color: #1a1a2e;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger bars on light theme pages */
.header.light-theme .bar,
.header.page-header .bar {
    background: #1a1a2e;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Floating Grid Dots Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 2px, transparent 2px),
        radial-gradient(circle at center, rgba(0, 212, 170, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at center, rgba(99, 102, 241, 0.4) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(255, 107, 107, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at center, rgba(52, 211, 153, 0.4) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 50px 50px, 90px 90px, 60px 60px;
    background-position: 0 0, 40px 40px, 20px 20px, 60px 10px, 10px 50px;
    animation: floatingDots 20s ease-in-out infinite;
    opacity: 1;
    z-index: 1;
}

/* Simplified grid animation for smaller screens */
@media (max-width: 768px) {
    .hero::before {
        background-image: 
            radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
            radial-gradient(circle at center, rgba(0, 212, 170, 0.5) 1px, transparent 1px);
        background-size: 60px 60px, 40px 40px;
        background-position: 0 0, 20px 20px;
        animation: simpleDots 15s linear infinite;
    }
}

@keyframes floatingDots {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-5px) translateX(-8px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-15px) translateX(3px);
        opacity: 0.7;
    }
}

/* Additional floating particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at center, rgba(0, 212, 170, 0.3) 3px, transparent 3px),
        radial-gradient(circle at center, rgba(99, 102, 241, 0.25) 2px, transparent 2px),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px),
        radial-gradient(circle at center, rgba(245, 158, 11, 0.3) 2.5px, transparent 2.5px),
        radial-gradient(circle at center, rgba(236, 72, 153, 0.25) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(34, 197, 94, 0.3) 1.5px, transparent 1.5px);
    background-size: 180px 180px, 100px 100px, 140px 140px, 160px 160px, 70px 70px, 110px 110px;
    background-position: 90px 90px, 50px 50px, 70px 70px, 20px 120px, 120px 20px, 30px 150px;
    animation: floatingParticles 25s ease-in-out infinite reverse;
    opacity: 0.8;
    z-index: 1;
}

/* Disable complex animations on smaller screens for better performance */
@media (max-width: 768px) {
    .hero::after {
        display: none;
    }
}

@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.4;
    }
    33% {
        transform: translateY(-8px) translateX(6px) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(-12px) translateX(-4px) rotate(240deg);
        opacity: 0.3;
    }
}


/* Simple Dot Grid Pattern */
.hero-content::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 2px, transparent 2px),
        radial-gradient(circle, rgba(0, 212, 170, 0.5) 1px, transparent 1px),
        radial-gradient(circle, rgba(139, 92, 246, 0.4) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(251, 146, 60, 0.3) 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px, 60px 60px, 50px 50px;
    background-position: 0 0, 20px 20px, 30px 10px, 10px 30px;
    animation: simpleDots 15s linear infinite;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* Disable hero content animation on smaller screens */
@media (max-width: 768px) {
    .hero-content::after {
        display: none;
    }
}

@keyframes simpleDots {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 3;
    width: 100%;
    box-sizing: border-box;
}

.hero-content,
.hero-right {
    position: relative;
    z-index: 4;
}

.hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.title-building {
    color: #ffffff;
    display: block;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-innovative {
    color: #ffffff;
    display: block;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-solutions {
    color: #ffffff;
    display: block;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-healthcare::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 8px;
    background: linear-gradient(90deg, #00d4aa, #00a8cc);
    border-radius: 4px;
}


.medical-equipment {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.medical-equipment::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2" opacity="0.3"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2" opacity="0.5"/><circle cx="50" cy="50" r="5" fill="white" opacity="0.8"/></svg>') center/contain no-repeat;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.discover-button {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: fit-content;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.discover-button:hover {
    background: white;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.about-text {
    position: relative;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.experience-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.experience-number {
    font-size: 4rem;
    font-weight: 800;
    color: #00366e;
    line-height: 1;
}

.experience-text {
    font-size: 1.2rem;
    color: #00366e;
    font-weight: 500;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-description p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
}

.about-image {
    position: relative;
    height: 500px;
}

.workspace-image {
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.workspace-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="20" width="80" height="60" fill="none" stroke="%23374151" stroke-width="1" opacity="0.3"/><rect x="15" y="25" width="30" height="20" fill="%236366f1" opacity="0.2"/><rect x="50" y="25" width="30" height="20" fill="%2300d4aa" opacity="0.2"/><rect x="15" y="50" width="65" height="25" fill="%23f59e0b" opacity="0.1"/></svg>') center/contain no-repeat;
}

.innovation-quote {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #1a1a2e;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 350px;
}

.innovation-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.innovation-quote cite {
    font-weight: 600;
    font-style: normal;
}

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

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.services-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap:1.5rem;
    margin-bottom: 0;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #00639e;
}


.feature-item i {
    background: linear-gradient(135deg, #00639e, #0077b5);
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* Benefits Grid Styling (matches features-grid) */
* Benefits Grid Styling */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #00639e;
}

.benefit-item i {
    background: linear-gradient(135deg, #00639e, #0077b5);
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Different colors for feature icons */
.feature-item:nth-child(1) i {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-item:nth-child(2) i {
    background: linear-gradient(135deg, #f093fb, #450faf);
}

.feature-item:nth-child(3) i {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.feature-item:nth-child(4) i {
    background: linear-gradient(135deg, #4571b3, #38f9d7);
}

.feature-item:nth-child(5) i {
    background: linear-gradient(135deg, #6b1aad, #fee140);
}

.feature-item:nth-child(6) i {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

/* Different colors for benefit icons */
.benefit-item:nth-child(1) i {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.benefit-item:nth-child(2) i {
    background: linear-gradient(135deg, #f093fb, #9b57f5);
}

.benefit-item:nth-child(3) i {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.benefit-item:nth-child(4) i {
    background: linear-gradient(135deg, #126293, #38f9d7);
}

.benefit-item:nth-child(5) i {
    background: linear-gradient(135deg, #191c63, #fee140);
}

.services-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 500px;
}

.robot-image-1, .robot-image-2 {
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-image-1 img, .robot-image-2 img {
    max-width: 100%;
    height:auto;
    object-fit: contain;
    border-radius: 20px;
    border: #00a8cc 1px solid;
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.robot-image-1 img:hover, .robot-image-2 img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 168, 204, 0.25);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #1a1a2e;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.get-started-button {
    background: #00639e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.get-started-button:hover {
    background: white;
    color: #00639e;
}

.contact-images {
    display: flex;
    gap: 2rem;
    height: 300px;
}

.get-in-touch{
    flex: 1;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.get-in-touch img {
    max-width: 100%;
    height:auto;
    object-fit: contain;
    border-radius: 20px;
    border: #00a8cc 1px solid;
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-in-touch img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 168, 204, 0.25);
}


/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 50px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #d1d5db;
}

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

.social-link {
    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 ease;
}

.social-link:hover {
    background: #00639e;
    transform: translateY(-2px);
}

/* Responsive Design */

/* Large iPad Pro (12.9") specific fixes */
@media (max-width: 1366px) and (min-width: 1081px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 3rem;
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        min-height: 70px;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .nav-menu {
        gap: 2.5rem;
        flex: 1;
        justify-content: center;
        margin: 0 3rem;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        color: #00b4d8;
        transform: translateY(-1px);
    }
    
    .nav-cta {
        flex-shrink: 0;
        margin-left: 0;
    }
    
    .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
        white-space: nowrap;
        border-radius: 25px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .nav-cta i {
        padding-left: 10px;
        font-size: 1rem;
    }
    
    /* Join Our Team button styling */
    .nav-careers-btn .cta-button {
        background: linear-gradient(135deg, #0077b5 0%, #00639e 100%);
        padding: 0.8rem 1.4rem;
        margin-right: 1rem;
    }
}

/* iPad Air and iPad Pro specific fixes */
@media (max-width: 1080px) and (min-width: 769px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 2rem;
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        min-height: 70px;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .nav-menu {
        gap: 1.8rem;
        flex: 1;
        justify-content: center;
        margin: 0 2rem;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .nav-menu .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        color: #00b4d8;
        transform: translateY(-1px);
    }
    
    .nav-cta {
        flex-shrink: 0;
        margin-left: 0;
    }
    
    .cta-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
        white-space: nowrap;
        border-radius: 25px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .nav-cta i {
        padding-left: 8px;
        font-size: 0.9rem;
    }
    
    /* Join Our Team button styling */
    .nav-careers-btn .cta-button {
        background: linear-gradient(135deg, #0077b5 0%, #00639e 100%);
        padding: 0.7rem 1.2rem;
        margin-right: 0.8rem;
    }
    
    .nav-careers-btn .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
    }
    
    /* Better logo spacing */
    .nav-logo .logo {
        font-size: 1.4rem;
    }
    
    /* Enhanced button group spacing */
    .nav-cta-group {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }
}

/* Medium to smaller screens - Show only icons for buttons */
@media (max-width: 1200px) and (min-width: 821px) {
    /* Join Our Team button - icon only */
    .nav-careers-btn {
        padding: 10px 12px;
        min-width: auto;
        width: auto;
        font-size: 0;
    }
    
    .nav-careers-btn i {
        font-size: 14px;
        margin: 0;
    }
    
    /* Let's Talk button - icon only */
    .cta-button {
        padding: 10px 12px;
        font-size: 0;
        min-width: auto;
        width: auto;
    }
    
    .cta-button i {
        font-size: 14px;
        padding-left: 0;
        margin: 0;
    }
    
    /* Add tooltips for better UX */
    .nav-careers-btn {
        position: relative;
    }
    
    .nav-careers-btn:hover::before {
        content: "Join Our Team";
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
    }
    
    .cta-button {
        position: relative;
    }
    
    .cta-button:hover::before {
        content: "Let's Talk";
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
    }
}

/* iPad Air Specific - Inline Navigation with Buttons */
@media (max-width: 820px) and (min-width: 769px) {
    /* Hide hamburger menu */
    .hamburger {
        display: none;
    }
    
    /* Show inline navigation */
    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        margin: 0;
        padding: 0;
        position: static;
        background: none;
        width: auto;
        height: auto;
        flex-wrap: nowrap;
    }
    
    .nav-item {
        margin: 0;
        flex-shrink: 0;
    }
    
    .nav-menu .nav-link {
        color: white;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0.5rem 0.8rem;
        border-bottom: none;
        transition: all 0.3s ease;
        display: block;
        width: auto;
        white-space: nowrap;
    }
    
    .nav-menu .nav-link:hover {
        color: #00b4d8;
        padding-left: 0.8rem;
        transform: translateY(-1px);
    }
    
    /* Show CTA and careers button inline */
    .nav-cta {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        gap: 0.6rem;
    }
    
    .nav-careers-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #0077b5 0%, #00639e 100%);
        border: none;
        color: transparent;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-right: 0;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        position: relative;
        text-indent: -9999px;
        overflow: hidden;
    }
    
    .nav-careers-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
    }
    
    .nav-careers-btn:hover::before {
        content: "Join Our Team";
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
    }
    
    .nav-careers-btn i {
        font-size: 14px;
        margin: 0;
        color: white !important;
        position: absolute;
        top: calc(50% - 6px);
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        text-indent: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        line-height: 1;
    }
    
    .cta-button {
        background: transparent;
        border: 2px solid white;
        color: transparent;
        padding: 0;
        border-radius: 50%;
        text-decoration: none;
        font-weight: 600;
        font-size: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        position: relative;
        text-indent: -9999px;
        overflow: hidden;
    }
    
    .cta-button:hover {
        background: white;
        color: #1a1a2e;
        transform: translateY(-1px);
    }
    
    .cta-button:hover::before {
        content: "Let's Talk";
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
    }
    
    .cta-button i {
        font-size: 14px;
        margin: 0;
        color: white !important;
        position: absolute;
        top: calc(50% - 8px);
        left: calc(50% - 4px);
        transform: translateX(-50%);
        z-index: 1;
        text-indent: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        line-height: 1;
    }
    
    .cta-button:hover i {
        color: #1a1a2e !important;
    }
    
    /* Light theme and page header styles for iPad Air buttons */
    .header.light-theme .cta-button i,
    .header.page-header .cta-button i {
        color: #1a1a2e !important;
    }
    
    .header.light-theme .cta-button:hover i,
    .header.page-header .cta-button:hover i {
        color: white !important;
    }
    
    .header.light-theme .cta-button,
    .header.page-header .cta-button {
        border: 2px solid #1a1a2e;
    }
    
    .header.light-theme .cta-button:hover,
    .header.page-header .cta-button:hover {
        background: #1a1a2e;
        color: white;
    }
    
    /* Hide mobile CTA since we're showing desktop version */
    .mobile-cta {
        display: none !important;
    }
    
    /* Header adjustments */
    .header {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        min-height: 60px;
        position: relative;
    }
    
    .nav-logo {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .nav-logo .logo {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
    }
    
    /* Ensure proper spacing and centering */
    .nav-menu {
        flex: 1;
        justify-content: center;
        margin: 0 1rem;
        display: flex;
        align-items: center;
    }
    
    /* Button container alignment */
    .nav-careers-btn,
    .nav-cta {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    /* Prevent horizontal overflow on tablets */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Tablet Navigation Bar Fixes */
    .nav-container {
        padding: 0 1rem;
        max-width: 100%;
        justify-content: space-between;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .nav-cta {
        margin-left: 1rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .nav-cta i {
        padding-left: 8px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .about-content,
    .services-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
        width: 100%;
    }
    
    .about-container,
    .services-container,
    .contact-container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Product page responsive */
    .products-intro-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        width: 100%;
    }
    
    /* Team grid responsive - 2 columns on tablet */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
    }
    
    /* Team members flow naturally on tablet */
    
    /* Images responsive */
    .robot-image-1 img, .robot-image-2 img,
    .get-in-touch img,
    .products-intro-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    /* Services images */
    .services-images {
        width: 100%;
        max-width: none;
    }
    
    /* Typography adjustments */
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .about-title,
    .services-title,
    .contact-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Override any default link styles in mobile menu */
    .nav-menu a,
    .nav-menu a:link,
    .nav-menu a:visited,
    .nav-menu a:hover,
    .nav-menu a:active {
        text-decoration: none !important;
        border-bottom: none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    /* Mobile Navigation - Force dark theme for all pages */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(26, 26, 46, 0.98) !important;
        backdrop-filter: blur(20px);
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        text-align: left;
        transition: 0.3s;
        box-shadow: none;
        padding: 0;
        z-index: 9999;
        justify-content: flex-start;
        overflow-y: hidden;
        overscroll-behavior: contain;
    }
    
    /* Force dark mobile menu on all page types */
    .header.light-theme .nav-menu,
    .header.page-header .nav-menu {
        background-color: rgba(26, 26, 46, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        color: white !important;
    }
    
    /* Ensure mobile menu covers entire screen */
    .nav-menu.active {
        left: 0 !important;
        top: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
    }
    
    /* Hide logo when mobile menu is active */
    .mobile-menu-active .nav-logo {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    /* Prevent body scroll when mobile menu is active */
    .mobile-menu-active {
        overflow: hidden;
        height: 100vh;
        height: 100dvh;
        position: fixed;
        width: 100%;
    }
    
    .mobile-menu-active body {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Ensure mobile menu works on light theme pages */
    .header.light-theme .mobile-menu-active .nav-logo,
    .header.page-header .mobile-menu-active .nav-logo {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    /* Mobile menu hamburger on light theme pages */
    .header.light-theme .hamburger.active,
    .header.page-header .hamburger.active {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Mobile menu close button */
    .mobile-close-btn {
        position: absolute;
        top: 2rem;
        left: 2rem;
        background: none;
        border: none;
        color: white !important;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1002;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    /* Ensure close button is white on all page types */
    .header.light-theme .mobile-close-btn,
    .header.page-header .mobile-close-btn {
        color: white !important;
    }
    
    .mobile-close-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    
    /* Mobile menu structure */
    .mobile-nav-top {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 6rem;
        margin-left: 0;
        padding-left: 1.5rem;
        padding-right: 3rem;
        flex: 1;
        justify-content: flex-start;
    }
    
    .nav-item {
        margin: 0;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1.2rem 0;
        color: white !important;
        font-size: 1.2rem !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        transition: all 0.3s ease;
        border-radius: 0 !important;
        background: transparent !important;
        position: relative;
        width: 100%;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Ensure nav links are white on all page types */
    .header.light-theme .nav-menu .nav-link,
    .header.page-header .nav-menu .nav-link {
        color: white !important;
        text-decoration: none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Mobile menu specific link styling */
    .nav-menu .nav-link,
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus,
    .nav-menu .nav-link:active,
    .nav-menu .nav-link:visited {
        text-decoration: none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    
    /* Mobile menu bottom section */
    .mobile-nav-bottom {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        flex-shrink: 0;
        padding: 2rem;
        padding-top: 3rem;
    }
    
    /* Mobile action buttons - side by side */
    .mobile-action-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .mobile-cta-button, .mobile-careers-button {
        flex: 1;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        text-align: center;
    }
    
    .mobile-cta-button {
        background: linear-gradient(135deg, #00639e 0%, #0077b5 100%) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(0, 99, 158, 0.3);
    }
    
    .mobile-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 99, 158, 0.4);
    }
    
    .mobile-careers-button {
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    .mobile-careers-button:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    /* Social links */
    .mobile-social-links {
        display: flex;
        gap: 1.5rem;
        justify-content: flex-start;
        align-items: center;
    }
    
    .mobile-social-link {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.3rem;
    }
    
    .mobile-social-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .mobile-social-link.linkedin:hover {
        background: #0077b5;
    }
    
    .mobile-social-link.facebook:hover {
        background: #1877f2;
    }
    
    .mobile-social-link.instagram:hover {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    /* Hide hamburger when menu is active (we'll use close button instead) */
    .hamburger.active {
        opacity: 0;
        pointer-events: none;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
        overflow-x: hidden;
    }
    
    .hero-container {
        padding: 1rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        max-width: 100%;
        width: 100%;
        min-height: calc(80vh - 100px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .hero-right {
        padding-left: 0;
    }
    
    .about-title,
    .services-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    /* Container improvements */
    .about-container,
    .services-container,
    .contact-container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Cards and Grids Mobile */
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .feature-item,
    .benefit-item {
        padding: 1.5rem;
        width: 100%;
        max-width: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 3rem auto 0;
    }
    
    /* Team members flow naturally in single column on mobile */
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Products page mobile */
    .products-intro-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
        width: 100%;
    }
    
    .products-intro-left {
        order: 1;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .products-intro-right {
        order: 2;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .products-intro-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    .product-info-features {
        display: block;
        width: 100%;
    }
    
    .product-features,
    .product-benefits {
        margin-bottom: 3rem;
        width: 100%;
    }
    
    /* Videos section mobile - single column */
    .videos-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .video-card {
        padding: 1.5rem;
        width: 100%;
        margin-bottom: 1rem;
        max-width: none;
    }
    
    .video-card video {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
    }
    
    .videos-section {
        padding: 2rem 1rem;
        width: 100%;
    }
    
    /* Reduce all container padding on mobile */
    .products-overview-container,
    .about-main-container,
    .services-main-container,
    .page-hero-container,
    .contact-main-container,
    .why-choose-container,
    .traklyn-showcase {
        padding: 0 1rem !important;
        max-width: 100%;
        width: 100%;
    }
    
    .contact-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }
    
    .services-images {
        grid-template-columns: 1fr;
        height: auto;
        width: 100%;
    }
    
    .robot-image-1, .robot-image-2 {
        width: 100%;
        max-width: none;
    }
    
    .robot-image-1 img, .robot-image-2 img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .robot-image-2 {
        margin-top: 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Images responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent text overflow */
    .hero-description,
    .about-description p,
    .services-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices - prevent all overflow */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0 0.5rem;
        width: 100%;
    }
    
    .hero-container,
    .about-container,
    .services-container,
    .contact-container,
    .footer-container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        line-height: 1.1;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .about-title,
    .services-title {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }
    
    .page-hero-title {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }
    
    .page-hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    /* Cards extra small */
    .feature-item,
    .benefit-item {
        padding: 1rem;
        gap: 1rem;
        margin: 0;
        width: 100%;
        max-width: none;
    }
    
    .team-member {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
    }
    
    .video-card {
        padding: 1rem;
        margin: 0 0 1.5rem 0;
        width: 100%;
        max-width: none;
    }
    
    .video-card video {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-item i,
    .benefit-item i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-item span,
    .benefit-item span {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .member-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1.5rem;
        /* Ensure consistent circular shape on mobile */
        position: relative;
        overflow: hidden;
        border-radius: 50%;
        flex-shrink: 0;
    }
    
    .team-member {
        padding: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .member-name {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .member-role {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    /* Hide desktop CTA button on mobile */
    .nav-cta {
        display: none !important;
    }
    
    /* Modal improvements for mobile */
    .modal-container {
        margin: 0.5rem;
        max-height: 95vh;
        overflow-y: auto;
        width: calc(100% - 1rem);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products page extra small mobile */
    .products-intro-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        width: 100%;
    }
    
    .products-intro-left {
        text-align: center;
        padding: 0;
        order: 1;
        margin: 0;
        width: 100%;
    }
    
    .products-intro-right {
        order: 2;
        text-align: center;
        width: 100%;
    }
    
    .products-intro-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .section-text {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .video-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
    }
    
    .video-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .videos-ctn-heading .section-title {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }
    
    .videos-ctn-heading .section-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .contact-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .contact-images {
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    
    .get-in-touch {
        width: 100%;
        max-width: none;
    }
    
    .get-in-touch img {
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure all containers fit screen */
    .hero, .about, .services, .contact, .footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Text responsiveness */
    p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Active Navigation Link */
.nav-link.active {
    color: #6366f1;
    font-weight: 600;
}

/* Page Hero Styles */
.page-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 500;
}

/* About Page Styles */
.about-main {
    padding: 100px 0;
    background: white;
}

.about-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.section-title.center {
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-main-image {
    height: 400px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 20px;
}

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

.mission-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: #00639e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.card-text {
    color: #6b7280;
    line-height: 1.6;
}

.team-section {
    margin-bottom: 6rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.team-grid .team-member {
    width: 100%;
    max-width: 300px;
    min-width: 280px;
    /* Ensure consistent sizing for all team members */
}

/* Position the 4th and 5th members centered in the bottom row on desktop */
@media (min-width: 769px) {
/* 4th and 5th members centered in second row */
    .team-grid .team-member:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 2;
        justify-self: center;
        margin-right: 0.5rem;
    }

    .team-grid .team-member:nth-child(5) {
        grid-column: 2 / 4;
        grid-row: 2;
        justify-self: center;
        margin-left: 0.5rem;
    }
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Ensure all team members have consistent sizing */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
}
.member-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
    /* Ensure consistent circular container */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: center;
    /* Ensure consistent scaling for all images */
    min-width: 100%;
    min-height: 100%;
    /* Fix mobile display issues */
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #00639e;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-linkedin {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px;
    background: #0077b5;
    color:white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.member-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.member-linkedin:active,
.member-linkedin:visited {
    color: white;
    background: #0077b5;
}

.member-linkedin i {
    font-size: 1.2rem;
}

.member-bio {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-section {
    background: #1a1a2e;
    padding: 4rem 2rem;
    border-radius: 20px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00639e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #d1d5db;
}

/* Services Page Styles */
.services-overview {
    padding: 100px 0;
    background: white;
}

.services-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.service-card.featured {
    background: linear-gradient(135deg, #00639e 0%, #00639e 100%);
    color: white;
    border: 2px solid #00639e;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #00639e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.service-card.featured .service-title {
    color: white;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.service-card.featured .service-features h4 {
    color: white;
}

.service-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-features li:last-child {
    border-bottom: none;
}

.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.process-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #00639e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Products Page Styles */
.products-overview {
    padding: 100px 0;
    background: white;
}

.products-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-intro-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.products-intro-left {
    text-align: justify;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-intro-right {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-intro-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.products-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.traklyn-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 4rem;
}

.product-info {
    max-width: 1400px;
    margin: 0 auto;
}


.product-description{
    text-align: justify;
}
.product-info-features{
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.product-features,
.product-benefits {
    margin-bottom: 4rem;
}
.product-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.product-card.flagship {
    border: 2px solid #6366f1;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: #6366f1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.product-badge {
    background: #00639e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.product-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}


.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00639e;
    font-weight: 600;
}

.product-features li:last-child {
    border-bottom: none;
}



.product-benefits li{
    list-style: none;
    padding: 0.5rem 0;
    color: #1b1a1a;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.product-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00639e;
    font-weight: 600;
}

.product-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.product-pricing {
    margin: 1.5rem 0;
    text-align: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.product-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid #00639e;
    color: #00639e;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: #00639e;
    color: white;
}

.product-button.primary {
    background: #00639e;
    color: white;
}

.product-button.primary:hover {
    background: #00639e;
}

.comparison-section {
    padding: 100px 0;
    background: #f8fafc;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #1a1a2e;
    color: white;
    font-weight: 600;
}

.comparison-header > div {
    padding: 1.5rem;
    text-align: center;
}

.feature-column {
    text-align: left !important;
}

.product-column.featured {
    background: #6366f1;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row > div {
    padding: 1rem 1.5rem;
    text-align: center;
}

.feature-name {
    text-align: left !important;
    font-weight: 500;
    color: #1a1a2e;
}

.feature-value {
    font-weight: 600;
    color: #6366f1;
}

.comparison-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f8fafc;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a2e;
}

.comparison-footer > div {
    padding: 1.5rem;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #00639e 0%, #00639e 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-primary-button {
    background: white;
    color: #00639e;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer Link Styles */
.footer-column h3 a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column h3 a:hover {
    color:  #00639e;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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


.videos-ctn-heading {
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.video-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
}

.video-card video {
    width: 90%;
    height: 80%;
    object-fit: fill;
}


/* Privacy page */

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.privacy-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4a90e2;
}

.privacy-section h3 {
    color: #1a1a2e;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-subsection {
    margin: 1.5rem 0;
}

.privacy-subsection h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
}

.privacy-section p {
    color: #555;
    margin: 0 0 1rem 0;
}

.privacy-section ul {
    color: #555;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.privacy-section li strong {
    color: #1a1a2e;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #e0e0e0;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #333;
}

.contact-info strong {
    color: #1a1a2e;
}

.section-text strong {
    color: #4a90e2;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 0 1rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}



/* faq page */

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.faq-question i {
    color: #4a90e2;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}



.contact-main {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Contact Information Section */
.contact-info-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-options {
    margin: 2rem 0;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: #f8f9fa;
}

.contact-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-option.active {
    background: #4a90e2;
    border-color: #357abd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.contact-option.active .contact-details h3,
.contact-option.active .contact-details p {
    color: white;
}

.contact-option.active .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-option.active .contact-icon i {
    color: white;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details {
    margin-left: 1rem;
    flex: 1;
}

.contact-details h3 {
    margin: 0 0 0.5rem 0;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0.2rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-links h3 {
    margin: 0 0 1rem 0;
    color: #1a1a2e;
}

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

.social-icons .social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-link:hover {
    background: #4a90e2;
    transform: translateY(-2px);
}

.social-icons .social-link:hover i {
    color: white;
}

.social-icons .social-link i {
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container {
    max-width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.contact-form {
    animation: fadeIn 0.5s ease-in-out;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group select[multiple] {
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

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

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    margin: 0 0 0.5rem 0;
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-header p {
    margin: 0;
    color: #666;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

.submit-button {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Why Choose Us Section */
.why-choose-contact {
    padding: 4rem 0;
    background: white;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3,2fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    margin: 0 0 1rem 0;
    color: #1a1a2e;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        max-width: 100%;
    }
    
    .contact-main-container,
    .why-choose-container {
        padding: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-option {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 100px;
}

/* Global Responsive Improvements */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container responsive improvements */
.products-overview-container,
.about-main-container,
.services-main-container,
.page-hero-container,
.contact-main-container,
.why-choose-container,
.comparison-container,
.cta-container,
.process-container,
.services-overview-container {
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .products-overview-container,
    .about-main-container,
    .services-main-container,
    .page-hero-container,
    .contact-main-container,
    .why-choose-container,
    .comparison-container,
    .cta-container,
    .process-container,
    .services-overview-container {
        padding: 0 2rem;
    }
}

/* Responsive video container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive tables */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

@media (min-width: 768px) {
    table {
        display: table;
        white-space: normal;
    }
}

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
    .about-content-grid,
    .mission-vision-grid,
    .team-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-header,
    .comparison-row,
    .comparison-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-column,
    .feature-name {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Additional responsive breakpoint for very small screens - Team Grid Optimization */
@media (max-width: 480px) {
    .team-grid {
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .team-member {
        padding: 1.2rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    /* Fix mobile image orientation issues */
    .member-photo {
        object-position: center center;
        image-orientation: from-image;
        /* Force hardware acceleration for smoother rendering */
        will-change: transform;
        /* Ensure proper aspect ratio */
        aspect-ratio: 1 / 1;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 50vh;
        padding-top: 100px;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-card,
    .service-card,
    .product-card {
        padding: 1.5rem;
    }
}



.calendar-booking {
    max-width: 600px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.calendar-redirect-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 12px;
    border: 1px solid #e1e8f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2c3e50;
}

.info-item i {
    color: #007bff;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.calendar-redirect-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.calendar-redirect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.calendar-redirect-btn:active {
    transform: translateY(0);
}

.calendar-redirect-btn i {
    font-size: 18px;
}

.calendar-note {
    background: #fff3cd;
    color: #856404;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid #ffc107;
    margin: 0;
}

.calendar-note i {
    margin-right: 8px;
    color: #ffc107;
}

.google-calendar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    min-height: 60px;
}

.google-calendar-container > * {
    width: 100%;
    max-width: 300px;
}

/* Style the Google Calendar button when it loads */
.google-calendar-container button,
.google-calendar-container .scheduling-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 18px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    width: 100% !important;
}

.google-calendar-container button:hover,
.google-calendar-container .scheduling-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%) !important;
}

/* Form Message Styles */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideIn 0.3s ease-out;
}

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

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

.form-message i {
    font-size: 16px;
    flex-shrink: 0;
}

.form-message.success i {
    color: #28a745;
}

.form-message.error i {
    color: #dc3545;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading button styles */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* New Contact Page Styles */
.contact-details-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 12px;
    border: 1px solid #e1e8f0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-detail-content h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.contact-detail-content a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-actions-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-actions-container {
    width: 100%;
    max-width: 500px;
}


.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border: 2px solid #e1e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.contact-action-btn.demo-btn:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.contact-action-btn.quote-btn:hover {
    background: linear-gradient(135deg, #fff8f0 0%, #ffeaa7 100%);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.quote-btn .action-icon {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

.action-content {
    flex: 1;
}

.action-content h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.action-content p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.action-arrow {
    font-size: 20px;
    color: #007bff;
    transition: transform 0.3s ease;
}

.contact-action-btn:hover .action-arrow {
    transform: translateX(5px);
}

/* Quick Info Cards */
.quick-info-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e1e8f0;
}

.quick-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.quick-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-info-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.quick-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 100%);
    border: 1px solid #e1f0ff;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.quick-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.15);
    border-color: #4facfe;
}

.quick-info-card:hover::before {
    transform: scaleY(1);
}

.quick-info-card:nth-child(1) .quick-info-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.quick-info-card:nth-child(2) .quick-info-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.quick-info-card:nth-child(3) .quick-info-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
}

.quick-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(79, 172, 254, 0.3);
}

.quick-info-content {
    flex: 1;
}

.quick-info-content h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

.quick-info-content p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px) scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.quote-modal-container {
    max-width: 600px;
}

.careers-modal-container {
    max-width: 700px;
}

/* File Upload Styling */
.file-upload-container {
    position: relative;
    margin-top: 8px;
}

.file-upload-container input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-display {
    border: 2px dashed #e1e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-display:hover {
    border-color: #4facfe;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.file-upload-display i {
    font-size: 32px;
    color: #4facfe;
    margin-bottom: 10px;
    display: block;
}

.file-upload-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.file-upload-info {
    display: block;
    font-size: 13px;
    color: #6c757d;
}

.file-upload-container.has-file .file-upload-display {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.file-upload-container.has-file .file-upload-display i {
    color: #28a745;
}

.file-upload-container.has-file .file-upload-text {
    color: #28a745;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid #e1e8f0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ff4757;
    color: white;
    transform: scale(1.1);
}

.modal-content {
    padding: 30px;
}

.modal-subtitle {
    color: #6c757d;
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e1e8f0;
}

.cancel-btn {
    padding: 14px 28px;
    border: 2px solid #f1f3f4;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cancel-btn:hover {
    border-color: #ff6b7a;
    color: #ff6b7a;
    background: linear-gradient(135deg, #fff5f6 0%, #ffe1e4 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 122, 0.2);
}

.submit-btn {
    padding: 14px 28px !important;
    background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4) !important;
}

.submit-btn:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.submit-btn span {
    font-size: 15px !important;
    font-weight: 600 !important;
}

/* Careers Button in Navigation */
.nav-careers-btn {
    background: linear-gradient(135deg, #00639e 0%, #00639e 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-careers-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.nav-careers-btn i {
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-careers-btn {
        width: 100%;
        justify-content: center;
        margin: 10px 0;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-actions {
        gap: 15px;
    }
    
    .contact-action-btn {
        padding: 20px;
        gap: 15px;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .action-content h4 {
        font-size: 18px;
    }
    
    .modal-container {
        margin: 10px;
        max-height: 85vh;
    }
    
    .modal-header,
    .modal-content {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cancel-btn,
    .submit-btn {
        width: 100%;
    }
    
    .quick-info-section {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .quick-info-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .quick-info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quick-info-card:nth-child(3) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }
    
    .quick-info-card {
        padding: 15px 18px;
        gap: 12px;
    }
    
    .quick-info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .quick-info-content h5 {
        font-size: 15px;
    }
    
    .quick-info-content p {
        font-size: 13px;
    }
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 10px 15px;
    border: 2px solid #e1e5e9;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.time-slot.active {
    border-color: #007bff;
    background: #007bff;
    color: white;
}

.booking-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.booking-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.booking-notice {
    background: #cce7ff;
    color: #0066cc;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    border-left: 4px solid #0066cc;
}

.booking-notice i {
    margin-right: 8px;
}

.email-link {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.email-link:hover {
    background: #0056b3;
    color: white;
}

.email-link i {
    margin-right: 8px;
}