/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e; /* Deep Midnight Blue */
    color: #e0e0e0; /* Light Gray */
    line-height: 1.6;
    scroll-behavior: smooth;
}
.card{
    color: #e0e0e0;
}

h1, h2, h3, h4, h5, h6 {
    color: #f0f0f0; /* Off-White for headings */
    font-weight: 700;
}

a {
    color: #e94560; /* Vibrant Rose Red for links */
    text-decoration: none;
}

a:hover {
    color: #ff7f50; /* Coral on hover */
}

.btn {
    text-decoration: none !important; /* Remove underline from buttons */
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: none; /* No animations */
}

.btn-primary {
    background-color: #e94560; /* Vibrant Rose Red */
    border-color: #e94560;
    color: #f0f0f0;
}

.btn-primary:hover {
    background-color: #ff7f50; /* Coral */
    border-color: #ff7f50;
    color: #f0f0f0;
}

.btn-outline-secondary {
    color: #e0e0e0;
    border-color: #3e3e5c;
}

.btn-outline-secondary:hover {
    background-color: #3e3e5c;
    color: #f0f0f0;
}

.btn-secondary {
    background-color: #0f3460; /* Dark Sapphire Blue */
    border-color: #0f3460;
    color: #e0e0e0;
}

.btn-secondary:hover {
    background-color: #3e3e5c;
    border-color: #3e3e5c;
    color: #e0e0e0;
}

