* {
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(110deg, #6281c470 0%, #5cc069a6 100%);
}


/* Navigation */


/* ===== CUSTOM NAVBAR STYLES ===== */

nav {
    background-color: #333;
    border-radius: 10px;
}

.navbar-custom {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid #f0f2f5;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FF6B2C 0%, #FF8A4C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    font-weight: 500;
    color: #64df12 !important;
    margin: 0 0.25rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #e9700ef5 !important;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
}

span {
    color: orangered;
    font-size: 30px;
    background-color: rgba(144, 153, 228, 0.267);
    border-radius: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 10px;
    margin: 0px;
    display: inline-block;
}

.hub {
    color: rgb(0, 195, 255);
    font-size: 30px;
    background-color: rgba(51, 56, 105, 0.267);
    border-radius: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 10px;
    display: inline-block;
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: transparent;
    border-radius: 40px;
    transition: 0.2s;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

.btn-primary-custom {
    background: #FF6B2C;
    border: none;
    color: white;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary-custom:hover {
    background: #e05a1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 107, 44, 0.3);
}

.btn-google-style {
    background: white;
    color: #1e2a3e;
    border-radius: 40px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.btn-google-style:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.hero-gradient {
    background: linear-gradient(135deg, #FF6B2C, #9b4dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Feature Cards */

.feature-card,
.service-card,
.price-card,
.career-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0e9e2;
}

.feature-card:hover,
.service-card:hover,
.price-card:hover,
.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.08);
    border-color: #ffd9c4;
}

.feature-icon {
    width: 58px;
    height: 58px;
    background: #fff2e6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FF6B2C;
    margin-bottom: 1.4rem;
}

.popular-plan {
    border: 2px solid #FF6B2C;
    position: relative;
}

.bg-grey {
    background-color: #faf7f2;
}


/* Footer */

footer {
    background: linear-gradient(110deg, #2b4250 0%, #2e3261 100%);
    color: #bbccdd;
    padding: 40px 0;
}

.footer-link {
    text-decoration: none;
    color: #bbccdd;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-link:hover {
    color: #FF6B2C;
}

.footer-brand {
    color: #FF6B2C;
}


/* AI Chat Button */

.ai-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B2C, #9b4dff);
    border: none;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 107, 44, 0.4);
}


/* Chat Modal */

.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-modal.hidden {
    display: none;
}

.chat-header {
    background: linear-gradient(110deg, #2b4250, #2e3261);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9fafb;
}

.message {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.message.user {
    align-items: flex-end;
}

.message.bot {
    align-items: flex-start;
}

.message .bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.9rem;
}

.message.user .bubble {
    background: #FF6B2C;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.bot .bubble {
    background: #e9ecef;
    color: #1e2a3e;
    border-bottom-left-radius: 4px;
}

.chat-input-area {
    display: flex;
    padding: 12px;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px 15px;
    outline: none;
}

.chat-input-area button {
    background: #FF6B2C;
    border: none;
    color: white;
    border-radius: 30px;
    margin-left: 8px;
    padding: 0 18px;
    cursor: pointer;
}


/* Modal for applications */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.social-icon {
    color: #2b4250;
    transition: 0.2s;
}

.social-icon:hover {
    color: #FF6B2C;
}

.contact-form,
.website-form {
    border: 1px solid #f0e9e2;
}

@media (max-width: 576px) {
    .chat-modal {
        width: 300px;
        height: 450px;
        right: 15px;
        bottom: 85px;
    }
    .ai-chat-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}