/* ============================================
   Deltum Tech - Custom Styles
   Primary: #064469 | Secondary: #5ba33f
   ============================================ */

/* === Color Overrides === */
:root {
    --dt-primary: #064469;
    --dt-secondary: #5ba33f;
    --dt-dark: #0a2540;
    --dt-light: #f8f9fa;
}

/* === Typography === */
body {
    color: #333;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--dt-primary);
    font-weight: 700;
}
a {
    color: var(--dt-primary);
    transition: all 0.3s ease;
}
a:hover {
    color: var(--dt-secondary);
}

/* === Buttons === */
.ht-btn-default--primary,
.btn--primary,
.btn-primary {
    background-color: var(--dt-primary) !important;
    border-color: var(--dt-primary) !important;
    color: #fff !important;
}
.ht-btn-default--primary:hover,
.btn--primary:hover,
.btn-primary:hover {
    background-color: #053554 !important;
    border-color: #053554 !important;
}
.ht-btn-default--secondary,
.btn--secondary {
    background-color: var(--dt-secondary) !important;
    border-color: var(--dt-secondary) !important;
    color: #fff !important;
}
.ht-btn-default--secondary:hover,
.btn--secondary:hover {
    background-color: #4a9233 !important;
    border-color: #4a9233 !important;
}

/* === Gradients === */
.bg-gradient--primary {
    background: linear-gradient(135deg, var(--dt-primary) 0%, #0a6b99 100%) !important;
}
.bg-gradient--secondary {
    background: linear-gradient(135deg, var(--dt-secondary) 0%, #3d8c2a 100%) !important;
}

/* === Header === */
.header-navigation-area.default-bg {
    background: var(--dt-primary);
}
.header-navigation__nav nav ul > li > a {
    color: #fff;
}
.header-navigation__nav nav ul > li:hover > a,
.header-navigation__nav nav ul > li.active > a {
    color: var(--dt-secondary);
}
.header-navigation__nav nav ul > li > ul.submenu {
    border-top: 3px solid var(--dt-secondary);
}
.header-info-single-item__icon i {
    color: var(--dt-secondary);
}
.header-sticky--stuck {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* === Language Switcher === */
.btn-lang {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-lang:hover {
    background: var(--dt-secondary);
    color: #fff;
}

/* === Hero Section === */
.processing-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.processing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,68,105,0.85) 0%, rgba(91,163,63,0.6) 100%);
}
.processing-hero__content {
    position: relative;
    z-index: 1;
}
.processing-hero__tag {
    color: var(--dt-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.processing-hero__title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 15px 0;
}
.processing-hero__text {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 600px;
}

/* === Section Titles === */
.section-title {
    color: var(--dt-primary);
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--dt-secondary);
}
.section-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 15px auto 0;
}

/* === Feature/Service Boxes === */
.feature-icon-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
}
.feature-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.feature-icon-box__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dt-primary), var(--dt-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-icon-box__icon i {
    font-size: 28px;
    color: #fff;
}
.feature-icon-box__title a {
    color: var(--dt-primary);
}
.feature-icon-box__title a:hover {
    color: var(--dt-secondary);
}
.feature-icon-box__link {
    color: var(--dt-secondary);
    font-weight: 600;
    font-size: 14px;
}

/* === Pricing Tables === */
.pricing-table {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.pricing-table__badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--dt-secondary);
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 2;
}
.pricing-table__header {
    padding: 30px;
    text-align: center;
    background: var(--dt-primary);
    color: #fff;
}
.pricing-table__title {
    color: #fff;
    margin-bottom: 10px;
}
.pricing-table__price {
    font-size: 42px;
    font-weight: 800;
}
.pricing-table__period {
    font-size: 14px;
    opacity: 0.8;
}
.pricing-table__body {
    padding: 30px;
    flex: 1;
}
.pricing-table__body li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.pricing-table__footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* === Blog Cards === */
.single-blog-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: 0.4s;
    height: 100%;
}
.single-blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.single-blog-item__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}
.single-blog-item:hover .single-blog-item__image img {
    transform: scale(1.05);
}
.single-blog-item__image {
    overflow: hidden;
}
.single-blog-item__content {
    padding: 25px;
}
.post-title a {
    color: var(--dt-primary);
}
.post-title a:hover {
    color: var(--dt-secondary);
}
.post-date, .post-meta {
    color: #888;
    font-size: 13px;
}
.read-more-btn {
    color: var(--dt-secondary);
    font-weight: 600;
    font-size: 14px;
}

/* === Testimonials === */
.testimonial-slider__single {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}
.testimonial-slider__icon i {
    font-size: 40px;
    color: var(--dt-secondary);
    opacity: 0.3;
}
.testimonial-slider__text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}
.testimonial-slider__author-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* === Breadcrumb === */
.breadcrumb-area {
    padding: 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}
