/* === FONT & BASE STYLES === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #0D1117; /* Rich Charcoal */
    --bg-secondary: #161B22; /* Lighter Charcoal for cards */
    --text-primary: #E6EDF3; /* Soft White for Paragraphs */
    --text-muted: #8B949E; /* Muted Gray for small text */
    --accent-cyan: #22d3ee; /* Electric Cyan for Headings */
    --accent-violet: #a78bfa; /* Vibrant Violet for Highlights */
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary); /* Default text is now soft white */
    overflow-x: hidden;
}

p {
    color: var(--text-secondary); /* Paragraphs are a softer gray for readability */
}

/* === REUSABLE COMPONENTS === */
.section-heading {
    color: var(--accent-cyan); /* All major headings are now Electric Cyan */
}

.highlight {
    color: var(--accent-violet); /* Use this class for violet highlights */
}

.gradient-text {
    background: linear-gradient(90deg, #E6007A, #00F2EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-gradient-bg {
    background-image: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
}

/* === HEADER === */
#header {
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}
#header a:hover {
    color: var(--accent-cyan);
}
#header .active-link {
    color: var(--accent-cyan);
    font-weight: 600;
}
#header .cta-button {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
}
#header .cta-button:hover {
    opacity: 0.9;
}

/* === TRUSTED BY SECTION === */
.trusted-by-title {
    color: var(--text-muted);
}
.client-logo {
    filter: grayscale(100%) opacity(50%);
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.client-logo:hover {
    filter: grayscale(0%) opacity(100%);
}

/* === NEW STYLE FOR FEATURE IMAGES === */
.feature-image {
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

/* === OUR PROCESS TIMELINE === */
.timeline-item h3 {
    color: var(--accent-violet); /* Timeline titles are now violet */
}
.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 3rem;
    border-left: 2px solid #30363d; /* Darker Gray */
}
.timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -0.7rem;
    top: 0.1rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--bg-primary);
    border: 2px solid var(--accent-violet);
    border-radius: 50%;
}

/* === PROJECTS SECTION === */
.project-card h3 {
    color: var(--text-primary);
}
.project-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.project-tag {
    background-color: rgba(34, 211, 238, 0.1);
    color: var(--accent-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* === FAQ SECTION === */
.faq-item h3 {
    color: var(--text-primary);
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    cursor: pointer;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding-bottom 0.5s ease-in-out;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}
.faq-item.active .plus-icon {
    transform: rotate(45deg);
}
.plus-icon {
    transition: transform 0.3s ease-in-out;
}

/* === ANIMATION PREPARATION === */
.fade-up-initial {
    opacity: 0;
    transform: translateY(30px);
}

/* ... all your existing styles up to the carousel ... */

/* === UPDATED: TESTIMONIAL CAROUSEL STYLES === */
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
    color: var(--accent-cyan);
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 0px;
    height: 0px;
    background-color: rgba(34, 211, 238, 0.1); /* Faint cyan background */
    border-radius: 50%;
}

.testimonial-swiper .swiper-button-prev:hover,
.testimonial-swiper .swiper-button-next:hover {
    transform: scale(1.1);
    background-color: rgba(34, 211, 238, 0.2);
}

.testimonial-swiper .swiper-button-prev.swiper-button-disabled,
.testimonial-swiper .swiper-button-next.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Positioning for desktop */
@media (min-width: 768px) {
    .testimonial-swiper .swiper-button-prev {
        left: -30px;
    }
    .testimonial-swiper .swiper-button-next {
        right: -30px;
    }
}
/* This removes the default Swiper font icon */
.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
    display: none;
}


/* ... (your existing CSS) ... */

/* === NEW: INFINITE LOGO CAROUSEL ANIMATION === */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves half the width of the container (one set of duplicated logos) */
    }
}

.logo-carousel-container {
    animation: scrollLeft 30s linear infinite; /* Adjust duration (e.g., 30s) for desired speed */
}

