* {
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

/* header  */

header {
    background: linear-gradient(45deg, #2d315f, #2d315f);
}

/* hero section  */

.hero-section {
    position: relative;
    min-height: 80vh;
    padding-top: 4%;
    padding-bottom: 6%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: url('../shopImages/IMG_4494.jpg') center center / cover no-repeat;
    background-color: #000;
    background-attachment: scroll;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-section .container,
.hero-section .row,
.hero-section .hero_sec_con {
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 7%;
}

.hero-subheading {
    font-size: 24px;
    color: #f5f5f5;
    margin-bottom: 12%;
}

.hero_sec_con {
    z-index: 2;
}

.hero-contact {
    padding-top: 5%;
}

.hero-contact a {
    color: #FFD24D;
}

.hero-contact a {
    font-size: 16px;
    color: orange;
    text-decoration: none;
}

.hero-contact a:hover {
    text-decoration: underline;
}

.wrapper {
    display: flex;
    justify-content: left;
}

.cta {
    display: flex;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 26px;
    color: white;
    background: #2d315f;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
    margin-right: 45px;
    box-shadow: 10px 10px 0 orange;
}

.cta:focus {
    outline: none;
}

.cta {
    transition: 0.5s;
    box-shadow: 10px 10px 0 orange;
}

.cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}

span {
    transform: skewX(15deg)
}

.cta span:nth-child(2) {
    width: 20px;
    margin-left: 30px;
    position: relative;
    /* margin-bottom: 10px;
    top: 2px; */
}

path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta path.three {
    animation: color_anim 1s infinite 0.2s;
}

.cta path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
    0% {
        fill: white;
    }

    50% {
        fill: orange;
    }

    100% {
        fill: white;
    }
}

.hero-banner {
    --s: 150px;
    --g: 10px;
    display: grid;
    margin: calc(var(--s) + var(--g));
    z-index: 1;
}

@media only screen and (max-width: 959px) {
    .hero-banner {
        --s: 125px;
        --g: 10px;
        display: grid;
        margin: calc(var(--s) + var(--g));
    }
}

@media only screen and (max-width: 767px) {
    .hero-section {
        min-height: 65vh;
        padding-top: 18%;
        padding-bottom: 8%;
        background-position: center top;
    }

    .hero-section .hero_sec_con {
        width: 100%;
        padding: 0 1rem;
    }

    .wrapper {
        margin-top: 18%;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-subheading {
        font-size: 18px;
    }

    .cta {
        font-size: 20px;
        padding: 12px 18px;
        margin-right: 0;
    }
}

.hero-banner>img {
    grid-area: 1/1;
    width: var(--s);
    aspect-ratio: 1.15;
    object-fit: cover;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    transform: translate(var(--_x, 0), var(--_y, 0)) scale(var(--_t, 1));
    cursor: pointer;
    filter: grayscale(80%);
    transition: .2s linear;
}

.hero-banner>img:hover {
    filter: grayscale(0);
    z-index: 1;
    --_t: 1.2;
}

.hero-banner>img:nth-child(1) {
    --_y: calc(-100% - var(--g))
}

.hero-banner>img:nth-child(7) {
    --_y: calc(100% + var(--g))
}

.hero-banner>img:nth-child(3),
.hero-banner>img:nth-child(5) {
    --_x: calc(-75% - .87*var(--g))
}

.hero-banner>img:nth-child(4),
.hero-banner>img:nth-child(6) {
    --_x: calc(75% + .87*var(--g))
}

.hero-banner>img:nth-child(3),
.hero-banner>img:nth-child(4) {
    --_y: calc(-50% - .5*var(--g))
}

.hero-banner>img:nth-child(5),
.hero-banner>img:nth-child(6) {
    --_y: calc(50% + .5*var(--g))
}

/* product showcase */

.product-showcase {
    padding-bottom: 7%;
    background-color: #FFFFFF;
}

.product-showcase img {
    color: #161D6F;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    margin: 1%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d315f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: orange;
    border-color: #FF7F00;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: orange;
    border-color: #FFA500;
}

@media (min-width: 768px) {
    .product-card {
        flex-basis: 30%;
        max-width: 30%;
    }
}

#showMoreBtnContainer {
    display: none;
}

/* .product-showcase {
    background-color: #FFFFFF;
}

.product-showcase h3{
    color: #2d315f;
}

#productList {
    list-style: none;
    padding: 0;
}

#productList .list-group-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#productList .list-group-item:hover {
    background-color: #f0f0f0;
}

.product-card {
    display: none;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 20px;
    margin-left: 5%;
    margin-bottom: 5%;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media only screen and (max-width: 959px) {
    .product-card {
        margin-left: 9%;

    }
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.product-card .title {
    font-weight: bold;
    margin-bottom: 10px;
}

.product-card .description {
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 10px;
}

.product-card.show {
    display: block;
    transform: translateY(0);
}

.list-group-item.active {
    background-color: #2d315f;
    color: #fff;
}

.list-group-item.active:hover {
    background-color: #4f58bb !important;
    color: #fff;
}

.product-card.hide {
    display: none;
    transform: translateY(-20px);
    opacity: 0;
} */

/* Why Kamala Traders */

.why-kamala-traders {
    color: #2d315f;
}

.why-kamala-traders h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding-top: 4%;
    color: #2d315f;
}