.breadcrumb-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,68,105,0.9) 0%, rgba(91,163,63,0.7) 100%);
}
.breadcrumb-content {
    position: relative;
    z-index: 1;
}
.breadcrumb-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}
.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}
.breadcrumb-list li {
    display: inline;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.breadcrumb-list li + li::before {
    content: ' / ';
    margin: 0 8px;
}
.breadcrumb-list li a {
    color: rgba(255,255,255,0.8);
}
.breadcrumb-list li a:hover {
    color: #fff;
}
.breadcrumb-list li.active {
    color: var(--dt-secondary);
}

/* === Job Cards === */
.job-card {
    transition: 0.3s;
    border: 1px solid #eee;
    border-radius: 8px;
}
.job-card:hover {
    border-color: var(--dt-secondary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* === Sidebar === */
.sidebar-widget__title {
    color: var(--dt-primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dt-secondary);
    margin-bottom: 15px;
}
.sidebar-widget__services-list {
    list-style: none;
    padding: 0;
}
.sidebar-widget__services-list li {
    border-bottom: 1px solid #eee;
}
.sidebar-widget__services-list li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #333;
}
.sidebar-widget__services-list li a:hover,
.sidebar-widget__services-list li.active a {
    color: var(--dt-secondary);
}

/* === Contact Info === */
.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    float: left;
}
.contact-info-icon i {
    color: #fff;
    font-size: 18px;
}

/* === Footer === */
.footer-area-wrapper {
    background: var(--dt-dark);
}
.footer-widget__title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dt-secondary);
}
.footer-widget__text p,
.footer-widget p {
    color: rgba(255,255,255,0.7);
}
.footer-widget__links {
    list-style: none;
    padding: 0;
}
.footer-widget__links li {
    margin-bottom: 8px;
}
.footer-widget__links li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-widget__links li a:hover {
    color: var(--dt-secondary);
    padding-left: 5px;
}
.footer-widget__social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}
.footer-widget__social-links li a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}
.footer-widget__social-links li a:hover {
    background: var(--dt-secondary);
}
.footer-copyright-area {
    background: #091f30;
}
.copyright-text {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.footer-bottom-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.footer-contact-info p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-bottom: 5px;
}
.footer-contact-info a {
    color: rgba(255,255,255,0.7);
}

/* === Scroll Top === */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--dt-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

/* === Chatbot Styles === */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--dt-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(91,163,63,0.4);
    transition: 0.3s;
}
.chatbot-toggle:hover {
    transform: scale(1.1);
    background: #4a9233;
}

/* Pulse Effect */
.pulse-effect {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(91,163,63,0.5); }
    70% { box-shadow: 0 0 0 20px rgba(91,163,63,0); }
    100% { box-shadow: 0 0 0 0 rgba(91,163,63,0); }
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-height: 500px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.chatbot-header {
    background: var(--dt-primary);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-header__info img {
    filter: brightness(100);
}
.chatbot-status {
    display: block;
    font-size: 11px;
    color: var(--dt-secondary);
    margin-top: 3px;
}
.chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
.chatbot-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 320px;
    background: #f9fafb;
}
.chat-message {
    margin-bottom: 15px;
    display: flex;
}
.chat-message.bot {
    justify-content: flex-start;
}
.chat-message.user {
    justify-content: flex-end;
}
.chat-bubble {
    max-width: 80%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}
.chat-message.bot .chat-bubble {
    background: #e9ecef;
    color: #333;
    border-bottom-left-radius: 4px;
}
.chat-message.user .chat-bubble {
    background: var(--dt-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.chatbot-footer {
    padding: 12px 15px;
    border-top: 1px solid #eee;
    background: #fff;
}
.chatbot-input-form {
    display: flex;
    gap: 8px;
}
.chatbot-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 14px;
    outline: none;
}
.chatbot-input:focus {
    border-color: var(--dt-primary);
}
.chatbot-send {
    background: var(--dt-secondary);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.chatbot-send:hover {
    background: #4a9233;
}

/* === Page Transitions === */
#page-content {
    animation: fadeInPage 0.5s ease-in-out;
}
@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Isotope Filters === */
.isotope-filters {
    margin-bottom: 30px;
}
.isotope-filters button {
    background: none;
    border: 2px solid #ddd;
    padding: 8px 24px;
    margin: 0 5px 10px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    color: #666;
}
.isotope-filters button:hover,
.isotope-filters button.active {
    background: var(--dt-primary);
    border-color: var(--dt-primary);
    color: #fff;
}

/* === CTA Section === */
.cta-title {
    font-size: 28px;
}

/* === Consultation Form === */
.consultation-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* === Thank You Page === */
.thank-you-icon i {
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* === Preloader === */
.preloader-activate .spinner {
    min-height: 100vh;
}
.bounce1, .bounce2, .bounce3 {
    width: 18px;
    height: 18px;
    background: var(--dt-secondary);
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    margin: 0 3px;
}
.bounce1 { animation-delay: -0.32s; }
.bounce2 { animation-delay: -0.16s; }
@keyframes sk-bouncedelay {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* === Responsive === */
@media (max-width: 767px) {
    .processing-hero__title { font-size: 28px; }
    .section-title { font-size: 26px; }
    .breadcrumb-title { font-size: 24px; }
    .chatbot-window { width: calc(100% - 30px); right: 15px; bottom: 90px; }
    .chatbot-toggle { bottom: 20px; right: 20px; }
}
