body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    color: #f8f9fa;
    line-height: 1.6;
    box-sizing: border-box;
    overflow-x: hidden;
}

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

:root {
    --primary-color: #FFD700;
    --secondary-color: #333;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --text-color: #f8f9fa;
    --muted-text-color: #adb5bd;
    --border-color: #444;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-dark-gradient {
    background: linear-gradient(145deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.custom-btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--darker-bg);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    display: inline-block;
}

.custom-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.custom-btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    display: inline-block;
}

.custom-btn-secondary:hover {
    background-color: #444;
    border-color: #444;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.custom-btn-info {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    display: inline-block;
}

.custom-btn-info:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.custom-btn-success {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    display: inline-block;
}

.custom-btn-success:hover {
    background-color: #157347;
    border-color: #157347;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

.text-muted-custom {
    color: var(--muted-text-color) !important;
}

.header {
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1030;
}

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

.header .navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header .navbar-nav .nav-link:hover::after,
.header .navbar-nav .nav-link.active::after {
    width: 70%;
}

.offcanvas {
    height: 100dvh;
    background-color: var(--darker-bg);
}

.offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.offcanvas .offcanvas-title {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.offcanvas .btn-close-white {
    filter: invert(1);
}

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

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

.hero-section {
    min-height: 100vh;
    position: relative;
    background-image: url(photos/graphics/In-Studio-Animation-Together-An-Working-People.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.hero-title {
    font-size: 3.8rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInLift 1s ease-out forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInLift 1s ease-out forwards 0.7s;
}

.hero-cta {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1s ease-out forwards 0.9s;
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.8;
    animation: bounce 2s infinite;
    margin-top: 50px;
}

.scroll-arrow a {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-decoration: none;
    display: block;
    line-height: 1;
}

.scroll-arrow a:hover {
    color: #e6c200;
}

@keyframes fadeInLift {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
}

.about-section {
    background-color: var(--dark-bg);
}

.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 10px 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border: 3px solid var(--dark-bg);
}

.timeline-item.left-aligned .timeline-dot {
    right: -10px;
}

.timeline-item.right-aligned .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.timeline-item.left-aligned .timeline-content {
    margin-right: 30px;
}

.timeline-item.right-aligned .timeline-content {
    margin-left: 30px;
}

.timeline-item .card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.timeline-item .card-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
}

.service-card {
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--darker-bg);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-color);
}

.service-card .card-img-top {
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.service-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.target-card {
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--darker-bg);
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-color);
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card {
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--darker-bg);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-color);
}

.why-us-section {
    background-color: var(--dark-bg);
}

.process-card {
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--darker-bg);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-color);
}

.process-step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.process-step-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.pricing-carousel {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.pricing-carousel::-webkit-scrollbar {
    height: 8px;
}

.pricing-carousel::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

.pricing-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.pricing-card {
    flex: 0 0 auto;
    width: 320px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    scroll-snap-align: start;
    background-color: var(--darker-bg);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-color);
}

.pricing-card.featured-plan {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 2;
    animation: featuredPulse 2s infinite ease-in-out;
}

@keyframes featuredPulse {
    0% {
        box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
    }
}

.pricing-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.pricing-card .card-subtitle {
    color: var(--muted-text-color);
}

.pricing-card .card-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-card .card-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    vertical-align: middle;
    margin-left: 5px;
}

.pricing-card ul {
    padding-left: 0;
    margin-bottom: 1.5rem;
}

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

.testimonial-card {
    border: 1px solid var(--border-color);
    background-color: var(--darker-bg);
}

.testimonial-card .avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-card .card-text {
    font-style: italic;
    font-size: 0.95rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    background-color: var(--darker-bg);
}

.accordion-button {
    color: var(--text-color);
    font-weight: 600;
    background-color: var(--darker-bg);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--dark-bg);
    border-bottom-color: var(--primary-color);
    box-shadow: inset 0 -1px 0 rgba(255, 215, 0, 0.2);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: invert(1) brightness(1.5);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) brightness(1.5) sepia(1) saturate(5) hue-rotate(180deg);
}

.accordion-body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
}

.stat-card {
    border: 1px solid var(--border-color);
    background-color: var(--darker-bg);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .card-text {
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-form-section {
    background-color: var(--dark-bg);
}

.form-control {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.form-control:focus {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
    color: var(--text-color);
}

.form-control::placeholder {
    color: var(--muted-text-color);
    opacity: 0.7;
}

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

.footer {
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 100;
}

.footer-cta-bar {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-cta-bar h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--darker-bg);
}

.footer-cta-bar .custom-btn-secondary {
    background-color: var(--darker-bg);
    border-color: var(--darker-bg);
    color: var(--primary-color);
}

.footer-cta-bar .custom-btn-secondary:hover {
    background-color: #333;
    border-color: #333;
    color: var(--primary-color);
}

.main-footer .list-unstyled a {
    color: var(--muted-text-color);
    transition: color 0.3s ease;
}

.main-footer .list-unstyled a:hover {
    color: var(--primary-color);
}

.main-footer .footer-bottom-row {
    border-color: var(--border-color) !important;
}

#cookieConsentModal .modal-content {
    background-color: var(--darker-bg);
    border: 1px solid var(--primary-color);
}

#cookieConsentModal .modal-header,
#cookieConsentModal .modal-footer {
    border-color: var(--border-color);
}

#cookieConsentModal .form-check-label {
    color: var(--text-color);
}

#cookieConsentModal .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#cookieConsentModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