.why-kamala-traders p {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    padding-top: 3%;
    color: #000;
}

.main-factors {
    color: #000;
    padding: 50px 0;
    margin-top: 3%;
}

.main-factors h3 {
    font-size: 24px;
    color: #2d315f;
    font-weight: bold;
}

.main-factors p {
    font-size: 16px;
    line-height: 1.5;
}

.main-factors img {
    margin-bottom: 15px;
    color: orange;
}

.why-kamala-traders-section {
    color: #999;
    font: 400 16px/1.5 exo, ubuntu, "segoe ui", helvetica, arial, sans-serif;
    text-align: center;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABnSURBVHja7M5RDYAwDEXRDgmvEocnlrQS2SwUFST9uEfBGWs9c97nbGtDcquqiKhOImLs/UpuzVzWEi1atGjRokWLFi1atGjRokWLFi1atGjRokWLFi1af7Ukz8xWp8z8AAAA//8DAJ4LoEAAlL1nAAAAAElFTkSuQmCC") repeat 0 0;
}

/* gallery section  */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 6px;
    margin: 0;
    padding: 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.item-wide {
    grid-column: span 2;
}

.gallery-item.item-tall {
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
    border-radius: 8px;
}

.gallery-image:hover {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .gallery-item.item-large,
    .gallery-item.item-wide,
    .gallery-item.item-tall {
        grid-column: span 2;
        grid-row: span 1;
    }
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* contact us */

.contact-section {
    padding: 60px 0;
}

.contact-details {
    margin-bottom: 40px;
}

.map-embed {
    width: 100%;
    height: 400px;
    border: none;
    max-height: 200px;
}

/* company statistics */

.number-count {
    text-align: center;
    padding: 50px 0;
    background-color: #2d315f;
    color: white;
}

.counter-value {
    font-size: 48px;
    font-weight: bold;
    display: inline-block;
}

.plus {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
}

h4 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: normal;
}

.counter-value-wrapper {
    display: inline-block;
}

/* brands section  */

.brands {
    text-align: center;
}

.brands .carousel-item {
    padding: 20px 0;
}

.brands .carousel-item img {
    max-width: 100px;
    margin: 0 15px;
}

.brands .carousel-indicators {
    bottom: -30px;
}

.brands .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 0%;
    margin: 7px;
}

.brands .carousel-indicators .active {
    background-color: #555;
    border-radius: 0%;
}


