@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');
       
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
table{
    display: none !important;
}
body {
  top: 0 !important;
}
.track-navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
}

.track-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-box {
    width: 60px;
    height: 60px;
    background-color: #1e40af;
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    font-size: 32px;
    font-weight: bold;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 10px;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* overflow: hidden; */
}

.container {
    padding: 0 20px;
}

.nav-link {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link.active {
    color: #1e3a8a;
}

.nav-link i {
    font-size: 10px;
    margin-left: 4px;
}

.track-active {
    color: #f97316;
}

.btn-download-app {
    background-color: #f97316;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-download-app:hover {
    background-color: #ea580c;
}

/* Footer */
.track-footer {
    background-color: white;
    padding: 50px 80px;
    margin-top: 60px;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-box {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-icon {
    font-size: 28px;
}

.footer-logo .logo-name {
    font-size: 18px;
}

.footer-logo .logo-tagline {
    font-size: 9px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 8px;
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

.footer-contact p {
    margin: 0;
}

.footer-contact span {
    color: #64748b;
}

.footer-heading {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: start;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-list li a {
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #1e3a8a;
}


.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-copyright p {
    color: #64748b;
    font-size: 12px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {

    .hamburger {
        display: flex;
    }

    .hamburger span{
        transition: all .5s ease;
    }

    #toggle:checked ~ .hamburger span:nth-child(3){
        transform: rotate(45deg);
        opacity: 0;
    }

    #toggle:checked ~ .hamburger span:nth-child(2){
        transform: rotate(-45deg) translate(-4px,-10px);
    }

    #toggle:checked ~ .hamburger span:nth-child(1){
        transform: rotate(45deg) translate(-3px, 10px);

    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: white;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        gap: 1.5rem;
    }


    #toggle:checked ~ .nav-menu{
        right: 0;
    }

    
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .nav-menu {
        gap: 20px;
    }

    .btn-download-app {
        display: none;
    }

    .package-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .track-footer{
        padding: 30px 20px;
    }
    .hero-title {
        font-size: 28px;
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-tagline {
        font-size: 8px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        font-size: 12px;
    }
}

/* Chatbot Styles */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-button:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chatbot-button-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
}

.chatbot-button i {
    color: var(--secondary-color);
    font-size: 28px;
}

.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.chatbot-window-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.chatbot-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-header-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-header-title i {
    font-size: 18px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.chatbot-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #f8f9fa;
}

.chatbot-message {
    display: flex;
    max-width: 80%;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message-user {
    align-self: flex-end;
    margin-left: auto;
}

.chatbot-message-bot {
    align-self: flex-start;
}

.chatbot-message-text {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.chatbot-message-user .chatbot-message-text {
    background-color: var(--secondary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.chatbot-message-bot .chatbot-message-text {
    background-color: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chatbot-input-container {
    padding: 16px;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}

.chatbot-input:focus {
    border-color: var(--secondary-color);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.chatbot-send:hover {
    background-color: #ea580c;
}

.chatbot-send:active {
    transform: scale(0.95);
}

.chatbot-send i {
    font-size: 18px;
}

/* Responsive Design for Chatbot */
@media (max-width: 768px) {
    .chatbot-window {
        width: calc(100% - 40px);
        height: calc(100vh - 120px);
        max-height: 500px;
        bottom: 80px;
        right: 20px;
        left: 20px;
    }

    .chatbot-button {
        width: 56px;
        height: 56px;
    }

    .chatbot-button i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    #chatbot-container {
        bottom: 15px;
        right: 15px;
    }

    .chatbot-window {
        width: calc(100% - 30px);
        right: 15px;
        left: 15px;
        bottom: 75px;
        height: calc(100vh - 100px);
        max-height: 450px;
    }

    .chatbot-button {
        width: 50px;
        height: 50px;
    }

    .chatbot-button i {
        font-size: 22px;
    }

    .chatbot-messages {
        padding: 15px;
    }

    .chatbot-message {
        max-width: 85%;
    }
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 10000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

.nav-link.has-dropdown::after {
    display: none;
}

.nav-link.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 968px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 1rem;
    }
    
    .nav-item-dropdown:hover .dropdown-menu {
        transform: none;
    }
}

#translateBtn {
  padding: 10px 18px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
#translateBtn:hover {
  background: #4338ca;
}


