.about-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 0px;
}

.about-header {
    margin-bottom: var(--ssbond-d-b2);
    margin-top: 15px;
    text-align: center;
}

.about-header h1 {
    font-size: var(--ssbond-d-h2);
    font-weight: 500;
    color: #333;
    
}

.about-header h2 {
    font-size: var(--ssbond-d-h2);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: var(--ssbond-d-b2);
    margin-top: var(--ssbond-space-t3);
}
.about-nav-header {
    border: 1px solid; /* Border wrapping all buttons */
    border-radius: 10px; /* Optional: Rounded border */
    padding: 5px 10px; /* Add spacing between border and buttons */
    display: inline-block; /* Adjust size to fit content */
    overflow-x: auto; /* Ensure horizontal scrolling remains intact */
    scrollbar-width: none; /* Hide scrollbar */
    max-height: 45px;
    border-radius: 30px;
    max-width: 88%;
    margin-bottom: -50px;
    overflow-y: hidden;
}

.about-nav-header::-webkit-scrollbar {
    display: none;
}

.about-nav-header::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); /* Scrollbar thumb color */
    border-radius: 4px; /* Rounded scrollbar thumb */
}

.about-nav-header::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1); /* Scrollbar track color */
}
.about-nav-header::-moz-scrollbar {
    scrollbar-width: thin;
}

.about-nav {
    display: flex;
    justify-content: flex-start; /* Align buttons to the left */
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: nowrap; /* Prevent buttons from wrapping to the next line */
    overflow-x: auto; /* Enable horizontal scrolling */
    -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
    scrollbar-width: none; /* Completely hide scrollbar for modern browsers like Firefox */
    overflow-y: hidden;
}

.about-nav::-webkit-scrollbar {
    display: none; /* Hides the scrollbar */
}

.about-nav-btn {
    flex: 0 0 auto; /* Prevent buttons from stretching */
    padding: 8px 24px;
    border-radius: 20px;
    border: 1px solid var(--ssbond-blue);
    background: transparent;
    color: var(--ssbond-black);
    font-size: var(--ssbond-d-desc2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-nav-btn:hover {
    background: var(--ssbond-primaryLinear);
    color: var(--ssbond-white);
}
.about-nav-btn.active {
    background: var(--ssbond-primaryLinear);
    color: var(--ssbond-white);
}
.singleBlog-log-and-time{
    display: flex; 
    justify-content: flex-start; 
    align-items: center;
}
.singleBlog-img{
    display: flex; 
    align-items: center; 
    margin-right: 10px;
}
.singleBlog-time{
    font-size: 14px; 
    color: #555; 
    display: flex; 
    align-items: center;
}
.singleBlog-time span{
    margin: 0 8px;
}
.singleBlog-time p{
    display: inline; 
    margin: 0;
}


.about-nav-btn[data-tab="introduction"].active {
    border-color: #e0e0e0;
}

.about-nav-btn[data-tab="quality"].active {
    border-color: #e0e0e0;
}

.about-nav-btn[data-tab="manufacturing"].active {
    border-color: #e0e0e0;
}

.about-nav-btn[data-tab="team"].active {
    border-color: #e0e0e0;
}

.about-nav-btn[data-tab="testimonials"].active {
    border-color: #e0e0e0;
}

.about-nav-btn[data-tab="founder"] {
    /* No special styles - will use the same as other buttons */
}

.about-content {
    position: relative;
    margin-top: 90px;
}

.about-tab {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.about-tab.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.about-image, .quality-banner,.manufacturing-banner {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--ssbond-d-b2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    /* height: 240px; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;

    max-width: 100%;
    height: 400px;
    margin: 0 auto 20px;
    overflow: hidden;
}
.about-image{
    max-width: 95% !important;
}
.about-image img, .quality-banner img, .manufacturing-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    color: #444;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: var(--ssbond-d-t2);
    font-size: 16px;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: var(--ssbond-m-h2);
    }

    .about-header h2 {
        font-size: var(--ssbond-d-h4);
        margin-top: var(--ssbond-space-t8);
    }
    .about-nav-header{
        gap: 10px;
        margin-bottom: 30px;
    }
    .about-nav {
        /* justify-content: flex-start;
        padding: 0 10px;
        margin: 10px; */
    }
    .about-content
    {
        margin-top: 40px;
    }
    .quality-intro{
        margin-top: -15px;
    }
    .about-nav-btn {
        padding: 6px 20px;
        font-size: var(--ssbond-small--btn);
    }

    .about-nav-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -10px;
        padding: 0 10px;
    }

    .about-nav-container::-webkit-scrollbar {
        display: none;
    }

    .about-text p {
        font-size: 15px;
    }
    
}

/* Animation classes */
.fade-enter {
    opacity: 0;
    transform: translateY(20px);
}

.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.fade-exit {
    opacity: 1;
    transform: translateY(0);
}

.fade-exit-active {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .about-image, .quality-banner,.manufacturing-banner {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .about-image, .quality-banner {
        height: 200px;
    }

    .about-image img, .quality-banner img,.manufacturing-banner img {
        width: 700px;
    }
}

@media (max-width: 768px) {
    .about-image, .quality-banner, .manufacturing-banner {
        height: 180px;
    }
    .about-nav-header{
        /* width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: var(--ssbond-m-b2);
        padding: 0 10px; */
    }
    .about-nav-header::-webkit-scrollbar {
        /* display: none; */
    }
    .about-image img, .quality-banner img, .manufacturing-banner img {
        width: 600px;
    }
    .about-nav{
        justify-content: flex-start;
        padding: 2px 10px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .about-tab{
        margin-top: -50px;
    }
    .testimonials-container{
        margin-top: -110px !important;
    }
    .about-image, .quality-banner {
        height: 160px;
    }

    .about-image img, .quality-banner img, .manufacturing-banner img {
        width: 500px;
    }
    .about-nav-btn{
        font-size: var(--ssbond-m-btn-card);
padding: 6px 12px;
    }
    .about-nav-header{
        /* width: 330px;
        padding: 0 !important; */
    }
}
@media (max-width: 480px) {
    .about-nav-header{
        /* max-width: 100%; 
        padding: 2px 10px; */
    }
    .about-nav-btn:first-child {
        margin-left: -10px; /* No margin for the first button */
    }
}

/* Optional: Add a subtle zoom effect on hover */
.about-image:hover img, .quality-banner:hover img, .manufacturing-banner:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.quality-content {
    max-width: 1200px;
    margin: 0 auto;
}

.quality-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-top: 100px;
    text-align: left;
}

.quality-sections-wrapper {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 30px;
    margin-top: 115px;
}

.quality-section {
    margin-bottom: 30px;
}

.quality-section:last-child {
    margin-bottom: 0;
}

.quality-section h3 {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.quality-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
}

.quality-section li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--ssbond-black);
    font-size: 18px;
}

