* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background: linear-gradient(135deg, #2E86AB, #A23B72);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #F18F01 !important;
}

.login-btn {
    background: #F18F01;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}

.hero-section {
    background: linear-gradient(rgba(46, 134, 171, 0.9), rgba(162, 59, 114, 0.8)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background: #F18F01;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #d97d01;
    transform: translateY(-3px);
    color: white;
}

.features-section {
    padding: 5rem 0;
    background: #F8F9FA;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #2E86AB;
    margin-bottom: 1rem;
}

.chatbot-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E86AB, #A23B72);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9998;
    border: none;
}

.chatbot-btn:hover {
    transform: scale(1.1);
}

.services-preview {
    padding: 5rem 0;
}

.service-item {
    padding: 1.5rem;
    border-left: 4px solid #2E86AB;
    background: #F8F9FA;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #2E86AB;
    color: white;
    transform: translateX(10px);
}

footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem;
}

footer a {
    color: #F18F01;
    text-decoration: none;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .navbar-collapse {
        background: linear-gradient(135deg, #2E86AB, #A23B72);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .chatbot-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    .chat-window {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 100px;
    }
}

/* ── Google Translate: kill banner, style dropdown ──────────────────────── */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame { display:none !important; visibility:hidden !important; height:0 !important; }
body > .skiptranslate { display:none !important; }
body { top:0 !important; }

/* Wrapper that sits in every navbar */
.gt-nav-wrap {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 8px;
    padding: 3px 8px;
    gap: 4px;
}
.gt-nav-wrap .goog-te-combo,
.translate-wrap .goog-te-combo {
    background: transparent;
    border: none;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    padding: 2px 4px;
    min-width: 80px;
    max-width: 130px;
    /* Show dropdown arrow in white */
    color-scheme: dark;
    -webkit-appearance: auto;
    appearance: auto;
}
.gt-nav-wrap .goog-te-combo option,
.translate-wrap .goog-te-combo option { color: #1a1a2e; background: #fff; }