/* Pause animation on hover for better user experience */
.logo-carousel-container:hover {
    animation-play-state: paused;
}


/* === NEW STYLES FOR ABOUT PAGE === */

.mission-vision-card {
    background-color: var(--bg-primary); /* A slightly different bg for contrast */
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
}

.founder-image-small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid var(--border-color);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

.founder-card {
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
}


/* === NEW: ELABORATED FOOTER STYLES === */
.footer-heading {
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.footer-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

/* Newsletter Form Styles */
.newsletter-form {
    display: flex;
    max-width: 320px;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: var(--bg-primary);
    padding: 0.25rem;
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--accent-cyan);
}

.newsletter-input {
    flex-grow: 1;
    background: none;
    border: none;
    outline: none;
    padding: 0.5rem 0.75rem;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-button {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    background-image: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    color: white;
    transition: transform 0.2s ease;
}

.newsletter-button:hover {
    transform: scale(1.05);
}

/* Social Icon Styles */
.footer-social-icon {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icon:hover {
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Sub-Footer Link Styles */
.sub-footer-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.sub-footer-link:hover {
    color: var(--text-primary);
}



/* === NEW STYLES FOR ELABORATED SERVICES PAGE === */

.sub-service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.sub-service-card p {
    color: var(--text-muted);
}

.approach-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background-image: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    color: var(--bg-primary);
    font-size: 1.5rem;
    font-weight: 700;
}




/* === NEW STYLES FOR ELABORATED SERVICES PAGE === */

.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.sub-service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.sub-service-card p {
    color: var(--text-muted);
}

.tech-category-title {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tech-item:hover {
    opacity: 1;
}

.tech-item p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.approach-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background-image: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    color: var(--bg-primary);
    font-size: 1.25rem;
    font-weight: 700;
}





/* === NEW STYLES FOR ELABORATED PRODUCTS PAGE === */

.featured-product-badge {
    display: inline-block;
    background-image: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-image {
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* This targets every list item that comes after another list item */
.product-feature-list li + li {
    margin-top: 0.75rem;
}
.product-feature-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-secondary);
}

.product-feature-list li i {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: var(--accent-violet);
    flex-shrink: 0;
    margin-top: 4px;
}

.product-learn-more {
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.product-learn-more:hover {
    color: var(--accent-cyan);
}

.coming-soon-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2.5rem;
}




/* === NEW STYLES FOR WHY-DIT PAGE === */

.advantage-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: flex;          /* Add this */
    flex-direction: column; /* Add this */
    gap: 1.5rem;            /* This is the correct property for spacing */
}

.advantage-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.125rem; /* 18px */
    color: var(--text-primary);
}

.advantage-list-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

.advantage-list li span strong {
    color: var(--text-primary);
    font-weight: 600;
}

.advantage-list li span {
    color: var(--text-secondary);
}




/* === NEW STYLES FOR CONTACT PAGE === */
.contact-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-input {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: var(--accent-cyan);
}

.contact-info-title {
    font-weight: 600;
    color: var(--text-primary);
}

.form-response {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
}





/* === NEW STYLES FOR CONTACT PAGE MAP === */

.map-iframe {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}




/* === UPDATED STYLES FOR HEADER DROPDOWNS === */

.dropdown-menu {
    position: absolute;
    top: 100%; /* Position right below the parent */
    left: 0;
    background-color: var(--bg-secondary); /* Explicitly set background */
    border: 1px solid var(--border-color);
    border-radius: 0.375rem; /* Tailwind's rounded-md */
    padding-top: 0.5rem;    /* Tailwind's py-2 */
    padding-bottom: 0.5rem; /* Tailwind's py-2 */
    width: 14rem;           /* Tailwind's w-56 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Tailwind's shadow-lg */
    margin-top: 0.25rem; /* Add a small gap, still allows hover */

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease; /* Delay hiding visibility */
    z-index: 50;
}