/* Banner styles */
/* .quality-banner {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
} */

/* .quality-banner img {
    width: 800px;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    
} */

/* Container for consistent spacing */
.quality-container {
    padding: 0 20px;
    /* max-width: 1200px; */
    max-width: 1295px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .quality-banner img {
        width: 700px;
    }
}

@media (max-width: 768px) {
    .quality-banner {
        height: 180px;
    }
    .quality-banner img {
        width: 600px;
    }
}

@media (max-width: 576px) {
    .quality-banner {
        height: 160px;
    }
    .quality-banner img {
        width: 500px;
    }
    .quality-sections-wrapper{
        width: 100%;
        margin-left: -1px;
    }
    .singleBlog-log-and-time .singleBlog-img{
        margin-left: -15px;
    }
}

/* Manufacturing Styles - Following the same pattern as Quality section */
.manufacturing-container {
    padding: 0 20px;
    max-width: 1295px;
    margin: 0 auto;
}

/* .manufacturing-banner {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 240px;
    background-color: #f8f8f8;
} */

/* .manufacturing-banner img {
    width: 100%;
    height: 100%;
} */

.manufacturing-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
}

.manufacturing-sections-wrapper {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.manufacturing-section {
    margin-bottom: 30px;
}

.manufacturing-section:last-child {
    margin-bottom: 0;
}

.manufacturing-section h3 {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.manufacturing-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.manufacturing-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
}

.manufacturing-section li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--ssbond-black);
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .manufacturing-sections-wrapper {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .manufacturing-sections-wrapper {
        padding: 20px;
    }
    
    .manufacturing-section h3 {
        font-size: var(--ssbond-d-desc1);
    }
    
    .manufacturing-intro,.manufacturing-section li,.quality-section li {
        font-size: var(--ssbond-d-h5);
        line-height: 1.3;
    }
}

/* Team section styles */
.team-banner {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
    height: 240px;
    background-color: #f8f8f8;
}

.team-banner img {
    width: 100%;
    height: 100%;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
}

.team-carousel-wrapper {
    /* position: relative;
    overflow: hidden;*/
    padding: 0 23px; 
    overflow: visible; /* Ensures no scrolling */
}

.team-carousel {
    /* display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab; */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 20px; /* Space between cards */
}
@media (max-width: 992px) {
    .team-carousel {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on medium screens */
    }
}

