body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #f8f9fa;
    line-height: 1.6;
}

.bg-dark {
    background-color: #111 !important;
}

.bg-light-dark {
    background-color: #1a1a1a !important;
}

.bg-secondary-dark {
    background-color: #222 !important;
}

.text-primary {
    color: #007bff !important;
}

.text-orange {
    color: #ff8c00 !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-secondary {
    color: #f8f9fa;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-outline-info:hover {
    background-color: #0dcaf0;
    color: #111;
}

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

.navbar-brand .site-title {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem) !important;
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff !important;
}

.section-title {
    font-size: clamp(1.8rem, 3vw + 1rem, 3.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 150px !important; /* Adjust for fixed navbar */
    padding-bottom: 100px !important;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-block {
    padding: 3rem 0;
}

.hero-image-block {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-section .row {
        min-height: calc(100vh - 70px);
        align-items: center;
    }
    .hero-text-block {
        padding-right: 2rem;
    }
    .hero-image {
        height: 80vh;
        margin-left: -10%; /* Overlap effect */
        z-index: 2;
    }
    .hero-section .col-md-6:first-child {
        background-color: #111;
        position: relative;
        z-index: 3;
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
        padding-right: 10%;
    }
    .hero-section .col-md-6:last-child {
        background-color: #1a1a1a;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 767.98px) {
    .hero-section .col-md-6:first-child, .hero-section .col-md-6:last-child {
        clip-path: none;
        padding: 0;
        background-color: transparent;
    }
    .hero-image {
        margin-left: 0;
        height: 50vh;
    }
    .hero-text-block {
        text-align: center;
        padding: 2rem 1rem;
    }
}

/* About Section */
#about .list-unstyled li {
    margin-bottom: 0.75rem;
}

#about .list-unstyled i {
    font-size: 1.25rem;
}

#about .shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

/* Services Section */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-video {
    width: 100%;
    height: 200px; /* Fixed height for videos */
    object-fit: cover;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

/* Portfolio Section */
.portfolio-item {
    margin-bottom: 4rem;
}

.portfolio-item:last-child {
    margin-bottom: 0;
}

.portfolio-steps, .portfolio-features {
    padding-left: 0;
}

.portfolio-steps .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #ff8c00;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.portfolio-features i {
    font-size: 1.2rem;
}

/* Team Section */
.founder-card {
    background-color: #222 !important;
    border: 1px solid #333;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #007bff;
}

.team-member-card {
    background-color: #222 !important;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member-card img{
    margin: 0 auto !important;
}

.team-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #ff8c00;
}

/* Industries Section & FAQ Section */
.accordion-item {
    border: none;
    background-color: #222 !important;
}

.accordion-header .accordion-button {
    background-color: #222 !important;
    color: #f8f9fa !important;
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: #007bff !important;
    color: #fff !important;
}

.accordion-header .accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #1a1a1a !important;
    border-top: 1px solid #333;
    color: #f8f9fa;
    padding: 1.25rem;
}

/* How It Works Section */
.how-it-works-step {
    background-color: #222;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #007bff;
}

.how-it-works-step + .how-it-works-step {
    margin-top: 2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #ff8c00;
    line-height: 1;
}

/* Contact Form */
.contact-form {
    background-color: #222 !important;
    border: 1px solid #333;
}

.contact-form .form-label {
    font-weight: 500;
}

.contact-form .form-control, .contact-form .form-select {
    background-color: #333;
    border: 1px solid #444;
    color: #f8f9fa;
}

.contact-form .form-control::placeholder {
    color: #bbb;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
    background-color: #444;
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    color: #f8f9fa;
}

.contact-form .invalid-feedback {
    color: #dc3545;
}

/* Footer */
footer {
    border-top: 1px solid #333;
}

footer .logo {
    height: 30px;
}

footer .site-title {
    font-size: 1.25rem;
    font-weight: 600;
}

footer a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
}

/* Cookie Consent Modal */
.cookie-consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #f8f9fa;
    padding: 1.5rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1060; /* Higher than Bootstrap modals (1050) */
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s ease-out;
}

.cookie-consent-modal.show {
    display: block;
}

