:root {
    --dark-blue: #0A1128;
    --light-dark-blue: #1E2A47;
    --accent-blue: #070D1F;
    --gold: #FFD700;
    --white: #FFFFFF;
    --light-grey: #E0E0E0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light-grey);
    background-color: var(--dark-blue);
    overflow-x: hidden;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Global Styles */
.container {
    max-width: 1200px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--white);
}

/* Responsive Typography */
h1 {
    font-size: 2.5rem; /* Desktop */
}
h2 {
    font-size: 2.2rem; /* Desktop */
}
h3 {
    font-size: 1.8rem; /* Desktop */
}

@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 2.2rem; /* Tablet */
    }
    h2 {
        font-size: 2rem; /* Tablet */
    }
    h3 {
        font-size: 1.6rem; /* Tablet */
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem; /* Mobile */
    }
    h2 {
        font-size: 1.5rem; /* Mobile */
    }
    h3 {
        font-size: 1.25rem; /* Mobile */
    }
    .site-name {
        font-size: 1.25rem !important;
    }
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
    color: var(--gold);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.section-title-gold {
    color: var(--dark-blue);
}

.section-title-gold::after {
    background-color: var(--dark-blue);
}

/* Buttons */
.btn {
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark-blue);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
    border-color: var(--gold);
}

.btn-dark-blue {
    background-color: var(--dark-blue);
    color: var(--gold);
    border: 1px solid var(--dark-blue);
}

.btn-dark-blue:hover {
    background-color: var(--light-dark-blue);
    color: var(--gold);
    border-color: var(--light-dark-blue);
}

/* Navbar */
.navbar {
    background-color: var(--dark-blue);
    border-bottom: 1px solid var(--light-dark-blue);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 35px;
    width: auto;
}

.navbar-brand .site-name {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: var(--dark-blue);
}

.offcanvas-header {
    border-bottom: 1px solid var(--light-dark-blue);
}

.offcanvas-title {
    color: var(--gold);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%); /* Makes it gold/white */
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.header-cta-btn {
    margin-left: 15px;
}

@media (max-width: 1199px) {
    .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .navbar-nav .nav-item {
        flex-shrink: 0;
    }
    .header-cta-btn {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .offcanvas-body {
        justify-content: flex-end;
    }
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    padding-top: 120px; /* Adjust for fixed header */
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
}

.hero-section h1 {
    color: var(--gold);
    margin-top: 50px; /* Offset from title for scroll arrow */
}

.scroll-down-arrow {
    font-size: 3rem;
    display: block;
    margin-top: 2rem;
    animation: bounce 2s infinite;
    color: var(--gold);
    text-decoration: none;
}

.scroll-down-arrow:hover {
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Why Us Section */
.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-light-dark-blue {
    background-color: var(--light-dark-blue);
}

.feature-card {
    background-color: var(--accent-blue);
    border: 1px solid var(--light-dark-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
}

/* Services Section */
.service-card {
    background-color: var(--accent-blue);
    border: 1px solid var(--light-dark-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Process Section */
.process-step {
    background-color: var(--accent-blue);
    border: 1px solid var(--light-dark-blue);
}

.process-icon {
    font-size: 3rem;
    color: var(--gold);
}
#process p {
    color: #fff !important;
}
#process h3 {
    color: #fff !important;
}
/* Solutions/Industries Section */
.industry-card {
    background-color: var(--accent-blue);
    border: 1px solid var(--light-dark-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.industry-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: invert(80%) sepia(100%) saturate(500%) hue-rotate(300deg) brightness(100%) contrast(100%); /* Gold tint */
}

/* Product Showcase Slider */
#product-showcase .carousel-item img {
    max-height: 500px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 5px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--gold);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1) grayscale(100%) brightness(200%); /* Gold tint */
}

/* Cases Section */
.case-card {
    background-color: var(--accent-blue);
    border: 1px solid var(--light-dark-blue);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-card .case-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: auto;
}

/* Expertise Section */
.badge.bg-gold {
    background-color: var(--gold) !important;
    color: var(--dark-blue) !important;
}

.client-logos img {
    height: 60px;
    width: auto;
    max-width: 100%;  
}

.client-logos img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
}

