/* Base & Typography */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}
.z-index-1 { z-index: 1; }

/* Header Styles */
.header {
    background-color: #f7f8f9; /* Off-white grayish background */
    height: 80px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

body {
    padding-top: 80px; /* Offset for fixed header */
}

/* Logo Styling */
.logo-icon {
    object-fit: contain;
}
.logo-main-text {
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1;
    color: #1a1a1a;
}
.logo-sub-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #4a4a4a;
    margin-top: 2px;
}

/* Navigation */
.nav-link {
    font-size: 0.95rem;
    transition: color 0.2s ease-in-out;
}
.nav-link:hover, .nav-link:focus {
    color: #8b6b1f !important;
}

/* Language Dropdown */
.language-dropdown .btn {
    font-size: 0.85rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.translation-icon i {
    color: #555;
    transition: color 0.2s;
}
.translation-icon:hover i {
    color: #000;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 80px); /* Fill remaining viewport */
    /*background-image: url('asset/homepage.webp');*/
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important; /* Optional parallax effect */
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* If the generated image doesn't have the exact cyan overlay, we can add one */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.4) 0%, rgba(0, 50, 100, 0.6) 100%);
    mix-blend-mode: multiply;
    z-index: 0;
}




/* Hero Section */
.hero-section {
  min-height: calc(100vh - 80px);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 60px 20px 80px;
  overflow: hidden;
}

/* Overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 136, 0.4) 0%,
    rgba(0, 50, 100, 0.6) 100%
  );
  mix-blend-mode: multiply;
  z-index: 0;
}

/* Content always above overlay */
.hero-section > * {
  position: relative;
  z-index: 1;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-section {
    min-height: calc(100vh - 80px);
    padding-top: 80px;
    padding-bottom: 100px;
    background-position: center center !important;
  }
}

/* Laptop / Desktop */
@media (max-width: 1200px) {
  .hero-section {
    min-height: 85vh;
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 80px 20px 70px;
    background-attachment: scroll;
    background-position: center top !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 70px 16px 60px;
    background-attachment: scroll !important;
    background-position: center center !important;
  }

  .hero-section::before {
    background: linear-gradient(
      135deg,
      rgba(0, 150, 136, 0.55) 0%,
      rgba(0, 50, 100, 0.7) 100%
    );
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    padding: 60px 14px 50px;
    background-position: center top !important;
  }
}

/* Very Small Mobile */
@media (max-width: 360px) {
  .hero-section {
    padding: 50px 12px 45px;
  }
}
/* Hero Title with 3D/Blocky Effect */
.hero-title {
    font-family: 'Syndra', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: 2px;
    /* Simulate the thick blocky shadow seen in the image */
    text-shadow: 
        1px 1px 0 #1a4a4a,
        2px 2px 0 #1a4a4a,
        3px 3px 0 #1a4a4a,
        4px 4px 0 #1a4a4a,
        5px 5px 0 #1a4a4a,
        6px 6px 4px rgba(0,0,0,0.5);
    margin-bottom: 2rem !important;
}

/* Hero Description */
.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Align text block to mimic the image where description is left aligned under the title */
@media (min-width: 768px) {
    .hero-title {
        text-align: center;
    }
    .hero-description {
        text-align: left;
        display: block;
        margin-left: auto;
        margin-right: auto;
        /* Width to align with the text block above it */
        width: fit-content;
    }
}

/* --- New Section Styles --- */

/* Content Wrapper with subtle angled background */
.content-wrapper {
    background: linear-gradient(180deg, rgba(255, 250, 240, .98), rgba(212, 175, 55, .28));
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Subtle diagonal overlay effect */
.content-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -5deg,
        transparent,
        transparent 200px,
        rgba(255, 255, 255, 0.4) 200px,
        rgba(255, 255, 255, 0.4) 400px
    );
    z-index: -1;
    pointer-events: none;
}

/* Section Titles with specific blocky font */
.section-title {
    font-family: 'Syndra', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #000;
    /* Adding a tiny shadow to simulate the slight thickness seen in images */
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

/* Custom Cards */
.custom-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

/* Custom List (Our Focus) */
.custom-list {
    list-style-type: disc;
    padding-left: 20px;
}
.custom-list li::marker {
    color: #444;
}

/* Blue Dash */
.blue-dash {
    width: 40px;
    height: 4px;
    background-color: #8b6b1f; /* Bright blue */
    border-radius: 2px;
}

/* Explore Link */
.explore-link {
    transition: color 0.2s;
}
.explore-link:hover {
    color: #8b6b1f !important;
}


/* --- Footer Styles --- */
.site-footer {
    background-color: #f0f2f5 !important;
}

.footer-links li a {
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #8b6b1f !important;
}

.btn-whatsapp {
    background: linear-gradient(90deg, #d4af37, #8b6b1f);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

.footer-logo hr {
    opacity: 0.5;
}

/* --- About Us Page Styles --- */

.about-hero-section {
    min-height: 60vh; /* Shorter hero for about page */ /* The new generated background */
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Cyan/Teal tint overlay for the about hero to match image */
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 40, 60, 0.8) 0%, rgba(20, 100, 110, 0.7) 100%);
    z-index: 0;
}

.about-badge {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.tracking-wider {
    letter-spacing: 2px;
}

.about-hero-desc {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    max-width: 700px;
    font-weight: 400;
}

/* Specific to about page cards, they just have border, but no heavy shadow by default until hover */
.corporate-overview-section .custom-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.corporate-overview-section .custom-card:hover {
    border-color: #8b6b1f !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05) !important;
    transform: translateY(-5px);
}

/* --- Contact Us Page Styles --- */

.contact-hero-section {
    min-height: 40vh; /* Even shorter hero for contact page */
    background-image: url('contact-hero-bg.png'); /* The new generated background */
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Teal tint overlay for the contact hero to match image */
.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 35, 50, 0.85) 0%, rgba(30, 80, 90, 0.75) 100%);
    z-index: 0;
}

.contact-info-list .info-row {
    transition: background-color 0.2s ease;
}

.contact-info-list .info-row:hover {
    background-color: #f8f9fa !important; /* Slight highlight on hover */
}

/* Ensure map container is responsive */
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.map-container {
    position: relative;
}

/* --- Our Products Page Styles --- */

.product-hero-section {
    min-height: 60vh;
    background-image: url('asset/export_hero_1.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.product-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 25, 45, 0.8) 0%, rgba(10, 45, 60, 0.7) 100%);
    z-index: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* Hide Google Translate Top Banner and Widget */
body {
    top: 0 !important;
}
.skiptranslate iframe {
    display: none !important;
}
#goog-gt-tt {
    display: none !important;
}
.goog-te-banner-frame {
    display: none !important;
}

