/* Main CSS placeholder. Add your custom styles here if needed. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600;700&display=swap');

body {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Poppins', Arial, sans-serif !important;
    font-weight: 600;
}

strong,
.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

:root {
    --theme-color: #B8860B;
    --theme-color-rgb: 184, 134, 11;
    --theme-color-dark: #8a6a05;
}

:root {
    --bs-primary: var(--theme-color);
    --bs-primary-rgb: var(--theme-color-rgb);
    --bs-warning: var(--theme-color);
    --bs-warning-rgb: var(--theme-color-rgb);
    --bs-link-color: var(--theme-color);
    --bs-link-hover-color: var(--theme-color-dark);
}

.text-primary {
    color: var(--theme-color) !important;
}

.bg-primary {
    background-color: var(--theme-color) !important;
}

.border-primary {
    border-color: var(--theme-color) !important;

    /* Ensure service pages hero sections use brand gold */
    .hero-section {
        background: #B8860B !important;
        color: #fff;
    }
}

.text-warning {
    color: var(--theme-color) !important;
}

html,
body {
    overflow-x: hidden !important;
}

@media (max-width: 991px) {

    html,
    body {
        overflow-x: hidden !important;
    }

    .container,
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

.hero-section .hero-text h1,
.hero-section .hero-text p {
    color: #fff !important;
}

iframe {
    max-width: 100%;
}

table {
    width: 100%;
}

@media (max-width: 767px) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

pre {
    white-space: pre-wrap;
    word-break: break-word;
}

i.fa,
i.fas,
i.far,
i.fab {
    color: var(--theme-color) !important;
}

.btn-primary,
.btn-warning,
.btn-danger,
.btn-get-quote,
.site-chat-trigger {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-warning:hover,
.btn-danger:hover,
.btn-get-quote:hover,
.site-chat-trigger:hover {
    background-color: var(--theme-color-dark) !important;
    border-color: var(--theme-color-dark) !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
}

.main-header,
.fixed-header {
    font-family: 'Inter', Arial, sans-serif !important;
}

header.main-header .navbar-brand {
    overflow: visible !important;
}

header.main-header img.header-logo {
    transform: scale(1.35) !important;
    transform-origin: left center !important;
}

@media (max-width: 991px) {
    header.main-header img.header-logo {
        transform: scale(1.22) !important;
    }
}

.footer-section {
    font-family: 'Inter', Arial, sans-serif !important;
}

html body .footer-section,
html body .footer-section>div {
    background: var(--theme-color) !important;
}

html body .footer-section .footer-social-icon {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
}

html body .footer-section .footer-social-icon i.fab.fa-facebook-f {
    color: #1877F2 !important;
}

html body .footer-section .footer-social-icon i.fab.fa-x,
html body .footer-section .footer-social-icon i.fab.fa-x-twitter {
    color: #000000 !important;
}

html body .footer-section .footer-social-icon i.fab.fa-youtube {
    color: #FF0000 !important;
}

html body .footer-section .footer-social-icon i.fab.fa-linkedin-in {
    color: #0A66C2 !important;
}

html body .footer-section .footer-social-icon i.fab.fa-instagram {
    color: #E1306C !important;
}

html body .footer-section .footer-social-icon:hover {
    background: #f3f3f3 !important;
}

/* Ensure footer stays at bottom */
html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

#site-footer {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    bottom: 0;
}

.testimonials-section .badge {
    border-color: var(--theme-color) !important;
}

.testimonials-section img.rounded-circle {
    border: 2px solid var(--theme-color);
}

/* Hero Section Animations */
.tj-anim-move-hor {
    animation: moveHor 3s infinite alternate;
}

@keyframes moveHor {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(30px);
    }
}

.tj-anim-move-var {

    animation: moveVar 4s infinite alternate;
}

@keyframes moveVar {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

.tj-anim-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.title-animation {
    animation: fadeInUp 1s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero heading responsive sizing */
.hero-section h1 {
    font-size: 2.8rem;
    line-height: 1.05;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto !important;
    }

    .hero-section .p-5 {
        padding: 1.5rem !important;
    }
}

@media (min-width: 1200px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.9rem;
    }

    .hero-section img {
        min-width: 0 !important;
        max-width: 100% !important;
    }
}

/* Dark styling for "Why Website is Important?" section */
.why-website-section {
    background: #0f1724;
    /* dark slate */
    color: #ffffff;
}

.why-website-section .text-secondary {
    color: rgba(255, 255, 255, 0.87) !important;
}

.why-website-section h2 {
    color: #ffffff;
}

.why-website-section ul li {
    color: rgba(255, 255, 255, 0.92);
}

.why-website-section img {
    box-shadow: 0 12px 36px rgba(2, 6, 23, 0.6);
    border: 6px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 767px) {
    .why-website-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .why-website-section img {
        max-width: 92%;
    }
}

/* Contact section styles */
.contact-image {
    max-width: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(2, 6, 23, 0.12);
}

.contact-card {
    background: #ffffff;
    padding: 1.6rem;
}

@media (max-width: 767px) {
    .contact-image {
        max-width: 360px;
        margin-bottom: 1rem;
    }

    .contact-card {
        padding: 1rem;
    }
}

/* CTA section enhancements */
.cta-section .btn {
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta-section .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(21, 99, 217, 0.12);
}

.cta-media {
    border-radius: 12px;
}

@media (max-width: 767px) {
    .cta-section .btn {
        width: 100%;
    }

    .cta-media {
        margin-top: 0.5rem;
    }
}

/* Industries section styles */
.industry-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.14s ease, box-shadow 0.14s ease;
    border: 1px solid rgba(21, 99, 217, 0.04);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
}

.industry-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(11, 94, 215, 0.08), rgba(11, 94, 215, 0.03));
    color: #0b5ed7;
}

.industry-card h5 {
    font-size: 1.02rem;
}

.industry-card .small {
    font-size: 0.92rem;
}

@media (max-width: 575px) {
    .industry-card {
        min-height: 140px;
    }
}

/* Header tweaks for the new navbar */
.redesigned-header {
    font-family: 'Barlow Semi Condensed', Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar .dropdown-menu {
    box-shadow: 0 6px 24px rgba(2, 6, 23, 0.08);
}

.navbar-toggler-icon i {
    font-size: 22px;
}

/* Mega menu styles */
.dropdown-mega {
    min-width: 820px;
}

.dropdown-mega .dropdown-item {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991px) {
    .dropdown-mega {
        min-width: auto;
        width: 100%;
    }

    .dropdown-mega .dropdown-item {
        padding-left: 1rem;
    }
}