@media (max-width: 576px) {
    .team-carousel {
        grid-template-columns: 1fr; /* 1 card per row on small screens */
    }
}
.team-carousel::-webkit-scrollbar {
    display: none;
}

.team-member {
    /* flex: 0 0 auto;
    width: calc(100% - 40px);
    max-width: 400px;
    scroll-snap-align: center; */
    flex: 0 1 calc(33.333% - 20px); /* Each item takes ~1/3 of the container width */
    box-sizing: border-box;
    text-align: center;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (min-width: 768px) {
    .team-member {
        width: 400px;
    }
}

.team-member img {
    /* -webkit-transform: translateZ(0);
    transform: translateZ(0); */
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-member {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: var(--ssbond-whiteGray);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 20px 5px;
    color: #000;
}

.member-role {
    display: block;
    font-size: var(--ssbond-d-desc2);
    color: #666;
    margin: 0 20px 15px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 10px 0;
}

.nav-dot {
    width: 30px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ssbond-black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-dot.active::after {
    transform: scaleX(1);
}

/* Hover effect */
.nav-dot:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Active state */
.nav-dot.active {
    background-color: var(--ssbond-black);
}

/* For mobile */
@media (max-width: 768px) {
    .nav-dot {
        width: 20px;
    }

    .carousel-nav {
        gap: 8px;
        margin-top: 20px;
    }
}

/* Focus styles for accessibility */
.nav-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--ssbond-blue-rgb), 0.4);
}

/* Dark mode support if needed */
@media (prefers-color-scheme: dark) {
    .nav-dot {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .nav-dot:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }
}

/* Updated Testimonials styles */
.testimonials-container {
    max-width: 1295px;
    margin: 0 auto;
    padding: 40px 20px;
    margin-top: -70px;
}

.testimonials-carousel {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    cursor: grab;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 320px;
    background: var(--ssbond-whiteGray);
    border-radius: 12px;
    padding: 25px;
    scroll-snap-align: center;
    margin: 10px 5px;
    text-align: center;
    transition: all 0.3s ease;
   
}

/* .testimonial-card:hover {
    box-shadow: var(--shared-shadow);
    transform: translateY(-2px);
} */

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: left;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    text-align: center;
}

.testimonial-author h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 5px 0;
}

.author-role {
    display: inline-block;
    padding: 4px 12px;
    background: var(--ssbond-blue);
    color: white;
    font-size: var(--ssbond-d-btn-card);
    border-radius: 20px;
}

/* Carousel navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--ssbond-blue);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-card {
        flex: 0 0 280px;
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: var(--ssbond-d-desc2);
    }
    
    .testimonial-author h3 {
        font-size: 15px;
    }
    
    .author-role {
        font-size: 11px;
    }
}

.founder-container {
    max-width: 1295px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-profile {
    text-align: center;
    margin-bottom: 40px;
}

.founder-image {
    width: 100%;
    /* max-width: 800px; */
    height: 400px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-title {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.founder-name {
    background: var(--ssbond-red);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: var(--ssbond-d-desc2);
    font-weight: 500;
}

.founder-badge {
    background: var(--ssbond-secondaryLinear);
    color: var(--ssbond-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: var(--ssbond-d-desc2);
    font-weight: 500;
    border: 1px solid var(--ssbond-secondaryLinear);
}

.founder-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
}

.founder-section {
    margin-bottom: 30px;
}

.founder-section:last-child {
    margin-bottom: 0;
}

.founder-section h3 {
    font-size: var(--ssbond-d-desc1);
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.founder-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.founder-section p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .founder-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .founder-image {
        height: 300px;
    }

    .founder-content {
        padding: 20px;
    }

    .founder-title h2 {
        font-size: 22px;
    }

    .founder-section h3 {
        font-size: 18px;
    }

    .founder-section p {
        font-size: var(--ssbond-d-desc2);
    }
}

/* Add smooth scrolling to page but not carousel */
html {
    scroll-behavior: smooth;
}

.team-carousel-wrapper * {
    scroll-behavior: auto;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .team-carousel-wrapper {
        touch-action: pan-y pinch-zoom;
    }

    .team-member {
        flex: 0 0 260px;
    }
}

/* Optional: Add fade effect during transition */
.team-carousel.dragging .team-member {
    opacity: 0.8;
}

.about-heading {
    font-size: var(--ssbond-d-h1);
    margin-top: var(--ssbond-d-t1);
    margin-bottom: var(--ssbond-d-b1);
}

.about-description {
    font-size: var(--ssbond-d-desc1);
    color: var(--ssbond-secondary);
}

@media (max-width: 768px) {
    .about-heading {
        font-size: var(--ssbond-m-h1);
    }
    .about-description {
        font-size: var(--ssbond-m-desc1);
    }
}