*{
    box-sizing: border-box;
   
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    background-color: #FFFFFF;
}

.gradient-background {
    margin: 10px;
    padding: 10px 0;
    background: linear-gradient(180deg, #F0F0F0 0%, #FFFFFF 100%);
    border-radius: 8px;
    /* optional rounded corners */
}

.gradient-process-background {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    margin: 10px;
    padding: 50px 0;
    border-radius: 8px;
    /* optional rounded corners */

}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.nav-left,
.nav-right {
    margin-inline: 40px;
    display: flex;
    gap: 20px;
}

.nav-left a,
.nav-right a {
    text-transform: uppercase;
    margin-inline: 60px;
    text-decoration: none;
    font-size: 12px;
    color: #000000;
    font-weight: 400;
}

.nav-logo img {
    height: 40px;
}

.banner {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 40px auto 20px auto;
}

.banner-text {
    flex: 1;
}

.banner-text h1 {
    margin: 0;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -1.68px;
}

.banner-text p {
    color: #808080;
}

.banner-text .tagline {
    color: #B20000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

.banner-text button {
    margin-top: 20px;
    padding: 16px 24px;
    background-color: #B20000;
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
}

.about-agilix span {
    color: #B20000;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.about-agilix p {
    color: #000000;
}

.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    width: 25rem;
}

.banner-image {
    flex: 1;
    text-align: right;
}

.banner-image img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    color: #B20000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* What We Do Section */
.what-we-do {
    margin: 80px 0;
    /* background-color: #F9F9F9; */
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    border: 2px solid #B20000;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* stack vertically */
    justify-content: space-between;/
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(178, 0, 0, 0.1);
}

.service-icon {
    align-self: flex-end;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.service-card p {
    color: #000000;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.services-grid .service-detail {
    padding: 24px;

}

.services-grid .service-detail svg {
    width: 50px;
    height: 50px;
}

.services-grid .service-detail:nth-child(2) {
    background-color: #B20000;
    border-radius: 20px;
}

.services-grid .service-detail:nth-child(2) ul li {
    color: #FFFFFF;
}

.services-grid .service-detail:nth-child(2) h3 {
    color: #FFFFFF;
}

/* Our Process Section */

/* Layout */
.process-container {
    display: flex;
    gap: 40px;
}

/* Left banner */
.process-steps {
    flex: 0 0 120px;
}

.steps-banner {
    background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 60%, #B20000 100%);
    color: white;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    padding: 40px 10px;
    font-size: 100px;
    height: 720px;
    width: 200px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

/* Right content */
.process-items {
    flex: 1;
}
.process-items .process-content1 {
    max-width: 450px;
    width: 100%;
  }
  
  .process-items .process-content2 {
    max-width: 570px;
    width: 100%;
  }
  
  .process-items .process-content3 {
    max-width: 680px;
    width: 100%;
  }
  
  .process-items .process-content4 {
    max-width: 830px;
    width: 100%;
  }
/* Each item */
.process-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

    /* 🔥 Progressive shift */
    margin-right: calc(var(--step) * 40px);
}

/* Left content (number + text) */
.left {
    display: flex;
    flex-direction: column;
}

/* Number */
.process-number {
    font-size: 36px;
    font-weight: bold;
    color: #B20000;
}

/* Text */
.process-content h3 {
    margin: 8px 0 4px;
    font-size: 18px;
}

.process-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Image */
.process-image svg {
    width: 120px;
    ;
    height: 120px;
    text-align: right;
}

/* Products Grid Section */
.products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: .5fr;
    gap: 20px;
    margin-top: 40px;
}

.product-card {
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #4E3162;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}



/* Title Box - First card */
.product-card-title {
    grid-column: 1;
    grid-row: 1;
    background: #FFFFFF;
    border: 2px solid #4E3162;
}

.product-card-title .product-header {
    margin: auto;
}

/* Description Box - Second card */
.product-card-description {
    grid-column: 1;
    grid-row: 2;
}

.product-card-description .product-description {
    margin: 0;
    color: #4E3162;
    font-size: 16px;
    line-height: 1.7;
}

/* Features Box - Third card */
.product-card-features {
    grid-column: 1;
    grid-row: 3;
}

.product-card-features .product-features ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.product-card-features .product-features li {
    color: #4E3162;
    font-size: 15px;
    padding: 6px 0;
    border-bottom: none;
}

/* Large image - Right side spanning 3 rows */
.product-card-large {
    grid-column: 2;
    grid-row: 1 / span 3;
    border: unset !important;
    padding: 0;

}

/* .product-card-large .product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.product-card-large .product-image img {
    width: 100%;
    height: 540px;
}

/* Explore Button - Full width at bottom */
.product-card-explore {
    grid-column: 1 / -1;
    grid-row: 4;
    background: linear-gradient(135deg, #4a3a6b 0%, #6b4c8a 100%);
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.explore-btn-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 36px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.explore-btn-full:hover {
    gap: 24px;
}

.explore-btn-full svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

/* Old explore button styles (for any other uses) */

.services {
    padding: 40px 0;
}

.services-grid-2 {
    gap: 40px;
}

.services-grid .service-list li {
    padding: 8px 0;
    color: #000000;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card-title,
    .product-card-description,
    .product-card-features {
        grid-column: 1;
    }

    .product-card-large {
        grid-column: 1;
        grid-row: auto;
    }

    .product-card-explore {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card-title,
    .product-card-description,
    .product-card-features,
    .product-card-large,
    .product-card-explore {
        grid-column: 1;
        grid-row: auto;
    }

    .process-container {
        flex-direction: column;
    }

    .steps-banner {
        writing-mode: horizontal-tb;
        height: auto;
        padding: 20px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
    }

    .footer-inner {
        padding: 40px 20px 28px;
    }

    /* .footer-cta {
        flex-direction: column;
        align-items: stretch;
    } */

    .footer-form {
        max-width: none;
        margin-left: 0;
    }

    .footer-nav-row {
        flex-direction: column;
    }

    .footer-slogan {
        align-items: flex-start;
        text-align: left;
    }

    .footer-columns {
        grid-template-columns: unset !important; 
        gap: 28px;
    }

    .footer-brand {
        margin: 36px 0 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* FAQ section */
.faq-section {
    background: #ffffff;
    padding: 80px 0 100px;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    gap: 48px 88px;
    align-items: start;
}

.faq-label {
    margin-bottom: 0;
}

.faq-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.08;
    margin: 14px 0 0;
    text-transform: lowercase;
    letter-spacing: -1.2px;
    color: #000000;
}

.faq-accordion {
    min-width: 0;
}

.faq-item {
    border-bottom: 1px solid #d3d3d3;
}



.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: inherit;
}

.faq-trigger:focus-visible {
    outline: 2px solid #b20000;
    outline-offset: 2px;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-transform: lowercase;
    line-height: 1.35;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid #b20000;
    position: relative;
    color: #b20000;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid #b20000;
    /* background: #ffffff; */
}

.faq-item:not(.is-open) .faq-icon::before {
    /* width: 2px; */
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item:not(.is-open) .faq-icon::after {
    width: 10px;
    /* height: 2px; */
    transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::before {
    width: 11px;
    /* height: 2px; */
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-icon::after {
    width: 11px;
    /* height: 2px; */
    transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-panel {
    padding-bottom: 28px;
}

.faq-panel[hidden] {
    display: none;
}

.faq-panel p {
    margin: 0;
    max-width: 720px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #000000;
}
.privacy-section , .terms-section {
    margin-block: 60px;
}
.privacy-section  h4 {
    color: #808080;
    font-size: 16px;
}
.terms-section h4 {
    color: #808080;
    font-size: 16px;

}
.privacy-content .privacy-item {
    margin-bottom: 70px;
}

.terms-content .terms-item {
    margin-bottom: 70px;
}

/* In-page anchor for footer "team" link until a team section exists */
.footer-scroll-anchor {
    height: 0;
    scroll-margin-top: 96px;
}

/* Footer */
.site-footer {
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(136.24deg, #B20000 24.16%, #000000 75.54%);

    color: #ffffff;
    font-family: "Outfit", sans-serif;
}

.footer-inner {
    padding: 56px 20px 32px;
    max-width: 1300px;
}

.footer-cta {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 40px 48px;
    flex-wrap: wrap;
}

.footer-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.footer-heading {
    margin: 0;
    max-width: 520px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: lowercase;
    color: #ffffff;
}

.footer-form {
    flex: 1;
    min-width: min(100%, 320px);
    max-width: 420px;
    margin-left: auto;
}

.footer-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.9);
}

.footer-form-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.footer-form-row input[type="email"] {
    flex: 1;
    min-width: 0;
    border: none;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: #000000;
    background: transparent;
    outline: none;
}

.footer-form-row input::placeholder {
    color: #888888;
}

.footer-form .footer-form-button {
    flex-shrink: 0;
    padding: 8px 32px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    background: #ffffff;
    color: #b20000;
    font-family: inherit;
    float: right;
    font-size: 14px;
    font-weight: 600;
    text-transform: lowercase;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(178, 0, 0, 0.25);
}

.footer-form-row button:hover {
    background: #fafafa;
}

.footer-form-row button:focus-visible {
    outline: 2px solid #b20000;
    outline-offset: 2px;
}

.footer-rule {
    border: none;
    height: 1px;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.14);
}

.footer-nav-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 32px 48px;
    /* flex: 1; */
    min-width: min(100%, 520px);
}

.footer-col-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 600;
    text-transform: lowercase;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    text-transform: lowercase;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-link-underline {
    text-decoration: underline;
}

.footer-slogan {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 0;
    line-height: 1.05;
}

.footer-slogan span {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: -1px;
    color: #ffffff;
}

.footer-brand {
    margin: 48px 0 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 0.15em;
    line-height: 0.9;
}

.footer-brand-bold {
    font-size: clamp(48px, 14vw, 120px);
    font-weight: 800;
    letter-spacing: -3px;
    text-transform: lowercase;
    color: #ffffff;
}

.footer-brand-light {
    font-size: clamp(22px, 5vw, 42px);
    font-weight: 200;
    letter-spacing: -0.5px;
    text-transform: lowercase;
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copy {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.85);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* border-radius: 50%;
    background: #ffffff;
    color: #b20000; */
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-social-link:hover {
    transform: scale(1.06);
    opacity: 0.95;
}

.footer-social-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.testimonials-title {
    flex: 1;
}

.testimonials-label {
    display: block;
    color: #B20000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.testimonials-heading {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: -1px;
    color: #000000;
}

.testimonials-nav {
    display: flex;
    gap: 12px;
    align-self: flex-start;
}

.testimonials-nav-btn {
    width: 30px;
    height: 3px;
    border: 2px solid #B20000;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B20000;
    transition: all 0.3s ease;
}
.testimonials-section .owl-item {
    width: 650px !important;
}
.owl-dots {
    display: none;
}
.testimonials-section .active:first-child {
    opacity: .5;
}
.testimonials-nav-btn:hover {
    background: #B20000;
    color: #FFFFFF;
}

.testimonials-nav-btn:focus-visible {
    outline: 2px solid #B20000;
    outline-offset: 2px;
}

#slider-3 {
    display: flex;
    gap: 20px;
}

.testimonial-item {
    flex: 1;
    min-width: 0;
}

.testimonial-card {
    border: 1px solid  #B20000;
    flex-direction: column;
    background: #FDFAFA;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    gap: 20px;
   

    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    letter-spacing: -0.2px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.testimonial-rating .star {
    color: #FFA500;
    font-size: 16px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-transform: lowercase;
}

.author-title {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    text-transform: lowercase;
}
/* --- Team carousel (Owl center = active slide) --- */
.our-team {
    padding: 72px 0 64px;
    background: #fff;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.team-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.team-section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b20000;
    margin-bottom: 8px;
}

.team-section-heading {
    margin: 0;
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: lowercase;
    color: #111;
}

.team-section-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.team-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f0f0f0;
    color: #999;
    transition: background 0.2s ease, color 0.2s ease;
}

.team-nav-btn:hover {
    background: #e8e8e8;
    color: #333;
}

.team-nav-btn--next {
    background: #b20000;
    color: #fff;
}

.team-nav-btn--next:hover {
    background: #8f0000;
    color: #fff;
}

.team-carousel-wrap {
    /* width: 100%;
    max-width: 1300px; */
    margin: 0 auto;
    padding: 0 20px 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.page {
    padding: 40px 0 60px;
  }
  
  /* ── Header ── */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 48px;
    margin-bottom: 32px;
  }
  
  .team-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #C62828;
    margin-bottom: 6px;
  }
  
  .team-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
  }
  
  .nav-btns {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .nav-btn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #ccc;
    outline: none;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
  }
  
  /* .nav-btn.on {
    border-color: #C62828;
    color: #C62828;
  } */
  
  /* ── Slider ── */
  .slider-viewport {
    width: 100%;
    overflow: hidden;
  }
  
  .slider-track {
    display: flex;
    align-items: stretch;
    gap: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  
  /* ── CARD (default state) ── */
  .card {
    flex-shrink: 0;
    height: 300px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  
    /* Default background */
    background: #e5e5e5;
  
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s ease,
                opacity 0.3s ease;
  }
  
  /* Optional inactive dim effect */
  .card:not(.active) {
    opacity: 0.9;
  }
  
  /* ── ACTIVE CARD BACKGROUND ── */
  .card.active {
    background: linear-gradient(136.24deg, #B20000 24.16%, #000000 75.54%);
  }
  
  /* ── OVERLAY ── */
  .card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(122,10,10,0.85) 0%,
      rgba(198,40,40,0.72) 50%,
      rgba(74,6,6,0.88) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }
  
  .card.active::after {
    opacity: 1;
  }
  
  /* ── IMAGE (bottom-right) ── */
  .card-photo {
    position: absolute;
    bottom: 0;
    right: 0;
  
    width: 70%;
    height: auto;
  
    object-fit: contain;
    object-position: bottom right;
  
    filter: grayscale(100%);
    transition: filter 0.45s ease, transform 0.4s ease;
  
    z-index: 0;
  }
  
  .card.active .card-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
  }
  
  /* ── PLACEHOLDER ── */
  .card-placeholder {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }
  
  .av-head {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(150,150,150,0.3);
    transition: background 0.4s;
  }
  
  .av-body {
    width: 110px;
    height: 80px;
    border-radius: 55px 55px 0 0;
    background: rgba(150,150,150,0.2);
    transition: background 0.4s;
  }
  
  .card.active .av-head {
    background: rgba(255,255,255,0.2);
  }
  
  .card.active .av-body {
    background: rgba(255,255,255,0.1);
  }
  
  /* ── CARD INFO ── */
  .card-info {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
  
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease 0.05s,
                transform 0.35s ease 0.05s;
  
    pointer-events: none;
  }
  
  .card.active .card-info {
    opacity: 1;
    transform: translateY(0);
  }
  
  .card-role {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
  }
  
  .card-name {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
  }
  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background: linear-gradient(180deg, #000000 0%, #B20000 100%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: .2s;
  }
  #myBtn:hover{
    background-color: #444;
  }
@media (max-width: 768px) {
    nav {
        display: block;
    }
    .steps-banner {
        width: unset;
        height: unset;
        padding: 20px;
        font-size: 40px;
    }
    .product-card-large .product-image img  {
        object-fit: contain;
        height: unset;
    }
    .what-we-do{
        margin: 30px 0;
    }
    .about-image img {
        max-width: 100%;
    }
    .gradient-process-background {
        padding: 30px 0;
        margin: 0;
    }
    .banner {
       flex-direction: column-reverse;
       gap: 20px;
       margin: 30px;
    }
    .nav-left, .nav-right {
      justify-content: flex-end;
    }
    .nav-left a, .nav-right a {
        margin-inline: 30px;
    }
    .team-section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .team-section-heading {
        font-size: 32px;
    }

    .testimonials-header {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .testimonials-heading {
        font-size: 32px;
    }

    #slider-3 {
        gap: 16px;
    }

    .testimonial-card {
        padding: 20px;
    }
}
@media (max-width: 992px) { 
   .nav-left, .nav-right {
    margin-inline: 0;
    gap: 0;
   }
   .nav-left a, .nav-right a {
    margin-inline: 30px;
   }
   .faq-layout {
    grid-template-columns: unset;
   }
}