.cookie-consent-content {
    max-width: 700px;
    margin: 0 auto;
}

.cookie-consent-content h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.cookie-consent-content .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.cookie-consent-content .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.cookie-consent-content .btn {
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Typography for Headings */
h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}
h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
}
h3 {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
}
h4 {
    font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);
}

.site-title {
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

@media (max-width: 1100px) {
    .navbar-collapse {
        background-color: #111;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-nav .nav-item {
        width: 100%;
    }
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 56px; /* Smaller navbar on mobile */
    }
    .display-3 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .lead {
        font-size: 1rem;
    }
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .founder-card, .team-member-card {
        flex-direction: column;
        text-align: center;
    }
    .founder-avatar, .team-avatar {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
    .cookie-consent-content .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }
    .cookie-consent-content .btn:last-child {
        margin-bottom: 0 !important;
    }
    .footer .d-flex {
        flex-direction: column;
    }
    .footer .text-center.text-md-start, .footer .text-center.text-md-end {
        text-align: center !important;
    }
    .footer .list-unstyled {
        flex-direction: column;
        align-items: center;
    }
    .footer .list-unstyled li {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }
}/* Styles for the main container, providing internal padding */
.privacyNestZone {
    padding-top: 30px;    /* Top padding for the content area */
    padding-bottom: 30px; /* Bottom padding for the content area */
    padding-left: 20px;   /* Left padding for the content area */
    padding-right: 20px;  /* Right padding for the content area */
}

/* Heading 1 style */
.privacyNestZone h1 {
    font-size: 1.2em;      /* Relatively moderate font size for main heading (e.g., 32px if base is 16px) */
    margin-top: 1.5em;   /* Space above the heading */
    margin-bottom: 0.75em; /* Space below the heading */
    line-height: 1.2;    /* Line height for better readability */
    font-weight: 700;    /* Bold font weight */
}

/* Heading 2 style */
.privacyNestZone h2 {
    font-size: 1.2em;    /* Moderate font size for secondary heading (e.g., 25.6px) */
    margin-top: 1.4em;   /* Space above the heading */
    margin-bottom: 0.6em;  /* Space below the heading */
    line-height: 1.3;    /* Line height for better readability */
    font-weight: 600;    /* Semi-bold font weight */
}

/* Heading 3 style */
.privacyNestZone h3 {
    font-size: 1.2em;    /* Moderate font size for tertiary heading (e.g., 20.8px) */
    margin-top: 1.2em;   /* Space above the heading */
    margin-bottom: 0.5em;  /* Space below the heading */
    line-height: 1.4;    /* Line height for better readability */
    font-weight: 600;    /* Semi-bold font weight */
}

/* Heading 4 style */
.privacyNestZone h4 {
    font-size: 1.1em;    /* Slightly larger than base font size (e.g., 17.6px) */
    margin-top: 1em;     /* Space above the heading */
    margin-bottom: 0.4em;  /* Space below the heading */
    line-height: 1.4;    /* Line height for better readability */
    font-weight: 500;    /* Medium font weight */
}

/* Heading 5 style */
.privacyNestZone h5 {
    font-size: 1em;      /* Same as base font size (e.g., 16px) */
    margin-top: 0.8em;   /* Space above the heading */
    margin-bottom: 0.3em;  /* Space below the heading */
    line-height: 1.5;    /* Line height for better readability */
    font-weight: 500;    /* Medium font weight */
}

/* Paragraph text style */
.privacyNestZone p {
    font-size: 1em;      /* Base font size for paragraphs (e.g., 16px) */
    line-height: 1.6;    /* Generous line height for readability */
    margin-bottom: 1em;  /* Space between paragraphs */
}

/* Unordered list style */
.privacyNestZone ul {
    list-style-type: disc; /* Default bullet points */
    margin-left: 2em;    /* Indentation for bullet points */
    padding-left: 0;     /* Resets default browser padding */
    margin-bottom: 1em;  /* Space after the list */
}

/* List item style */
.privacyNestZone li {
    margin-bottom: 0.5em; /* Space between individual list items */
    line-height: 1.6;    /* Line height for list item text */
}


.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}


#how-it-works h3{
    font-size: clamp(20px,2.5vw,28px) !important;
}