@media (min-width: 1200px) {
    .header .navbar-brand .site-name {
        font-size: 2.2rem;
    }
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-subtitle {
        font-size: 1.7rem;
    }
    .section-title {
        font-size: 3.2rem;
    }
    .section-subtitle {
        font-size: 2.2rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .header .navbar-brand .site-name {
        font-size: 1.9rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
    .section-subtitle {
        font-size: 1.9rem;
    }
    .timeline-item {
        width: 100%;
        margin-left: 0;
        padding-left: 30px;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-wrapper::before {
        left: 15px;
    }
    .timeline-item.left-aligned .timeline-dot,
    .timeline-item.right-aligned .timeline-dot {
        left: 5px;
        right: auto;
    }
    .timeline-item.left-aligned .timeline-content,
    .timeline-item.right-aligned .timeline-content {
        margin-left: 30px;
        margin-right: 0;
    }
    .pricing-carousel .pricing-card {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .header .navbar-brand .site-name {
        font-size: 1.1rem;
    }
    .header .navbar-brand .logo-img {
        height: 30px;
    }
    .hero-section {
        min-height: 80vh;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem !important;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem !important;
    }
    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .section-subtitle {
        font-size: 1.5rem;
    }
    .timeline-item {
        width: 100%;
        margin-left: 0;
        padding-left: 30px;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-wrapper::before {
        left: 15px;
    }
    .timeline-item.left-aligned .timeline-dot,
    .timeline-item.right-aligned .timeline-dot {
        left: 5px;
        right: auto;
    }
    .timeline-item.left-aligned .timeline-content,
    .timeline-item.right-aligned .timeline-content {
        margin-left: 30px;
        margin-right: 0;
    }
    .pricing-carousel .pricing-card {
        width: 280px;
    }
    .footer-cta-bar {
        margin-top: -30px;
        padding: 20px 15px;
    }
    .footer-cta-bar h3 {
        font-size: 1.5rem;
    }
    .footer-cta-bar .btn-lg {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .main-footer .row.footer-links-row > div {
        text-align: center;
    }
    .main-footer .row.footer-links-row ul {
        padding-left: 0;
    }
    .main-footer .row.footer-links-row li {
        margin-bottom: 5px;
    }
    .main-footer .row.footer-links-row h5 {
        margin-bottom: 10px;
    }
}

@media (max-width: 1199px) {
    .navbar-collapse {
        display: none !important;
    }
    .offcanvas-end {
        width: 250px;
    }
    .navbar-nav {
        flex-direction: column;
    }
}

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
    .offcanvas {
        visibility: hidden;
    }
}/*
 * New stock styles for common HTML elements within the .trustPillarUnit container.
 * These styles provide a clean, readable base with moderate font sizes and consistent spacing.
 */

/* Parent container styling */
.trustPillarUnit {
    padding-top: 2em; /* Top padding for the entire unit */
    padding-left: 1.5em; /* Left padding for the entire unit */
    padding-right: 1.5em; /* Right padding for the entire unit */
    /* Optional: You might want to add a max-width for better readability on very wide screens */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles */
.trustPillarUnit h1 {
    font-size: 1.6em; /* Moderate font size for H1 */
    line-height: 1.2; /* Improved readability */
    margin-top: 1.8em; /* Spacing above H1 */
    margin-bottom: 0.8em; /* Spacing below H1 */
    font-weight: 700; /* Bold font weight */
    color: #fff; /* Default dark text color */
}

.trustPillarUnit h2 {
    font-size: 1.4em; /* Moderate font size for H2 */
    line-height: 1.25; /* Improved readability */
    margin-top: 1.6em; /* Spacing above H2 */
    margin-bottom: 0.7em; /* Spacing below H2 */
    font-weight: 700; /* Bold font weight */
    color: #fff; /* Default dark text color */
}

.trustPillarUnit h3 {
    font-size: 1.2em; /* Moderate font size for H3 */
    line-height: 1.3; /* Improved readability */
    margin-top: 1.4em; /* Spacing above H3 */
    margin-bottom: 0.6em; /* Spacing below H3 */
    font-weight: 600; /* Slightly less bold than H1/H2 */
    color: #fff; /* Default dark text color */
}

.trustPillarUnit h4 {
    font-size: 1.1em; /* Moderate font size for H4 */
    line-height: 1.35; /* Improved readability */
    margin-top: 1.2em; /* Spacing above H4 */
    margin-bottom: 0.5em; /* Spacing below H4 */
    font-weight: 600; /* Slightly less bold than H1/H2 */
    color: #fff; /* Default dark text color */
}

.trustPillarUnit h5 {
    font-size: 1em; /* Standard font size for H5, not large */
    line-height: 1.4; /* Improved readability */
    margin-top: 1em; /* Spacing above H5 */
    margin-bottom: 0.4em; /* Spacing below H5 */
    font-weight: 500; /* Medium font weight */
    color: #fff; /* Default dark text color */
}

/* Paragraph styles */
.trustPillarUnit p {
    font-size: 1em; /* Standard paragraph font size */
    line-height: 1.6; /* Good readability for body text */
    margin-bottom: 1em; /* Spacing between paragraphs */
    color: #fff; /* Slightly lighter text color for paragraphs */
}

/* List styles (unordered and ordered) */
.trustPillarUnit ul,
.trustPillarUnit ol {
    margin-top: 1em; /* Spacing above lists */
    margin-bottom: 1em; /* Spacing below lists */
    padding-left: 1.8em; /* Indentation for list markers/numbers */
    color: #fff; /* Inherit text color from paragraphs */
}

.trustPillarUnit ul {
    list-style-type: disc; /* Default disc for unordered lists */
}

.trustPillarUnit ol {
    list-style-type: decimal; /* Default decimal for ordered lists */
}

/* List item styles */
.trustPillarUnit li {
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 0.5em; /* Spacing between list items */
}