/* Show dropdown on hover */
.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease, visibility 0s linear 0s, transform 0.2s ease; /* Faster transition when showing */
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    background-color: var(--bg-primary);
    color: var(--accent-cyan);
}

/* Style for the active page link in the main nav */
.nav-link.active-link {
    color: var(--accent-cyan);
    font-weight: 600;
}







/* === NEW STYLES FOR 3-COLUMN PRODUCT DROPDOWN === */

.products-dropdown {
    /* Layout */
    display: grid !important; /* Use !important to override potential conflicts */
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.25rem 0.5rem !important;
    padding: 0.75rem !important;

    /* Sizing & Appearance */
    width: 40rem !important; /* Match HTML, use !important */
    background-color: var(--bg-secondary) !important; /* Ensure background is set */
    border: 1px solid var(--border-color) !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;

    /* Positioning & Visibility (from dropdown-menu class, ensure specificity) */
    position: absolute !important;
    top: 100% !important;
    left: -350% !important;
    margin-top: 0.25rem !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease;
    z-index: 50 !important;
}

/* Show dropdown on hover */
.group:hover .products-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease, visibility 0s linear 0s, transform 0.2s ease;
}

/* Ensure individual links behave correctly */
/* Ensure individual links behave correctly */
.products-dropdown .dropdown-link {
    padding: 0.4rem 0.8rem;
    color: var(--text-secondary);
    background-color: transparent;
    display: block;
    text-align: center; /* Add this line */
}


.products-dropdown .dropdown-link:hover {
    background-color: var(--bg-primary);
    color: var(--accent-cyan);
}





/* === STYLES FOR PRODUCTS GRID PAGE === */

.product-grid-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-grid-icon {
    width: 48px; /* Larger icon */
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    stroke-width: 1.5; /* Slightly thinner lines */
    display: inline-block; /* Center the icon */
}

.product-grid-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-grid-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}





/* === NEW STYLES FOR ELABORATED PRODUCTS PAGE === */

.product-category-title {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    display: inline-block; /* Make border only as wide as text */
}

/* Ensure advantage list styles (copied from why-dit) exist if not already global */
.advantage-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.advantage-list-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

.advantage-list li span strong {
    color: var(--text-primary);
    font-weight: 600;
}

.advantage-list li span {
    color: var(--text-secondary);
}









/* === NEW STYLES FOR MINIMAL PROCESS GRID === */

.process-card-minimal {
    background-color: var(--bg-primary); /* Use primary bg for contrast */
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem; /* Slightly adjust padding */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card-minimal:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.process-card-icon-minimal {
    display: inline-flex; /* Use inline-flex for alignment */
    align-items: center;
    justify-content: center;
    width: 60px; /* Slightly smaller icon bg */
    height: 60px;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative; /* For numbering */
}

.process-card-icon-minimal i {
    width: 28px; /* Icon size */
    height: 28px;
    stroke-width: 1.5;
}

.process-card-number-minimal {
    position: absolute;
    top: -10px;
    left: -10px; /* Position number top-left */
    background-color: var(--bg-secondary);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.process-card-title-minimal {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.process-card-description-minimal {
    font-size: 0.9rem; /* 14.4px */
    color: var(--text-secondary);
    line-height: 1.6;
}







/* === NEW STYLES FOR LEADERSHIP PAGE === */

.founder-image-large {
    width: 150px; /* Larger image */
    height: 150px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid var(--border-color); /* Slightly thicker border */
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.15); /* Enhanced glow */
}

/* Ensure founder card styles exist (should be there from about.html) */
.founder-card {
     transition: transform 0.3s ease; 
}
.founder-card:hover {
     transform: translateY(-5px); 
}






/* === NEW STYLES FOR CAREERS PAGE === */

.job-filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.job-filter-btn:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.job-filter-btn.active {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
}

.job-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: border-color 0.3s ease;
    /* Ensure items are visible by default */
    display: block; 
}
.job-item:hover {
    border-color: var(--accent-cyan);
}

.job-item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .job-item-content {
        flex-direction: row;
        align-items: center;
    }
}


