@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
:root {
    --primary-color: #00B092;
    --second-color: #183B64;
}
body { 
    font-family: 'Roboto', sans-serif; 
    overflow-x: hidden;
}
.paradise-font {
    font-family: "Righteous", sans-serif;
    /* font-family: "gf_Kodchasan variant0", Tofu; */
    text-transform: uppercase;
}
.grid-bg {
    background-size: 30px 30px;
}
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}
.glass-dark {
    background: rgba(24, 2, 14, 0.85);
    backdrop-filter: blur(16px);
}

/* Slide Transition Effects */
.full-slide {
    transition: opacity 800ms ease-in-out, transform 800ms ease-in-out;
}

/* Prevent iOS Zoom on Input Focus */
@media (max-width: 640px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}
/* Custom scrollbar for the textarea */
textarea::-webkit-scrollbar {
    width: 8px;
}
textarea::-webkit-scrollbar-thumb {
    background-color: #e5e7eb;
    border-radius: 10px;
}
/* Custom styles for the sliding animation */
.inquiry-btn {
    background-color: #444444; /* Lighter green base */
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.table-content table {
    width: 100%;
    border-collapse: collapse;
}
.table-content th, .table-content td {
    border: 1px solid #ddd;
    padding: 8px;
}
/* The sliding background layer */
.inquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3rem; /* Matches the arrow section width initially */
    background-color: var(--primary-color); /* Darker green */
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

/* Expand background from right to left on hover */
.inquiry-btn:hover::before {
    width: 100%;
}

/* Ensure content stays above the pseudo-element */
.inquiry-btn span {
    position: relative;
    z-index: 2;
}
.product-card:hover img {
    transform: scale(1.05);
}
.product-card img {
    transition: transform 0.3s ease;
}
/* Slider Transitions */
.slide-hidden {
    opacity: 0;
    display: none;
}
.slide-active {
    opacity: 1;
    display: block;
    animation: fadeIn 0.8s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Mobile Menu Transition */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}
.menu-open {
    transform: translateX(0) !important;
}
/* Accordion Transition */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}
.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1rem;
}
.accordion-item.active .fa-plus {
    display: none;
}
.accordion-item.active .fa-minus {
    display: inline-block !important;
}
/* Multilevel Dropdown Animation */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.group:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 2nd Level Dropdown (Flyout) */
.submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    left: 100%;
    top: 0;
}
.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.text-danger {
    color: var(--red-color);
}
/* Language switcher */
.goog-te-banner-frame,
.skiptranslate,
.goog-logo-link,
.goog-te-gadget,
.VIpgJd-ZVi9od-ORHb{
    display:none !important;
}

body{
    top:0 !important;
}

.goog-te-combo{
    display:none !important;
}

.max-lang {
    height: 410px;
    max-height: 50vh;
    overflow-y: auto;
    max-width: 50vw;
}

/** Generated by AI */
/* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #F1F5F9;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--second-color);
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-color);
    }

    /* Hero Slide Animation Classes */
    .hero-slide {
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px) scale(0.98);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease-in-out;
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      position: relative;
      pointer-events: auto;
    }

    /* Active tab underline transition */
    .tab-btn.active {
      color: var(--primary-color);
      border-bottom-color: var(--primary-color);
    }

    /* Glassmorphism subtle overlay */
    .glass-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    /* Heartbeat animation for WhatsApp floating button */
    @keyframes heartbeat {
      0% { transform: scale(1); }
      14% { transform: scale(1.15); }
      28% { transform: scale(1); }
      42% { transform: scale(1.15); }
      70% { transform: scale(1); }
    }
    .animate-heartbeat {
      animation: heartbeat 1.8s infinite ease-in-out;
    }

    /* Multi-level Dropdown Flyout Hover Logic for Desktop */
    .dropdown-parent:hover > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .sub-dropdown-parent:hover > .sub-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }