@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: "Work Sans", sans-serif;
    overflow-x: hidden;
    padding-top: 80px;
    /* Space for fixed nav */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

.sec_padding {
    padding: 80px 0;
}

.sec-title-h2 {
    font-size: 48px;
}


.swiper-pagination {
    background-color: #f5f4ee81 !important;
    display: block;
    width: fit-content !important;
    right: 0;
    margin: auto;
    border-radius: 50px;
    padding: 2px 10px 0 10px;
}

.swiper-pagination-bullet {
    height: 14px !important;
    width: 14px !important;
    border-radius: 50px;
    transition: .3s ease-in-out;
}

.swiper-pagination-bullet-active {
    width: 24px !important;
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: linear-gradient(180deg,
            #c69b31 0%,
            #ffda7c 100%);
}



@media (max-width: 767px) {
    .sec_padding {
        padding: 50px 0;
    }

    .sec-title-h2 {
        font-size: 28px;
    }
}

.word {
    display: inline-block;
    word-break: break-all;
    will-change: transform, opacity;
}



.bg-black {
    background-color: #000;
}

.bg-gray {
    background-color: #fff4d4;
}

.rounded-xl {
    border-radius: 20px;
}

/* Navigation Container */

.top-bar {
    background-color: #ffda7c;
}

.top-bar a {
    color: #000;
}

.static-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Brand/Logo Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c69b31 0%, #ffab4b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

/* Navigation Links */
.nav-link {
    position: relative;
    display: inline-block;
    padding: 0.8rem 1.5rem 0rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    overflow: hidden;
}

/* .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(135deg, #c69b31 0%, #764ba2 100%);
        transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    } */

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #c69b31;
}

/* Link Text Container */
.link-text {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    line-height: 1.2;
}

/* Text Split Animation - Individual Letters */
.nav-link .link-text span {
    display: inline-block;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        color 0.3s ease;
    transform-origin: 50% 50%;
}

/* Hover Effect - Split Animation (Letters move up and rotate) */
.nav-link:hover .link-text span {
    transform: translateY(-120%) rotateX(90deg) scale(0.8);
    color: #c69b31;
    opacity: 0;
}

/* Create duplicate text for the flip effect */
.nav-link .link-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    transform: translateY(120%) rotateX(-90deg) scale(0.8);
    transform-origin: 50% 50%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #c69b31;
    font-weight: 600;
    opacity: 0;
    white-space: nowrap;
}

.nav-link:hover .link-text::after {
    transform: translateY(0) rotateX(0deg) scale(1);
    opacity: 1;
}

/* Stagger animation for each letter - more dynamic */
.nav-link .link-text span:nth-child(1) {
    transition-delay: 0s;
}

.nav-link .link-text span:nth-child(2) {
    transition-delay: 0.03s;
}

.nav-link .link-text span:nth-child(3) {
    transition-delay: 0.06s;
}

.nav-link .link-text span:nth-child(4) {
    transition-delay: 0.09s;
}

.nav-link .link-text span:nth-child(5) {
    transition-delay: 0.12s;
}

.nav-link .link-text span:nth-child(6) {
    transition-delay: 0.15s;
}

.nav-link .link-text span:nth-child(7) {
    transition-delay: 0.18s;
}

.nav-link .link-text span:nth-child(8) {
    transition-delay: 0.21s;
}

.nav-link .link-text span:nth-child(9) {
    transition-delay: 0.24s;
}

.nav-link .link-text span:nth-child(10) {
    transition-delay: 0.27s;
}

.nav-link .link-text span:nth-child(11) {
    transition-delay: 0.3s;
}

.nav-link .link-text span:nth-child(12) {
    transition-delay: 0.33s;
}

.nav-link .link-text span:nth-child(13) {
    transition-delay: 0.36s;
}

.nav-link .link-text span:nth-child(14) {
    transition-delay: 0.39s;
}

.nav-link .link-text span:nth-child(15) {
    transition-delay: 0.42s;
}

