/************************************* other-swiper-wrap css start *************************************/
/*========================================
    other-swiper-wrap swiper-buttons css
========================================*/
.other-swiper-wrap {
    position: relative;
}
.other-swiper-wrap .swiper-buttons {
    margin-top: 30px;
    text-align: center;
    line-height: 0;
}
.other-swiper-wrap .swiper-buttons .swiper-buttons-wrap {
    display: inline-flex;
}
@media (min-width: 768px) {
    .other-swiper-wrap .swiper-buttons {
        margin-top: 0px;
    }
    .other-swiper-wrap .swiper-buttons .swiper-buttons-wrap {
        display: block;
    }
}

/* other-swiper-wrap swiper-buttons navigation css */
.other-swiper-wrap .swiper-buttons button {
    color: var(--secondary-font-color);
    font-size: 16px;
    width: 40px;
    height: 40px;
    background-color: var(--extra-font-color);
    margin-right: 10px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: 100%;
    box-shadow: rgba(var(--box-shadow-outer),var(--box-shadow-outer-opacity));
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.other-swiper-wrap .swiper-buttons button:last-child:last-child {
    margin: 0px;
}
.other-swiper-wrap .swiper-buttons button:hover {
    color: var(--extra-font-color);
    background-color: var(--dominant-font-color);
    border-color: var(--dominant-font-color);
}
@media (min-width: 768px) {
    .other-swiper-wrap .swiper-buttons button {
        position: absolute;
        z-index: 1;
        margin-right: 0px;
    }
    .other-swiper-wrap .swiper-buttons button.swiper-prev {
        left: 0;
        transform: translateX(-50%);
    }
    .other-swiper-wrap .swiper-buttons button.swiper-next {
        right: 0;
        transform: translateX(50%);
    }
}
@media (min-width: 1200px) {
    .other-swiper-wrap .swiper-buttons button {
        width: 48px;
        height: 48px;
    }
}

/*========================================
    other-swiper-wrap swiper-dot css
========================================*/
.other-swiper-wrap .swiper-dots {
    margin-top: 30px;
    line-height: 0;
}
@media (min-width: 1200px) {
    .other-swiper-wrap .swiper-dots {
        margin-top: 50px;
    }
}

/* other-swiper-wrap swiper-dot-pagination css */
.other-swiper-wrap .swiper-dots .swiper-pagination {
    width: unset;
    position: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -5px 0px 0px -5px;
}
.other-swiper-wrap .swiper-dots .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: transparent;
    margin: 5px 0px 0px 5px;
    opacity: 1;
    border: 1px solid var(--dominant-font-color);
}
.other-swiper-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--dominant-font-color);
    border-color: var(--dominant-font-color);
}
/************************************* other-swiper-wrap css end *************************************/

/************************************* other-tab-title css start *************************************/
/*====================================
    other-tab-title css
====================================*/
.other-tab-title span {
    border-bottom: 2px solid;
}
/************************************* other-tab-title css end *************************************/

/************************************* other-tab css start *************************************/
/*====================================
    other-tab title css
====================================*/
.other-tab a[aria-expanded="true"] {
    color: var(--dominant-font-color);
}
.other-tab a[aria-expanded="true"] span.other-tab-icon i::before {
    content: "\f1af";
}
/************************************* other-tab css end *************************************/

/************************************* index css start *************************************/
/*====================================
    question-index css
====================================*/
.question-index {
    counter-reset: Questions;
}
.question-index .question-sub-index::before {
    counter-increment: Questions;
    content: "Q." counter(Questions) " ";
}

/*====================================
    number-index css
====================================*/
.number-index {
    counter-reset: number;
}
.number-index .number-sub-index {
    counter-reset: sub-number;
}
.number-index .number-sub-index::before {
    counter-increment: number;
    content: counter(number) ". ";
}
.number-index .p-number::before {
    counter-increment: sub-number;
    content: counter(number) "."counter(sub-number)" ";
}
/************************************* index css end *************************************/

/************************************* about-us css start *************************************/
/*====================================
    about-testimonial css
====================================*/
.about-testimonial {
    position: relative;
    z-index: 1;
}
.about-testimonial::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: var(--section-before-height);
    background-color: var(--extra-bgcolor);
    z-index: -1;
}

