﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
   
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

.vecenter-section {
    width: 100%;
    padding: 60px 15px;
    background-color: #f9f9f9;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
   
}

.col-12 {
    width: 100%;
}

.col-md-6 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 48%;
    }
}

.image{
    width: 70%;
    height: auto;
    border-radius: 8px;
}

.vecenter-header {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #c57349;
}

.vecenter-description {
    font-size: 1rem;
    color: #555;
    padding-right: 10px;
}

.vecenter-content {
   /* padding: 20px 10px;*/
}

.tagline {
    margin-top: 40px;
}

    .tagline h6 {
        font-size: 1.1rem;
        font-weight: 500;
        color: #fff;
        
        border-radius: 25px;
        background: #c57349;
        
    }
.profile-tab-button {
    color: #552613 !important;
    padding: 9px 19px;
}

/*.active {
    color: white !important;
}*/

.profile-tabs {
    display: flex;
    justify-content: center;
}

.profile-icon i {
    font-size: 40px; /* Adjust the size here */
}

.card-list {
    padding: 10px 20px;
    display: flex;
}

.status-chip {
    background-color: antiquewhite;
    padding: 5px 69px;
}

.label {
    font-size: 14px;
    font-weight: 500;
    margin: auto;
}

.disabled-slot {
    background-color: #f5f5f5;
    color: #999;
}

.tailorit-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 2rem auto;
    background-color: #f9f4ee;
    padding: 2rem 0;
}

.tailorit-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.tailorit-carousel-card {
    min-width: 300px;
    max-width: 300px;
    background: #e4d7c4;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 0 0.75rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

    .tailorit-carousel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.tailorit-carousel-quote {
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1rem;
}

.tailorit-carousel-author {
    font-weight: 300;
    color: #222;
    text-align: right;
    font-size: 0.9rem;
}

/* Navigation Buttons */
.tailorit-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e4d7c400;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

    .tailorit-carousel-btn:hover {
        background: #d3c3ad;
    }

    .tailorit-carousel-btn.prev {
        left: 10px;
    }

    .tailorit-carousel-btn.next {
        right: 10px;
    }

/* Responsive */
@media (max-width: 768px) {
    .tailorit-carousel-card {
        min-width: 90%;
        max-width: 90%;
        margin: 0 1rem;
    }
}
.scroll-row {
    display: flex;
    flex-wrap: nowrap; /* prevent wrapping */
    align-items: flex-start;
    /* overflow-x: auto; 
    scroll-behavior: smooth;
    gap: 20px; 
    padding: 10px;*/
}

    .scroll-row::-webkit-scrollbar {
        display: none;
    }

.features-section {
    background-color: #c87752;
}

.feature-item {
    min-width: 250px; /* ensure a fixed width for each item */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* optional */
}

.feature-text h6 {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    margin: 0;
    white-space: nowrap; /* prevent text wrap */
}

.feature-text p {
    margin: 0;
    font-size: 12px;
    color: #fff;
    opacity: 0.9;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrapper {
    /*overflow: hidden;*/
    position: relative;
}

.scroll-row.marquee {
    animation: marquee-scroll 30s linear infinite;
    white-space: nowrap;
    display: flex;
}
.scroll-row.marquee i.fas {
    color: #ffc107d4;
    font-size: 20px;
}
.ti-section {
    margin: 18px 60px;
}

.ti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
    padding: 0 16px;
}

.ti-section-title {
    font-size: 14px;
    margin: 0px 16px;
}

.ti-card {
    background: linear-gradient(135deg, #f5f3f0, #fff);
    border: 1px solid #ddd;
    border-left: 5px solid #d16a45;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

    .ti-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -40%;
        width: 200%;
        height: 100%;
        background: radial-gradient(circle, rgba(209,106,69,0.05), transparent 70%);
        transform: rotate(12deg);
        z-index: 0;
    }

    .ti-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }

    .ti-card h6 {
        font-size: 1rem;
        margin-bottom: 10px;
        font-weight: 600;
        color: #2a2a2a;
        position: relative;
        z-index: 1;
    }

    .ti-card p {
        font-size: small;
        color: #555;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }

@media (max-width: 600px) {
    .ti-grid {
        gap: 16px;
    }

    .ti-card {
        padding: 20px;
    }

        .ti-card h6 {
            font-size: 1.1rem;
        }

        .ti-card p {
            font-size: 0.95rem;
        }
}

.about-para {
    font-size: 16px;
    margin: 18px 60px;
}
.sidebar-menu {
    position: fixed;
    top: 107px;
    left: -70%; /* hide sidebar left out of screen */
    width: 70%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1050; /* above other content */
    padding: 1rem;
}

    /* When sidebar is active (visible) */
    .sidebar-menu.active {
        left: 0;
    }

/* Overlay that dims rest of the page */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1040;
}

    /* Show overlay */
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

@media (min-width: 992px) {
    .sidebar-menu {
        position: static;
        width: auto;
        height: auto;
        left: 0 !important; /* make sure it's not hidden */
        background: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .sidebar-overlay {
        display: none !important;
    }

    .navbar-nav {
        flex-direction: row;
        /*   gap: 1rem;*/
    }

    #menuToggle {
        display: none;
    }
}
/*seo-content - 18-08-2025*/
.content-seo {
    margin: 0px 30px;
}

.content-head {
    font-size: 11px;
    color: #939393;
    margin-bottom: 8px;
}

.content-subhead {
    font-size: 11px;
    color: #939393;
    margin-top: 8px;
    margin-bottom: 4px;
}


.content-p {
    font-size: 10px;
    color: #939393;
    margin: 6px 0;
}

ul.content-p {
    padding-left: 16px;
    margin-top: 0px;
    margin-bottom: 4px;
}

    ul.content-p li {
        margin-bottom: 2px;
    }

.learn-more {
    background-color: #552613;
    color: white !important;
    padding: 5px 5px;
    border-radius: 5px;
}
.btn-style{
    background-color:#552613;
    padding:5px;
    border-radius:5px;
    color:white;
}
/* Srinivas Mavilla added for fabric image fixed size */
.image-container {
    width: 300px;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* optional placeholder background */
    border: 1px solid #ccc; /* optional border */
    margin: auto; /* center in column */
}

.fabric-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Use "contain" if you don't want to crop */
}

/* Srinivas Mavilla : End here */