.card {
    background-color: #0f3460; /* Dark Sapphire Blue for cards */
    border: 1px solid #3e3e5c; /* Muted Purple-Blue border */
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-control {
    background-color: #1a1a2e;
    border: 1px solid #3e3e5c;
    color: #e0e0e0;
}

.form-control:focus {
    background-color: #1a1a2e;
    border-color: #e94560;
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
    color: #e0e0e0;
}

.form-control::placeholder {
    color: #a0a0a0;
}

.invalid-feedback {
    color: #e94560;
}

/* Header & Navigation */
header {
    background-color: rgba(26, 26, 46, 0.95); /* Semi-transparent background */
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #3e3e5c;
    z-index: 1030;
}
.navbar-brand{
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar-brand h3 {
    margin: 0;
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #e94560;
}

.navbar-toggler {
    border-color: #3e3e5c;
}

.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%28224, 224, 224, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px; /* Adjust for fixed header */
    position: relative;
    overflow: hidden;
}

.hero-bg-img {
    z-index: 0;
    filter: brightness(0.4) grayscale(0.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.8rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section p.lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p.lead {
        font-size: 1.1rem;
    }
}

/* About Section */
.about-section {
    background-color: #1a1a2e;
}

.about-content {
    background-color: #0f3460;
    border: 1px solid #3e3e5c;
}

.about-content img {
    max-height: 350px;
    object-fit: cover;
}

/* Services Section */
.services-section {
    background-color: #131326; /* Slightly lighter dark for contrast */
}

.services-section .card-img-top {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: invert(1) brightness(1.5) hue-rotate(200deg);
}

/* Features Section */
.features-section {
    background-color: #1a1a2e;
}

.feature-card {
    transition: none; /* No animations */
}

.feature-card:hover {
    background-color: #0f3460; /* Dark Sapphire Blue */
    border-color: #e94560;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    color: #e94560;
}

/* Pricing Section */
.pricing-section {
    background-color: #131326;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem !important;
}

.pricing-icon {
    font-size: 3.5rem;
    color: #ff7f50;
    margin-bottom: 1.5rem;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.pricing-card ul li i {
    color: #e94560;
}

/* Team Section */
.team-section {
    background-color: #1a1a2e;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #e94560;
}

.team-member .position {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.team-member .quote {
    font-style: italic;
    font-size: 0.95rem;
    color: #e0e0e0;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #131326;
}

.how-it-works-flow {
    position: relative;
}

.how-it-works-step {
    flex: 1;
    max-width: 300px;
    padding: 1rem;
}

.how-it-works-step .icon-wrapper {
    background-color: #e94560;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.how-it-works-step .step-icon {
    font-size: 2.5rem;
    color: #f0f0f0;
}

.flow-arrow {
    font-size: 3rem;
    color: #3e3e5c;
    margin: 0 1rem;
}

@media (max-width: 767px) {
    .how-it-works-flow {
        flex-direction: column;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #1a1a2e;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #0f3460;
}

/* Contact Section (Chat Style) */
.contact-section {
    background-color: #131326;
}

.chat-interface {
    background-color: #0f3460;
    border: 1px solid #3e3e5c;
    padding: 2rem;
    position: relative;
}

.chat-bubble-system {
    background-color: #3e3e5c;
    color: #f0f0f0;
    padding: 0.8rem 1.2rem;
    border-radius: 1.5rem 1.5rem 1.5rem 0.5rem;
    max-width: 85%;
    align-self: flex-start;
    margin-right: auto;
}

.chat-input {
    background-color: #1a1a2e;
    border-radius: 0.75rem;
    border: 1px solid #3e3e5c;
    color: #e0e0e0;
    padding: 0.75rem 1rem;
}

.chat-input:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}

/* CTA Fixed Banner */
.cta-fixed-banner {
    background-color: #e94560;
    color: #f0f0f0;
    z-index: 1020;
    max-width: 250px;
}

.cta-fixed-banner .btn {
    background-color: #0f3460;
    border-color: #0f3460;
    color: #e0e0e0;
}

.cta-fixed-banner .btn:hover {
    background-color: #3e3e5c;
    border-color: #3e3e5c;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    background-color: #0f3460;
    color: #e0e0e0;
    max-width: 350px;
    z-index: 1040;
    border: 1px solid #3e3e5c;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.cookie-consent-banner h5 {
    color: #f0f0f0;
}

.cookie-consent-banner .btn-primary {
    background-color: #e94560;
    border-color: #e94560;
}

.cookie-consent-banner .btn-primary:hover {
    background-color: #ff7f50;
    border-color: #ff7f50;
}

.cookie-consent-banner .btn-outline-secondary {
    color: #e0e0e0;
    border-color: #3e3e5c;
}

.cookie-consent-banner .btn-outline-secondary:hover {
    background-color: #3e3e5c;
    color: #f0f0f0;
}

/* Cookie Settings Modal */
.modal-content {
    background-color: #0f3460;
    color: #e0e0e0;
    border: 1px solid #3e3e5c;
}

.modal-header {
    border-bottom: 1px solid #3e3e5c;
}

.modal-footer {
    border-top: 1px solid #3e3e5c;
}

.modal-title {
    color: #f0f0f0;
}

.btn-close {
    filter: invert(1) brightness(2);
}

.form-check-input:checked {
    background-color: #e94560;
    border-color: #e94560;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}

.form-check-input:disabled {
    background-color: #3e3e5c;
    border-color: #3e3e5c;
    opacity: 0.7;
}

/* Footer */
.footer-section {
    background-color: #0f3460;
    border-top: 1px solid #3e3e5c;
    color: #a0a0a0;
}

.footer-section h3 {
    margin: 0;
}

.footer-links a {
    color: #a0a0a0;
    margin: 0 0.5rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #e94560;
}

.footer-links .separator {
    color: #3e3e5c;
}

@media (max-width: 1200px) {
    .dispN{
        display: none;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(15, 52, 96, 0.95);
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        padding: 1rem;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    .cta-fixed-banner{
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
    .cta-fixed-banner {
        max-width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
        margin: 1rem auto !important;
    }
    .cookie-consent-banner {
        max-width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
        margin: 1rem auto !important;
    }
    .chat-bubble-system {
        max-width: 100%;
    }
}
/* Styles for the consent tunnel grid container */
.consentTunnelGrid {
    padding-top: 3rem; /* Top padding for the grid */
    padding-bottom: 3rem; /* Bottom padding for the grid */
    padding-left: 2rem; /* Left padding for the grid */
    padding-right: 2rem; /* Right padding for the grid */
    max-width: 900px; /* Max width for better readability on large screens */
    margin-left: auto; /* Center the grid horizontally */
    margin-right: auto; /* Center the grid horizontally */
}

/* Heading 1 styles within the consent tunnel */
.consentTunnelGrid h1 {
    font-size: 2.25rem; /* Moderate font size for main heading */
    margin-top: 1.5rem; /* Top margin for spacing */
    margin-bottom: 1rem; /* Bottom margin for spacing */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles within the consent tunnel */
.consentTunnelGrid h2 {
    font-size: 1.75rem; /* Moderate font size for sub-headings */
    margin-top: 1.5rem; /* Top margin for spacing */
    margin-bottom: 0.8rem; /* Bottom margin for spacing */
    line-height: 1.3; /* Line height for readability */
}

/* Heading 3 styles within the consent tunnel */
.consentTunnelGrid h3 {
    font-size: 1.5rem; /* Moderate font size for smaller headings */
    margin-top: 1.25rem; /* Top margin for spacing */
    margin-bottom: 0.75rem; /* Bottom margin for spacing */
    line-height: 1.4; /* Line height for readability */
}

/* Heading 4 styles within the consent tunnel */
.consentTunnelGrid h4 {
    font-size: 1.25rem; /* Moderate font size for minor headings */
    margin-top: 1rem; /* Top margin for spacing */
    margin-bottom: 0.6rem; /* Bottom margin for spacing */
    line-height: 1.5; /* Line height for readability */
}

/* Heading 5 styles within the consent tunnel */
.consentTunnelGrid h5 {
    font-size: 1.1rem; /* Smallest heading size */
    margin-top: 0.8rem; /* Top margin for spacing */
    margin-bottom: 0.5rem; /* Bottom margin for spacing */
    line-height: 1.5; /* Line height for readability */
}

/* Paragraph styles within the consent tunnel */
.consentTunnelGrid p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1.25rem; /* Bottom margin for paragraph spacing */
    line-height: 1.6; /* Line height for readability */
}

/* Unordered list styles within the consent tunnel */
.consentTunnelGrid ul {
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 1.5rem; /* Indentation for bullet points */
    list-style-type: disc; /* Default bullet style */
}

/* List item styles within the consent tunnel */
.consentTunnelGrid li {
    font-size: 1rem; /* Standard list item font size */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.5; /* Line height for readability */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .consentTunnelGrid {
        padding-left: 1rem; /* Reduced side padding on smaller screens */
        padding-right: 1rem; /* Reduced side padding on smaller screens */
    }

    .consentTunnelGrid h1 {
        font-size: 1.8rem; /* Smaller H1 on mobile */
    }

    .consentTunnelGrid h2 {
        font-size: 1.5rem; /* Smaller H2 on mobile */
    }

    .consentTunnelGrid h3 {
        font-size: 1.3rem; /* Smaller H3 on mobile */
    }
}
