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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #0A5DA1;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #0A5DA1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ED7236;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A5DA1 0%, #0A5DA1 50%, #0A5DA1 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #ED7236, #ED7236)
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ED7236, #ED7236);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(237, 114, 54, 0.3);
    background: linear-gradient(45deg, #d65a2a, #d65a2a);
}

.btn-secondary {
    background: white;
    color: #0A5DA1;
    border: 2px solid #0A5DA1;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #0A5DA1;
    color: white;
    border: 2px solid #0A5DA1;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A5DA1, #0A5DA1); /* Fallback background */
}

.port-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: block; /* Ensure image is displayed */
    max-width: 100%;
    max-height: 100%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 93, 161, 0.12), rgba(10, 93, 161, 0.12));
    border-radius: 20px;
    pointer-events: none; /* Allow clicks to pass through */
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 6rem 0 2rem 0;
    background: #f7fafc;
}

.product-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.product-main {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-icon {
    width: 220px;
    height: 220px;
    max-width: 100%;
    max-height: 100vw;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.product-icon i {
    font-size: 2.5rem;
    color: white;
}

.product-main h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.product-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ED7236, #ED7236);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
}

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

.product-cta {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 2rem 0 6rem 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.about-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A5DA1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* About Visual */
.about-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-elements {
    position: relative;
    width: 200px;
    height: 200px;
}

.tech-element {
    position: absolute;
    font-size: 2rem;
    animation: techFloat 4s ease-in-out infinite;
}

.tech-element:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.tech-element:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.tech-element:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.tech-element:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

@keyframes techFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f7fafc;
}

.contact-content {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}
.contact-info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    padding: 0;
    background: white;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}
.contact-form {
    flex: 1 1 0;
    background: white;
    padding: 2.5rem;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.locations-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    background: #f8fafc; /* soft background */
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    max-width: 350px;
    font-family: 'Poppins', sans-serif;
  }
  
  .locations-box i {
    font-size: 1.5rem;
    color: #1e3a8a; /* accent color */
    margin-top: 4px;
  }
  
  .locations-box h4 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
  }
  
  .locations-box p {
    margin: 3px 0;
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .locations-box p::before {
    content: "📍"; /* emoji pin */
    font-size: 0.9rem;
  }

.world-map-container {
    width: 100%;            /* takes full width */
    max-width: 900px;       /* responsive limit */
    margin: 0 auto;         /* center horizontally */
  }
  
  .world-map-svg {
    width: 100%;            /* scale to container width */
    height: auto;           /* auto height keeps aspect ratio */
    display: block;         /* remove inline-gap spacing */
  }

.contact-item > div > h4, .contact-item > div > .world-map-container {
    margin: 0;
}
.contact-item > div > h4 {
    padding: 1.5rem 0 0.5rem 1.5rem;
    font-size: 1.1rem;
    color: #1a202c;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #0A5DA1;
    width: 40px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.contact-item p {
    color: #4a5568;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ED7236;
}

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

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ED7236;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ED7236;
}

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

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

.social-links a:hover {
    background: #ED7236;
    color: white;
    transform: translateY(-2px);
}

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

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-bottom-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.footer-bottom-logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .product-main {
        padding: 2rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .product-main {
        padding: 1.5rem;
    }

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero-content,
.product-showcase,
.about-content,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}

.about-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.about-logo-image {
    height: 120px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
} 

.turi-logo-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: none;
    position: static;
    margin-left: 0;
} 

.about-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    min-height: 350px;
}
.about-text,
.about-image {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-image {
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .about-image, .about-text {
        width: 100%;
    }
} 

.world-map-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    max-width: 100%;
}
svg#map {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 320px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    background: #eaf4ff;
}
.land { fill:#d9e7f5; stroke:#9fbad1; stroke-width:.5; }
.boundary { fill:none; stroke:#7fa0bb; stroke-width:.5; }
.graticule { fill:none; stroke:#c9d8e6; stroke-width:.4; opacity:.6; }
.pin { cursor: pointer; }
.pin circle { fill:#1e7bff; stroke:#0d3f8f; stroke-width:1.5; }
.pin path { fill:#1e7bff; }
.label { font: 600 12px/1.2 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; fill:#0b2a53; paint-order: stroke; stroke:#ffffff; stroke-width:3; stroke-linejoin:round; } 

.contact-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2rem;
}
.contact-info-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-box a {
  color: #0A5DA1;
  text-decoration: underline;
  word-break: break-all;
}
.contact-info-box a:hover {
  color: #ED7236;
}
.contact-info-box i.fab, .contact-info-box i.fas {
  font-size: 2rem;
  color: #0A5DA1;
  margin-bottom: 0.5rem;
}
.contact-info-box h4 {
  font-size: 1.1rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
}
.contact-info-box p {
  color: #4a5568;
  margin: 0;
}
.contact-info-box .world-map-container {
  width: 100%;
  margin: 0.5rem 0 0 0;
  max-width: 100%;
}
.contact-info-box .world-map-svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 180px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #0A5DA1;
}
.contact-form-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  min-width: 320px;
  max-width: 420px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .contact-sections {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contact-info-box, .contact-form-box {
    max-width: 100%;
    min-width: 0;
  }
  .contact-info-box .world-map-svg {
    max-height: 200px;
  }
} 

.locations-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 340px;
  max-width: 500px;
  flex: 1 1 340px;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .locations-box {
    max-width: 100%;
    min-width: 0;
  }
} 