/* AI / Tech Theme Overrides - Final Polish */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #e0e0e0;
    background-color: #0b0c10;
    padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.section-title {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

p {
    text-align: justify;
}

/* Navbar */
#main-nav.navbar-default {
    background-color: rgba(11, 12, 16, 0.95);
    border-bottom: 1px solid #1f2833;
    backdrop-filter: blur(10px);
}

.navbar-default .navbar-nav>li>a {
    color: #c5c6c7 !important;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li.active>a {
    color: #66fcf1 !important;
    text-shadow: 0 0 10px rgba(102, 252, 241, 0.5);
    background: transparent !important;
}

/* Service Boxes */
.media.service-box {
    background: #1f2833;
    border: 1px solid #45a29e;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 220px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.media.service-box .pull-left {
    margin-right: 20px;
    float: none !important;
    display: block;
}

.media.service-box .pull-left>i {
    position: static !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-size: 36px !important;
    color: #66fcf1;
}

.media.service-box p {
    text-align: left;
    /* Don't justify short service descriptions, looks bad */
}

.media.service-box:hover {
    transform: scale(1.05);
    /* Slight scale */
    z-index: 10;
    background: #27303d;
    border-color: #66fcf1;
    box-shadow: 0 0 30px rgba(102, 252, 241, 0.2);
}

.media-heading {
    margin-top: 5px;
    color: #fff;
}

/* About Us Section - Light Mode Override */
#about {
    background-color: #f4f4f4 !important;
    /* Light background */
    color: #000000 !important;
    /* Black text request */
}

#about h2,
#about h3,
#about .section-title,
#about .column-title {
    color: #1f2833 !important;
    /* Dark Navy for headers */
    text-shadow: none !important;
}

#about p {
    color: #000000 !important;
    /* Strict Black */
    font-weight: 500;
}

/* About Us Image */
.about-img {
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #1f4068, #1b1b2f);
    border: 1px solid #45a29e;
    color: #66fcf1;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #45a29e, #66fcf1);
    color: #0b0c10;
}

.client-access-btn {
    border: 1px solid #66fcf1 !important;
    border-radius: 20px !important;
    background: transparent !important;
    color: #66fcf1 !important;
    margin-top: 15px !important;
    padding: 6px 15px !important;
}

.client-access-btn:hover {
    background: #66fcf1 !important;
    color: #000 !important;
    box-shadow: 0 0 15px #66fcf1;
}

/* Carousel / Clients */
#clients {
    padding: 80px 0;
    background: #0b0c10;
}

#client-carousel .item {
    padding: 20px 0;
}

.client-logo-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-logo-img {
    height: 80px !important;
    /* Consistent size */
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: normal;
    border-radius: 4px;
    opacity: 1 !important;
    filter: none !important;
    transition: transform 0.3s ease;
}

.client-logo-img:hover {
    transform: scale(1.1);
}

/* Pricing Cards */
.pricing-card {
    background: #1f2833;
    border: 1px solid #45a29e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #66fcf1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 32px;
    color: #66fcf1;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #2c3e50;
    color: #c5c6c7;
}

/* Hero */
#hero-banner::after {
    background: rgba(11, 12, 16, 0.7);
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#hero-banner .banner-inner {
    z-index: 1;
    position: relative;
}

#hero-banner h2 b {
    color: #66fcf1;
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.5);
}
/* Flash Messages */
.alert-container {
    padding: 20px 0;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Chatbot Styles */
#ai-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: #1f2833;
    border: 1px solid #45a29e;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
    transform: translateY(120%); /* Hidden */
    transition: transform 0.4s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#ai-chatbot.visible {
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(45deg, #1f4068, #1b1b2f);
    color: #66fcf1;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #45a29e;
}

.chat-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.chat-body {
    padding: 20px;
}

.message.bot {
    background: rgba(102, 252, 241, 0.1);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid #66fcf1;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-btn {
    background: transparent;
    border: 1px solid #66fcf1;
    color: #66fcf1;
    padding: 8px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.chat-btn:hover {
    background: #66fcf1;
    color: #0b0c10;
}