.nav-link .link-text span:nth-child(n+16) {
    transition-delay: 0.45s;
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background: #ffab4b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mobile-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.toggle-line {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-toggle.active .toggle-line-1 {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .toggle-line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .toggle-line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Devices */
@media (max-width: 968px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 40px;
    }

    .nav-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .logo-img {
        height: 35px;
    }

    /* Hide desktop menu, show mobile toggle */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 80%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }

    .mobile-toggle {
        display: flex;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .nav-container {
        padding: 0.6rem 0.8rem;
    }

    .logo-img {
        height: 60px;
    }

    .brand-text {
        font-size: 0.9rem;
        display: none;
    }

    .mobile-toggle {
        width: 55px;
        height: 35px;
        gap: 4px;
    }

    .toggle-line {
        width: 20px;
        height: 2.5px;
    }

    .nav-menu {
        top: 120px;
        height: calc(100vh - 60px);
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px;
        color: #000;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}


.banner {
    margin-top: 75px;
    overflow: hidden;
    padding: 0 15px;
    border-radius: 24px;
}

.banner_image {
    height: 550px;
    width: 100%;
    border-radius: 24px;
}

.banner_image img {
    height: 100%;
    width: 110%;
    object-fit: cover;
    object-position: center center;
    border-radius: 24px;
    will-change: transform;

}

@media (max-width: 480px) {

    .banner {
        margin-top: 75px;
        overflow: hidden;
        padding: 0 6px;
        border-radius: 24px;
    }

    .banner_image {
        height: 240px;
        width: 100%;
        border-radius: 24px;
    }
}

.big-image {
    height: 450px;
    background-image: url(../image/Home_Lighting.webp);
    background-position: center center;
    background-size: 110% auto;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
}

.button {
    appearance: none;
    -webkit-appearance: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    cursor: pointer;
    width: fit-content;
    color: #000;
    border: 1px solid #ffffff00;

    background-color: transparent;
    background-size: 100% 100%, 0% 100%;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: linear-gradient(#c69b31, #f3e6bf), linear-gradient(transparent, transparent);

    padding: 10px 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 18px;

    position: relative;

    transition:
        background-size 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        background-position 0.45s step-end,
        color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.button:hover {
    color: #fff;
    border: 1px solid #fff;
    background-image: linear-gradient(#fff, #fff), linear-gradient(transparent, transparent);
    background-size: 0% 100%, 100% 100%;
    background-position: left center;
}


.button-2 {
    appearance: none;
    -webkit-appearance: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    cursor: pointer;
    width: fit-content;
    color: #000;
    border: 1px solid #ffffff00;

    background-color: transparent;
    background-size: 100% 100%, 0% 100%;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: linear-gradient(#c69b31, #f3e6bf), linear-gradient(transparent, transparent);

    padding: 10px 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 18px;

    position: relative;

    transition:
        background-size 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        background-position 0.45s step-end,
        color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.button-2:hover {
    color: #000;
    border: 1px solid #000;
    background-image: linear-gradient(#fff, #fff), linear-gradient(transparent, transparent);
    background-size: 0% 100%, 100% 100%;
    background-position: left center;
}


.grid-card {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 20px;
    transition: .4s all;
    overflow: hidden;
}

.grid-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    border-radius: 20px;
    transition: .4s all;
}

.grid-card:hover img {
    transform: scale(1.05);
}

.grid-card .content {
    z-index: 9;
    position: relative;
    height: 100%;
    background-color: #00000050;
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end
}

.grid-card .content h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.stats {
    background-color: #f5f4ee;
    height: 100%;
}

.stats h2 {
    font-size: 60px;
    padding: 40px 30px;
    border-bottom: 1px solid #c6c6c6;
    background: linear-gradient(90deg, #c69b31, #f3e6bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.stats p {
    padding: 20px 30px;
    font-size: 20px;
    line-height: 1.3;
}

.stat-section {
    background-color: transparent;
    transition: background-color 0.9s ease-in-out;
}

.video-sec .vid-container {
    height: 550px;
    width: 100%;
    border-radius: 20px;
}

.video-sec .vid-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.product-showcase .product-grid {
    height: 280px;
    position: relative;
}

.product-showcase .product-grid img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.product-showcase .product-grid .content {
    height: 100%;
    background-color: #00000050;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.product-showcase .product-grid .content h3 {
    color: #fff;
    font-size: 20px;
}

.project_gal img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.text-area {
    border-right: 1px solid #c69b31;
    padding-right: 30px;
}

.testimonials .swiper-slide {
    height: 300px !important;
}

.testimonials-content {
    padding: 30px 50px !important;
}

.testimonials-content h3 {
    font-size: 22px;
    margin-bottom: 30px;
}

.testimonials-content h4 {
    font-size: 28px;
    background: linear-gradient(90deg, #c69b31, #f3e6bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-sec img {
    width: 110px;
}

.footer-sec h3 {
    font-size: 24px;
    background: linear-gradient(90deg, #c69b31, #f3e6bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.footer-sec ul {
    padding-left: 0;
}

.footer-sec ul li {
    list-style: none;
    padding-bottom: 15px;
    color: #fff;
}

.footer-sec ul li a {
    text-decoration: none;
    color: #fff;
}


.connect-icon {
    position: fixed;
    cursor: pointer;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.connect-icon img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
}

input {
    color: #000;
}

.phone-sec {
    display: flex;
}

.phone-sec .country-code {
    width: 20% !important;
    border: none !important;
    top: 1px;
    background-color: transparent;
    border-right: 1px solid #e1e1e1;
}

.iti {
    position: absolute;
    width: 20% !important;
}

input:focus {
    box-shadow: none !important;
}

.form__select select {
    height: 50px;
    margin-top: 10px;
}

.form__select select:focus {
    box-shadow: none !important;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
    width: 100%;
    background: transparent;
    border: none;
    height: 50px;
    border: 1px solid #ffab4b;
    border-radius: 0px;
    color: #000;
}

select {
    width: 100%;
    background: transparent;
    border: none;
    height: 50px;
    border: 1px solid #ffab4b;
    border-radius: 0px;
    color: #000;
    padding: 0 10px;
}

/* .input-group #phone {
  color: white;
} */

.phone-sec .phn-num {
    width: 100% !important;
    height: 50px;
    border: none;
    background-color: transparent;
    border: 1px solid #ffab4b;
    padding-left: 110px !important;
    outline: 0 !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 1px;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
    border-right: 1px solid #d5d5d5;
    padding: 0 11px 0 8px;
    height: 50px;
}

.iti__arrow {
    opacity: 0;
}

.select2-container .select2-selection--single {
    height: 50px !important;
    padding-left: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    color: #757575;
    font-family: var(--Manrope);
    font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 30px;
    right: 12px;
    width: 21px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent;
    border-style: solid;
    border-width: 10px 6px 0 7px;
}

.flag-icon.flag-icon-squared {
    width: 1em;
    margin-right: 8px;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: -1px;
    right: 0;
    padding: 0 !important;
}

.select2-search__field:focus-visible {
    outline: 0 !important;
}

.select2-search--dropdown .select2-search__field {
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
}

#mobile_code.form-select {
    padding-top: 0.9rem;
}

.theme_btn_3 {
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    color: #fff;
    background: linear-gradient(180deg,
            hsl(33, 56%, 63%) 0%,
            #a26b3f 40%,
            #7c4a25 75%,
            #4b2a14 100%);
}

.contact_image img {
    height: 100%;
    object-fit: cover;
}


.why-card {
    background-color: #fcf6e3;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    transition: .4s all;
}

.why-card:hover {
    background-color: #f3e6bf;
    box-shadow: 0 0 50px 1px #00000025;
}

.why-card img {
    width: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.why-card p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
}


@media (max-width: 767px) {
    .video-sec .vid-container {
        height: 350px;
        width: 100%;
        border-radius: 20px;
    }

    .why-card {
        background-color: #fcf6e3;
        border-radius: 12px;
        padding: 20px 10px;
    }

    .why-card p {
        font-size: 14px;
    }

    .product-showcase {
        gap: 10px;
    }

    .project_gal img {
        height: 200px;
    }

    .testimonials-content {
        padding: 10px 30px 50px 30px !important;
    }

    .testimonials-content h3 {
        font-size: 18px;
        margin-top: 50px;
    }

    .contact_image img {
        height: 400px;
    }

    .footer-sec ul {
        margin-bottom: 0 !important;
    }
}


/* about css  */

.breadcrumb {
    height: 370px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 63px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.breadcrumb h1 {
    font-size: 60px;
    color: #fff;
    margin-top: auto;
}

.aboutImgOuter .aboutImgWrap {
    width: 100%;
    height: 100%;
    margin: 0 -2px;
    --bx-w: calc(100% / 2);
    display: flex;
    flex-wrap: nowrap;
}

@media only screen and (min-width: 768px) {
    .aboutImgOuter .aboutImgWrap {
        margin: 0 -5px;
    }
}

.aboutImgOuter .aboutImgWrap>.item {
    height: 100%;
    width: 60px;
    padding: 2px;
    transition: width 0.4s ease;
}

@media only screen and (min-width: 576px) {
    .aboutImgOuter .aboutImgWrap>.item {
        width: 120px;
    }
}

@media only screen and (min-width: 768px) {
    .aboutImgOuter .aboutImgWrap>.item {
        padding: 5px;
    }
}

@media only screen and (min-width: 992px) {
    .aboutImgOuter .aboutImgWrap>.item {
        width: 120px;
        padding: 10px;
    }
}

.aboutImgOuter .aboutImgWrap>.item.active {
    width: 100%;
}

.aboutImgOuter .aboutImgWrap>.item.active .aboutBx .overlay .title {
    opacity: 1;
    transition-delay: 0.3s;
}

.aboutImgOuter .aboutImgWrap>.item:hover {
    width: 100%;
}

.aboutImgOuter .aboutImgWrap>.item .aboutBx {
    display: block;
    height: 250px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media only screen and (min-width: 540px) {
    .aboutImgOuter .aboutImgWrap>.item .aboutBx {
        height: 290px;
    }
}

@media only screen and (min-width: 1200px) {
    .aboutImgOuter .aboutImgWrap>.item .aboutBx {
        height: 300px;
    }
}

@media only screen and (min-width: 1441px) {
    .aboutImgOuter .aboutImgWrap>.item .aboutBx {
        height: 420px;
    }
}

.aboutImgOuter .aboutImgWrap>.item .aboutBx .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.aboutImgOuter .aboutImgWrap>.item .aboutBx .overlay .title {
    position: absolute;
    bottom: 35px;
    font-size: 16px;
    opacity: 0;
    color: rgba(255, 255, 255, 0.8);
    left: 20px;
}

@media only screen and (min-width: 576px) {
    .aboutImgOuter .aboutImgWrap>.item .aboutBx .overlay .title {
        left: 30px;
    }
}

@media only screen and (min-width: 992px) {
    .aboutImgOuter .aboutImgWrap>.item .aboutBx .overlay .title {
        left: 40px;
        font-size: 18px;
    }
}

@media only screen and (min-width: 1441px) {
    .aboutImgOuter .aboutImgWrap>.item .aboutBx .overlay .title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1551px) {
    .aboutImgOuter .aboutImgWrap>.item .aboutBx .overlay .title {
        font-size: 24px;
        left: 60px;
    }
}

.aboutImgOuter .aboutImgWrap>.item .aboutBx .imgWrap {
    display: block;
    width: 100%;
    height: 100%;
}

.aboutImgOuter .aboutImgWrap>.item .aboutBx .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission {
    background-color: #673ab7;
    height: 550px;
    border-radius: 10px;
    padding: 40px;
}

.mission-sec img {
    height: 550px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.mission h6 {
    position: relative;
    padding-left: 26px;
    font-size: 20px;
    color: #fff;
}

.mission h6::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 14px;
    width: 14px;
    border-radius: 50px;
    background-color: #c69b31;
}

.mission p {
    font-size: 35px;
    color: #fff;
    line-height: 1.2;
    margin-top: 20px;
}


.vission {
    background-color: #009688;
    height: 550px;
    border-radius: 10px;
    padding: 40px;
}

.vission-sec img {
    height: 550px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.vission h6 {
    position: relative;
    padding-left: 26px;
    font-size: 20px;
    color: #fff;
}

.vission h6::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 14px;
    width: 14px;
    border-radius: 50px;
    background-color: #c69b31;
}

.vission p {
    font-size: 35px;
    color: #fff;
    line-height: 1.2;
    margin-top: 20px;
}

.list {
    display: flex;
    gap: 10px;
    flex-direction: row;
    padding: 30px;
    background-color: #f5f4ee;
    border-radius: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.list img {
    width: 30px;
    object-fit: contain;
}

.list p {
    margin-bottom: 0 !important;
    font-size: 18px;
    line-height: 1.7;
}

.list h6 {
    font-size: 18px;
    font-weight: 500;
}

.list a {
    font-size: 18px;
    text-decoration: none;
    color: #000;
}

.tab_pills {
    background-color: #746fa71a;
    padding: 14px 14px;
    border-radius: 10px;
    position: sticky;
    position: -webkit-sticky;
    top: 40px;
}

.product-showcase .nav-pills .nav-link {
    color: #000 !important;
    padding: 10px 16px;
    text-align: left;
}

.product-showcase .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #355493 !important;
}

.product-showcase .tab-content {
    background-color: #746fa71a;
    padding: 20px;
    border-radius: 10px;
}

.product-showcase .p-card {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    height: 100%;
    transition: .4s all;
}

.product-showcase .p-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: .4s all;
}

.product-showcase .p-card:hover img {
    transform: scale(1.1);
}


.product-showcase .p-card h6 {
    font-size: 20px;
    margin-bottom: 5px;
}

.product-showcase .p-card p {
    margin-bottom: 0;
    text-transform: uppercase;
    color: #888;
}

.product-showcase .p-card ul {
    padding-left: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.product-showcase .p-card ul li {
    list-style: none;
    font-size: 16px;
    border-radius: 5px;
    font-weight: 600;
}

.product-showcase .content {
    display: flex;
    gap: 14px;
    align-items: end;
}

.product-showcase .content .left {
    width: 60%;
}

.product-showcase .content .right {
    width: 40%;
}

.product-showcase .custom-color-variant .color-variant-products {
    padding-left: 0;
}

.product-showcase .custom-color-variant .color-variant-products .related-item-card.black {
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    background-color: #000;
    border-radius: 50px;
    cursor: pointer;
}

.product-showcase .custom-color-variant .color-variant-products .related-item-card.white {
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 50px;
    cursor: pointer;
}

.product-showcase .custom-color-variant .color-variant-products .related-item-card.gray {
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    background-color: #d5d5d5;
    border-radius: 50px;
    cursor: pointer;
}

.product-showcase .custom-color-variant .color-variant-products .related-item-card.red {
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    background-color: #ff0000;
    border-radius: 50px;
    cursor: pointer;
}



.team_sec .team-area h2 {
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    font-size: 24px;
    color: #000;
}

.team_sec .team-area h2 span {
    display: block;
    font-weight: 400;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .team_sec .team-area {
        margin-bottom: 30px;
    }

    .team_sec .team-area img {
        width: 100%;
    }

    .team_sec .team-area h2 {
        text-align: center;
        font-weight: 600;
        margin-top: 15px;
        font-size: 18px;
        color: #000;
    }

    .product-showcase .content {
        display: flex;
        gap: 0px;
        align-items: self-start;
        flex-direction: column;
    }

    .product-showcase .content .left {
        width: 100%;
    }

    .product-showcase .content .right {
        width: 100%;
    }
    .product-showcase .col-6{
        padding: 0 5px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team_sec .team-area {
        margin-bottom: 30px;
    }

    .team_sec .team-area img {
        width: 100%;
    }
}



@media only screen and (max-width: 768px) {

    .breadcrumb {
        height: 200px;
    }

    .breadcrumb h1 {
        font-size: 32px;
        color: #fff;
        margin-top: auto;
    }

    /* Mobile only */
    @media (max-width: 767px) {
        .product-showcase .tab_pills {
            display: flex;
            flex-direction: row !important;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 10px;
            padding-bottom: 10px;
            flex-wrap: nowrap;
        }

        .product-showcase .tab_pills .nav-link {
            flex: 0 0 auto;
            scroll-snap-align: start;
            white-space: nowrap;
            width: auto;
            padding: 5px 10px !important;
            font-size: 14px;
        }

        .product-showcase .tab-content {
            background-color: #746fa71a;
            padding: 10px 17px;
            border-radius: 10px;
        }

        .product-showcase .p-card img {
            height: 100px;
            width: 100%;
            object-fit: cover;
        }

        .product-showcase .p-card h6 {
            font-size: 16px;
        }

        .product-showcase .p-card ul li {
            list-style: none;
            font-size: 12px;
            padding: 2px 6px;
            background-color: #f3e6bf;
            border-radius: 5px;
        }

        .mission {
            background-color: #673ab7;
            height: auto;
            border-radius: 0px;
            padding: 40px;
        }

        .mission p {
            font-size: 20px;
            color: #fff;
            line-height: 1.2;
            margin-top: 20px;
        }

        .mission-sec img {
            height: auto;
            object-fit: cover;
            width: 100%;
            margin-top: 30px;
            border-radius: 10px;
        }

        .vission {
            background-color: #009688;
            height: auto;
            border-radius: 0px;
            padding: 40px;
        }

        .vission p {
            font-size: 20px;
            color: #fff;
            line-height: 1.2;
            margin-top: 20px;
        }

        .product-showcase .p-card {
            height: 100%;
        }
    }



}