.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem; /* Row gap, Column gap */
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.job-meta span {
    display: inline-flex;
    align-items: center;
}
.job-meta i {
    stroke-width: 1.5; /* Thinner icons */
    width: 1em; /* Ensure icon size matches text */
    height: 1em;
}


.job-apply-btn {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap; /* Prevent button text wrapping */
    margin-top: 0.5rem; /* Add margin for mobile */
}
@media (min-width: 768px) {
    .job-apply-btn {
         margin-top: 0;
    }
}

.job-apply-btn:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--bg-primary);
}







/* === STYLES FOR APPLY PAGE === */

/* Re-use contact form styles if applicable */
/* .contact-label, .contact-input, .form-response are likely already defined */

/* Specific style for file input button */
.contact-input[type="file"] {
    padding: 0.5rem; /* Adjust padding for file input */
}







/* === NEW STYLES FOR BLOG PAGE === */

.blog-card {
    background-color: var(--bg-primary); /* Use primary bg for contrast */
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    width: 100%;
    height: 200px; /* Fixed height for image */
    object-fit: cover; /* Ensure image covers the area */
    display: block;
}

.blog-card-meta {
    font-size: 0.75rem; /* 12px */
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.blog-card-title a {
    transition: color 0.3s ease;
}
.blog-card-title a:hover {
    color: var(--accent-cyan);
}


.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    /* Limit excerpt lines (optional) */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-cyan);
    transition: color 0.3s ease;
}
.blog-card-readmore:hover {
    color: var(--accent-violet);
}

/* Pagination Styles (Basic) */
.pagination {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination-item:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.pagination-item.current {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--bg-primary);
}







/* === NEW STYLES FOR CASE STUDIES PAGE === */

.case-study-card {
    background-color: var(--bg-primary); /* Use primary bg for contrast */
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.case-study-image {
    width: 100%;
    height: 200px; /* Fixed height for image */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.case-study-card:hover .case-study-image {
    transform: scale(1.03); /* Subtle zoom on hover */
}


.case-study-tag {
    background-color: rgba(34, 211, 238, 0.1); /* Using cyan base */
    color: var(--accent-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem; /* 12px */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Optional: Different color for second tag type if needed */
.case-study-tag:nth-of-type(2n) {
     background-color: rgba(167, 139, 250, 0.1); /* Using violet base */
     color: var(--accent-violet);
}


.case-study-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.case-study-title a {
    transition: color 0.3s ease;
}
.case-study-title a:hover {
    color: var(--accent-cyan);
}


.case-study-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    /* Limit excerpt lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-readmore {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-cyan);
    transition: color 0.3s ease;
    display: inline-block; /* Allow margin-top */
    margin-top: auto; /* Push to bottom if card height varies */
}
.case-study-readmore:hover {
    color: var(--accent-violet);
}









/* === NEW STYLES FOR TUTORIALS, WEBINARS, SUPPORT PAGES === */

/* Resource Card (Used on Tutorials & Past Webinars) */
.resource-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.resource-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.resource-card:hover .resource-card-image {
    transform: scale(1.03);
}
.resource-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.resource-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.resource-card-title a { transition: color 0.3s ease; }
.resource-card-title a:hover { color: var(--accent-cyan); }
.resource-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.resource-card-readmore {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-cyan);
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: auto;
}
.resource-card-readmore:hover { color: var(--accent-violet); }


/* Event Card (Upcoming Webinars) */
.event-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .event-card { flex-direction: row; align-items: center; gap: 1.5rem; }
}
.event-date {
    flex-shrink: 0; text-align: center; background-color: var(--bg-secondary);
    border: 1px solid var(--border-color); border-radius: 0.5rem; padding: 0.75rem; width: 70px;
}
.event-date .month { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.1rem; }
.event-date .day { display: block; font-size: 1.75rem; font-weight: 700; color: var(--accent-cyan); line-height: 1.1; }
.event-details { flex-grow: 1; }
.event-meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.event-title { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); line-height: 1.3; margin-bottom: 0.5rem; }
.event-excerpt { font-size: 0.9rem; color: var(--text-secondary); }
.event-register-btn {
    flex-shrink: 0; background-color: var(--accent-cyan); color: var(--bg-primary); font-weight: 600;
    padding: 0.6rem 1.25rem; border-radius: 0.375rem; transition: opacity 0.3s ease; white-space: nowrap; margin-top: 1rem;
}
@media (min-width: 768px) { .event-register-btn { margin-top: 0; } }
.event-register-btn:hover { opacity: 0.9; }