@media only screen and (max-width: 959px) {
    .brands .carousel-item .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .brands .carousel {
        padding: 15px 30px !important;
    }

}

/* testimonial */

.block-title h2 {
    color: #2d315f;
}

.col-center {
    margin: 0 auto;
    float: none !important;
}

.carousel {
    padding: 25px 80px;
}

.carousel .carousel-item {
    text-align: center;
    overflow: hidden;
}

/* .carousel .carousel-item .img-box {
	width: 135px;
	height: 135px;
	margin: 0 auto;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 50%;
}
.carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
} */
.carousel .testimonial {
    padding: 45px 0 10px;
}

.carousel .overview {
    font-style: italic;
}

.carousel .overview b {
    text-transform: uppercase;
    color: orange;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
    background: none;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 68px;
    line-height: 42px;
    position: absolute;
    display: inline-block;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 12px;
    height: 12px;
    margin: 1px 3px;
    border-radius: 50%;
    border: none;
}

.carousel-indicators li {
    background: #2d315f;
    border-color: transparent;
    box-shadow: inset 0 2px 1px rgba(37, 74, 197, 0.2);

}

.carousel-indicators li.active {
    background: #2d315f;
    box-shadow: inset 0 2px 1px rgba(37, 74, 197, 0.2);
}

/* transport service */

.transportation-service h3 {
    font-size: 24px;
    color: #2d315f;
    font-weight: bold;
}

.transportation-service .hover-eff:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: .3s all ease-in-out;
}

/* footer  */

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

@media (min-width: 768px) {
    .footer-cta .col-md-6 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-cta .single-cta {
        margin-bottom: 30px;
    }
}

.contact-us-title {
    padding-bottom: 4%;
}

ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    position: relative;
    background-color: #2d315f;
    color: #FFFFFF;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta {
    margin-left: auto;
    margin-right: auto;
}

.single-cta i {
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: orange;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #FFFFFF;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: orange;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;

}

.footer-widget ul li a:hover {
    color: orange;
}

.footer-widget ul li a {
    text-transform: capitalize;
    color: #FFFFFF;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    background-color: #2d315f;
    color: #FFFFFF;
    width: 100%;
    padding: 14px 28px;
    border: 1px solid #FFFFFF;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: orange;
    padding: 13px 20px;
    border: 1px solid #FFFFFF;
    top: 0;
}


.subscribe-form button:hover {
    background-color: #FFFFFF;
    color: #2d315f;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: orange;
}

.copyright-text a:hover {
    color: #FFFFFF;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: orange;
}

.footer-menu li a {
    font-size: 14px;
    color: #FFFFFF;
}

.striped-heading {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.striped-heading::before,
.striped-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 3px;
    background-color: orange;
}

.striped-heading::before {
    left: -100px;
}

.striped-heading::after {
    right: -100px;
}
.btn-primary {
    background-color: orange;
    border-color: orange;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: rgb(238, 163, 23);
    border-color: rgb(238, 163, 23);
}

@media screen and (max-width: 575px){
    .striped-heading {
        display: inline-block;
        position: relative;
        padding: 0 20px;
    }
    
    .striped-heading::before,
    .striped-heading::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 30px;
        height: 3px;
        background-color: orange;
    }
    
    .striped-heading::before {
        left: -30px;
    }
    
    .striped-heading::after {
        right: -30px;
    }
}

@media screen and (max-width: 376px){
    .striped-heading {
        display: inline-block;
        position: relative;
        padding: 0 20px;
    }
    
    .striped-heading::before,
    .striped-heading::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 15px;
        height: 3px;
        background-color: orange;
    }
    
    .striped-heading::before {
        left: -15px;
    }
    
    .striped-heading::after {
        right: -15px;
    }
}

@media only screen and (max-width: 959px) {
    .hero-banner {
        --s: 110px;
    }
}

.hero-contact{
    font-weight: bold;
}

.location{
    display: flex;
    justify-content: center;
}