/* General Body and Font Styling */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header and Navigation */
.nav-link {
    position: relative;
    padding-bottom: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6600; /* brand-orange */
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.text-brand-orange::after {
    width: 100%;
}
.myborder {
    border: 1px solid white;
}

.container {
    /* max-width: 800px; */
    margin: auto;
    padding: 2rem;
  }

  .text-brand-blue {
    color: #003366;
  }

  .text-brand-orange {
    color: #ff6600;
  }

  .faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-toggle svg {
    transition: transform 0.3s ease;
  }

  .faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    color: #4b5563;
    font-size: 0.95rem;
  }

  .faq-answer.show {
    display: block;
  }

  .rotate {
    transform: rotate(180deg);
  }

  h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 1rem;
    text-align: center;
  }

  p {
    text-align: center;
    color: #4b5563;
    margin-bottom: 2rem;
  }

  strong {
    font-weight: bold;
  }


/* Hero Section Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-600 { animation-delay: 0.6s; }

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
}

.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* Product Card Styling */
.product-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Product Page Sidebar Navigation */
.product-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: #4b5563; /* gray-600 */
    transition: background-color 0.2s ease, color 0.2s ease;
}

.product-nav-link:hover {
    background-color: #e5e7eb; /* gray-200 */
    color: #1f2937; /* gray-800 */
}

.product-nav-link.active {
    background-color: #ff6600; /* brand-orange */
    color: #ffffff;
    font-weight: 600;
}

/* Product Page Feature Item */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #f9fafb; /* gray-50 */
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb; /* gray-200 */
}

/* Product Page Table */
.table-header {
    padding: 0.75rem 1rem;
    background-color: #f3f4f6; /* gray-100 */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #4b5563; /* gray-600 */
    border-bottom: 2px solid #e5e7eb; /* gray-200 */
}

.table-cell {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb; /* gray-200 */
}

.table-row:last-child .table-cell {
    border-bottom: none;
}

.table-row {
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: #f9fafb; /* gray-50 */
}

/* Blog Card Styling */
.blog-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Prose styling for blog posts */
.prose h2 {
    font-size: 1.5em;
    font-weight: 700;
    color: #002244; /* brand-blue-dark */
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose table {
    width: 100%;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    border-collapse: collapse;
}

.prose th, .prose td {
    border: 1px solid #d1d5db;
    padding: 0.75em 1em;
}

.prose th {
    background-color: #f3f4f6;
    font-weight: 600;
}

/* Tab Styling */
.tab-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem;
    border-bottom-width: 2px;
    border-color: transparent;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #6b7280;
    transition-property: color, border-color;
    transition-duration: 200ms;
}

@media (min-width: 640px) {
    .tab-button {
        font-size: 1rem;
        line-height: 1.5rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.tab-button:hover {
    color: #ff6600;
    border-color: #fdba74;
}

.tab-button.active {
    color: #ff6600;
    border-color: #ff6600;
}

.tab-content {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* New Styles for Redesigned Product Page */
.product-showcase-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .product-showcase-item {
        flex-direction: row;
    }
    .product-showcase-item.flex-row-reverse {
        flex-direction: row-reverse;
    }
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.spec-grid > div {
    background-color: #f9fafb;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}
.dropdown-product-link.active {
  background-color: #ff660050; /* Tailwind gray-100 */
  font-weight: 600;
  color: #003366; /* your brand-blue */
}
.pulse-ripple {
  position: relative;
}

.pulse-ripple::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.4); /* WhatsApp green ring */
  animation: pulse-ring 1.8s infinite ease-in-out;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}