/* Support Option Card */
.support-option-card {
    background-color: var(--bg-primary); border: 1px solid var(--border-color); border-radius: 0.75rem;
    padding: 2rem; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-option-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }
.support-option-icon { width: 48px; height: 48px; margin: 0 auto 1.5rem auto; color: var(--accent-cyan); stroke-width: 1.5; }
.support-option-title { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.support-option-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }
.support-option-link { font-size: 0.875rem; font-weight: 500; color: var(--accent-cyan); transition: color 0.3s ease; }
.support-option-link:hover { color: var(--accent-violet); }

/* Pagination Styles */
.pagination { display: inline-flex; align-items: center; gap: 0.5rem; }
.pagination-item { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-color); color: var(--text-secondary); font-weight: 500; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.pagination-item:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.pagination-item.current { background-color: var(--accent-cyan); border-color: var(--accent-cyan); color: var(--bg-primary); }






/* === NEW STYLES FOR PRESS KIT / MEDIA RESOURCES PAGE === */

.key-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    space-y: 0.5rem;
    color: var(--text-secondary);
}
.key-facts-list li strong {
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.press-release-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}
.press-release-link:hover {
    background-color: rgba(255, 255, 255, 0.03); /* Subtle hover */
}
.press-release-link .pr-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.press-release-link .pr-title {
    font-weight: 500;
    color: var(--text-primary);
}

.asset-section {
    background-color: var(--bg-primary); /* Contrast bg */
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.asset-title {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.asset-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: var(--accent-cyan);
}

.asset-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.asset-download-link, .asset-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
.asset-download-link i {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}
.asset-download-link:hover, .asset-link:hover {
    color: var(--accent-cyan);
}







/* === NEW STYLES FOR LEGAL PAGES (Privacy Policy, Terms) === */

.legal-content h2 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-content p, .legal-content li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 1.5rem; /* Indentation for bullets */
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem; /* Space between list items */
}

.legal-content a.legal-link {
    color: var(--accent-cyan);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}
.legal-content a.legal-link:hover {
    color: var(--accent-violet);
}

.legal-content strong {
    color: var(--text-primary); /* Make bold text stand out slightly more */
    font-weight: 600;
}







/* === NEWSLETTER RESPONSE MESSAGE === */
.newsletter-response {
    min-height: 1.25rem; /* Reserve space for the message */
    transition: color 0.3s ease;
}





/* === STYLES FOR CONSULTATION PAGE (Calendly Embed) === */

/* Basic styling for the Calendly widget container */
.calendly-inline-widget {
    /* Calendly's default height is usually good, but you can adjust */
    /* border: 1px solid var(--border-color); /* Optional: Add border */
    border-radius: 0.75rem;
    overflow: hidden; /* Hide potential scrollbars if dimensions match */
    background-color: #ffffff; /* Add a fallback bg, Calendly might override */
}