/* about-testimonial swiper css */
.about-testimonial .about-testislider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}

/* about-testi-content css */
.about-testimonial .about-testislider p {
    line-height: 28px;
}
@media (min-width: 1200px) {
    .about-testimonial .about-testislider p {
        line-height: 36px;
    }
}

/*====================================
    about-us-banner css
====================================*/
.about-us-banner {
    position: relative;
    z-index: 1;
}
.about-us-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 50%;
    background-color: var(--extra-bgcolor);
    z-index: -1;
}
/************************************* about-us css end *************************************/

/************************************* about-us2 css start *************************************/
/*====================================
    about-story-video css
====================================*/
.about-us .about-story-video {
    z-index: 1;
}
.about-us .about-story-video::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(var(--border-color),var(--border-opacity));
    z-index: -1;
}
/************************************* about-us2 css end *************************************/

/************************************* contact-us css start *************************************/
/*====================================
    contact-location css
====================================*/
.contact-location.section-overlay {
    margin-top: -30px;
}

/* contact-location-location swiper css */
.contact-location .contact-locationslider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}
@media (min-width: 768px) {
    .contact-location .contact-locationslider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 50%;
    }
}
@media (min-width: 1200px) {
    .contact-location .contact-locationslider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}

/*====================================
    contact-map css
====================================*/
.contact-map iframe {
    height: 320px;
}
@media (min-width: 768px) {
    .contact-map iframe {
        height: 400px;
    }
}
@media (min-width: 1200px) {
    .contact-map iframe {
        height: 500px;
    }
}
/************************************* contact-us css start *************************************/

/************************************* faqs css start *************************************/
/*====================================
    faqs-collapse-group css
====================================*/
.faqs-collapse-group>* {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--border-color),var(--border-opacity));
}
.faqs-collapse-group>*:first-child {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
}
/************************************* faqs css end *************************************/

/************************************* store css start *************************************/
/*====================================
    store css
====================================*/
.store .store-content .store-info {
    margin-top: -12px;
}
.store .store-content .store-info>* {
    margin-top: 12px;
}
/************************************* store css end *************************************/

/************************************* coming-soon css start *************************************/
/*=======================================
    coming-content css
=======================================*/
.coming-content span.coming-content-title {
    letter-spacing: 5px;
}

/*====================================
    coming-soon-news css
====================================*/
@media (min-width: 768px) {
    .coming-news form.coming-form .coming-wrap input.coming-notify-input {
        border-radius: var(--border-radius2) 0px 0px var(--border-radius2);
    }
    .coming-news form.coming-form .coming-wrap button.coming-notify-btn {
        border-radius: 0px var(--border-radius2) var(--border-radius2) 0px;
    }
}
/************************************* coming-soon css end *************************************/

/************************************* keyframes css start *************************************/
/*====================================
    blinking keyframes css
====================================*/
.blinking {
    -webkit-animation: blinking 2s cubic-bezier(.4, 0, .6, 1) infinite;
    animation: blinking 2s cubic-bezier(.4, 0, .6, 1) infinite;
}
@-webkit-keyframes blinking {
    50% {
        opacity: 0.5;
    }
}
@keyframes blinking {
    50% {
        opacity: 0.5;
    }
}
/************************************* keyframes css end *************************************/



/* SECTION BACKGROUND DEPTH */
.why-choose {
    background: linear-gradient(180deg, #ffffff, #f7f7f7);
}

/* HEADER */
.why-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-header p {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.7;
}

/* GRID */
.why-grid {
    row-gap: 30px;
}

/* CARD */
.why-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle glow effect */
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0,0,0,0.03), transparent);
    opacity: 0;
    transition: 0.3s;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ICON */
.why-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

/* PREMIUM GRADIENTS */
.gradient-1 {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.gradient-2 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* TEXT */
.why-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
/* BACKGROUND IMAGE */
.cta-banner {
    background: url("../image/about.png") no-repeat center/cover;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

/* DARK OVERLAY (important for premium feel) */
.cta-overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 80px 20px;
}

/* CONTENT */
.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #e0e0e0;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #000;
    color: #fff;
}
.banner-img{
    background: #F9EBEA;
}