/* Blog Section */
.blog-card {
    background-color: var(--accent-blue);
    border: 1px solid var(--light-dark-blue);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card .blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.text-muted-custom {
    color: var(--light-grey) !important;
    opacity: 0.7;
}

.blog-content-formatted p {
    margin-bottom: 1em;
}

.blog-content-formatted strong {
    color: var(--gold);
}

/* CTA Section */
.bg-gold {
    background-color: var(--gold) !important;
    color: var(--dark-blue) !important;
}

/* Contact Section */
.contact-info .material-symbols-outlined {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 2px;
}

.form-label {
    color: var(--gold);
}

.form-control {
    background-color: var(--accent-blue);
    border: 1px solid var(--light-dark-blue);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--light-grey);
    opacity: 0.7;
}

.form-control:focus {
    background-color: var(--accent-blue);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
    color: var(--white);
}

.invalid-feedback {
    color: #dc3545; /* Bootstrap default red for errors */
}

.word-break-all {
    word-break: break-all;
}

/* Footer */
footer {
    background-color: var(--accent-blue);
    border-top: 1px solid var(--light-dark-blue);
    color: var(--light-grey);
}

.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold) !important;
}

/* Modals */
.modal-content {
    background-color: var(--dark-blue);
    border: 1px solid var(--gold);
}

.modal-header, .modal-footer {
    border-color: var(--light-dark-blue) !important;
}

.modal-title {
    color: var(--gold);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body strong {
    color: var(--gold);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-blue);
    color: var(--light-grey);
    padding: 15px 0;
    z-index: 1040;
    border-top: 1px solid var(--light-dark-blue);
    display: none; /* Hidden by default, shown by JS */
}

.cookie-banner .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
}

.cookie-banner .cookie-link {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner .cookie-link:hover {
    color: var(--white);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 767px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-buttons .btn {
        flex: 1;
    }
}
/*
 * Parent container styling for spacing
 */
.trustPillarUnit {
    padding-top: 30px; /* Top padding for the entire unit */
    padding-left: 20px; /* Left padding for the entire unit */
    padding-right: 20px; /* Right padding for the entire unit */
}

/*
 * Heading styles (h1-h5) within .trustPillarUnit
 * Font sizes are kept moderate as requested, not overly large.
 */
.trustPillarUnit h1 {
    font-size: 1.8em; /* Moderately large heading */
    line-height: 1.2; /* Good readability for headings */
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 0.8em; /* Space below the heading */
    font-weight: 700; /* Bold font weight */
    color: #ffffff; /* Darker color for headings */
}

.trustPillarUnit h2 {
    font-size: 1.5em; /* Medium-large heading */
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.7em;
    font-weight: 700;
    color: #ffffff;
}

.trustPillarUnit h3 {
    font-size: 1.2em; /* Medium heading */
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.6em;
    font-weight: 700;
    color: #ffffff;
}

.trustPillarUnit h4 {
    font-size: 1.1em; /* Slightly larger than body text */
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: #ffffff;
}

.trustPillarUnit h5 {
    font-size: 1em; /* Same as body text, but bold */
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0.4em;
    font-weight: 700;
    color: #ffffff;
}

/*
 * Paragraph styling (p) within .trustPillarUnit
 */
.trustPillarUnit p {
    font-size: 1em; /* Standard body text size */
    line-height: 1.6; /* Optimal line height for readability */
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 1.5em; /* Space between paragraphs */
    color: #ffffff; /* Dark grey for better readability than pure black */
}

/*
 * Unordered list styling (ul) within .trustPillarUnit
 */
.trustPillarUnit ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 1.5em; /* Space after the list */
    padding-left: 25px; /* Indent for bullet points */
    color: #ffffff; /* Inherit color from list items or paragraph */
}

/*
 * List item styling (li) within .trustPillarUnit
 */
.trustPillarUnit li {
    font-size: 1em; /* Standard list item text size */
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 0.8em; /* Space between individual list items */
    color: #ffffff; /* Dark grey for readability */
}