/* You can potentially override some Calendly styles here if needed,
   but inspect the embedded iframe elements in your browser's developer tools
   to find the correct selectors. This can be complex. */

/* Example (use with caution, might break with Calendly updates): */
/*
.calendly-inline-widget iframe body {
    background-color: var(--bg-secondary) !important;
}
*/







/* === UPDATED STYLES FOR PROJECT + TESTIMONIAL CAROUSEL === */

.project-testimonial-swiper {
    padding-bottom: 50px; /* Space for pagination */
}

.project-testimonial-slide-content {
    padding: 1rem;
}

.project-slide-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.project-info h3 {
     line-height: 1.3;
     margin-bottom: 0.5rem; /* Added margin */
}
.project-info p {
    margin-bottom: 1rem; /* Added margin */
}

/* --- Testimonial Content Styling --- */
.testimonial-content {
    text-align: left; /* Align text block left */
    position: relative;
    padding-left: 3rem; /* Space for the large quote mark */
    margin-top: 1rem; /* Add space above testimonial on mobile */
}
@media (min-width: 768px) {
    .testimonial-content {
        text-align: left; /* Keep left alignment on desktop too, looks cleaner */
        padding-left: 0; /* Remove padding */
        padding-right: 3rem; /* Add space on the right for quote mark */
        margin-top: 0;
    }
}


.testimonial-content .quote-icon { /* Style for the feather icon */
    width: 2.5rem; /* 40px */
    height: 2.5rem;
    color: var(--accent-cyan);
    opacity: 0.4;
    margin-bottom: 1rem;
    display: block; /* Make it block level */
}
@media (min-width: 768px) {
     .testimonial-content .quote-icon {
        position: absolute; /* Position icon absolutely on desktop */
        right: 0;
        top: 0;
     }
}


.testimonial-content blockquote {
    font-size: 0.9rem; /* Slightly smaller */
    font-weight: 500; /* Medium weight */
    color: var(--text-primary);
    line-height: 1.7; /* Better readability */
    font-style: italic;
    margin: 0; /* Remove default blockquote margin */
    padding: 0;
}


.testimonial-content .attribution { /* Style for the name/title */
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem; /* Smaller attribution */
    margin-top: 1.5rem;
    display: block; /* Ensure it's on its own line */
}
.testimonial-content .attribution span { /* Style for the title part */
    display: block; /* Put title on new line */
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.8rem;
}


/* --- Swiper Navigation & Pagination --- */
#pt-swiper-button-prev,
/*#pt-swiper-button-next {
    color: var(--accent-cyan);
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 44px;
    height: 44px;
    background-color: rgba(34, 211, 238, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}*/
#pt-swiper-button-prev:hover,
#pt-swiper-button-next:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: rgba(34, 211, 238, 0.2);
}
#pt-swiper-button-prev.swiper-button-disabled,
#pt-swiper-button-next.swiper-button-disabled { opacity: 0.3; pointer-events: none; }
#pt-swiper-button-prev { left: -15px; }
#pt-swiper-button-next { right: -15px; }
#pt-swiper-button-prev::after,
#pt-swiper-button-next::after { display: none; }

.project-testimonial-swiper .swiper-pagination { bottom: 0px !important; }
.project-testimonial-swiper .swiper-pagination-bullet { width: 10px; height: 10px; background-color: var(--text-muted); opacity: 0.5; transition: background-color 0.3s ease, opacity 0.3s ease; }
.project-testimonial-swiper .swiper-pagination-bullet-active { background-color: var(--accent-cyan); opacity: 1; }



h1.tit{margin-top: 1.7em;}
h2.tit{margin-top: 1.7em;}
h3.tit{margin-top: 1.7em;}
h4.tit{margin-top: 1.7em;}
h5.tit{margin-top: 1.7em;}


p.tit{margin-bottom: 1.7em;}
p.tit2{margin-bottom: 2em;}


p.test1{font-size: normal; text-align: center;}