* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a8a;
    --secondary: #3b82f6;
    --accent: #2563eb;
    --dark: #1f2937;
    --light: #f3f4f6;
    --white: #ffffff;
    --text: #374151;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark);
    z-index: 1000;
    padding: 1rem 5%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu + .nav-cta {
    margin-left: 3rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.nav-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-left: 3rem;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url(hero-bg.jpg.jpg) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-link:hover {
    color: var(--accent);
    transform: translateX(5px);
    display: inline-block;
}

/* Sections */
section {
    padding: 6rem 0;
}

section.image-marquee {
    padding: 0;
}

.image-marquee-wrap {
    margin: 0.75rem 0 1.5rem;
}

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

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

.section-tag {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.center {
    text-align: center;
}

/* Services Intro */
.services-intro {
    background: var(--light);
}

.quote-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--secondary);
    max-width: 800px;
    margin: 3rem auto 0;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1rem;
}

.quote-author {
    color: var(--text);
    font-weight: 600;
}

/* Products Grid */
.products-section {
    background: var(--white);
}

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

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

.product-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
}

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

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 4rem 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-phone {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Quality Section */
.quality-section {
    background: var(--light);
    padding: 4rem 0;
}

.quality-grid {
    display: flex;
    justify-content: center;
}

.quality-badge {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.percentage {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.label {
    display: block;
    font-size: 1.5rem;
    color: var(--dark);
    margin-top: 1rem;
}

/* Partners */
.partners-section {
    padding: 3rem 0;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 80px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

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

/* Industries */
.industries-section {
    background: var(--white);
}

.industries-grid {
    display: grid;
    gap: 3rem;
}

.industry-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
}

.industry-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.industry-card:nth-child(even) img {
    order: 2;
}

.industry-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.industry-content {
    padding: 3rem;
}

.industry-content h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.industry-content p {
    color: var(--text);
    line-height: 1.8;
}

/* Process */
.process-section {
    background: var(--light);
}

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

.process-step {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text);
    line-height: 1.6;
}

/* Team */
.team-section {
    background: var(--white);
}

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

.team-card {
    text-align: center;
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
}

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

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--white);
}

.team-card h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--secondary);
    font-weight: 600;
}

/* Contact */
.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text);
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.feature-badge {
    background: var(--secondary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .industry-card,
    .industry-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .industry-card:nth-child(even) img {
        order: 0;
    }
    
    .contact-grid,
    .cta-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
.nav-menu a {
    text-transform: capitalize !important;
}
/* === CONTACT PAGE FIX === */

.contact-grid {
    align-items: stretch !important;
}

.contact-grid > div {
    height: 100% !important;
}

/* Make location card fill height */
.contact-home-side,
.location-card {
    display: flex !important;
    flex-direction: column !important;
}

/* Make map stretch properly */
iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 320px;
    border: 0;
    border-radius: 15px;
}
.contact-home-grid {
    align-items: stretch !important;
}

.contact-home-grid > div {
    height: 100% !important;
}
.global-map {
  padding: 5rem 0;
  background: #f8fafc;
  text-align: center;
}

.map-wrapper {
  margin-top: 2rem;
  position: relative;
}

.map-svg {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

.dot {
  fill: #3b82f6;
  filter: drop-shadow(0 0 6px rgba(59,130,246,0.6));
}

/* animated lines */
.route {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 2;
  stroke-dasharray: 6 6;
  animation: moveLine 3s linear infinite;
}

/* animation */
@keyframes moveLine {
  to {
    stroke-dashoffset: -12;
  }
}
