/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #d69b37 0%, #F7B32F 100%);
    padding: 60px 0;
    color: white;
    margin-top: 5rem;
}

    .cta-section .inner-container {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }

@media screen and (max-width: 768px) {
    .content-column {
        margin-bottom: 1rem;
    }
}

.cta-section h3 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-section .text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.company-slogan {
    font-style: italic;
    color: #F7B32F;
    font-size: 16px;
    margin-top: 10px;
}

/* Mobile Quote Button */
.mobile-quote-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: #F7B32F;
    color: #000048;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(247, 179, 47, 0.3);
    transition: all 0.3s ease;
    display: none;
}

    .mobile-quote-button:hover {
        background: #000048;
        color: #F7B32F;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 72, 0.3);
    }

    .mobile-quote-button i {
        margin-right: 8px;
    }

@media (max-width: 768px) {
    .mobile-quote-button {
        display: inline-flex;
        align-items: center;
    }

    .cta-section {
        padding: 40px 0;
    }

        .cta-section .inner-container {
            padding: 30px 20px;
        }

        .cta-section h3 {
            font-size: 22px;
        }
}

video {
    display: flex;
    width: 100%;
}

.video-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.right-content {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.white-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #28318f87;
    position: absolute !important;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
}

.auto-container {
    z-index: 3;
}

.text-end {
    text-align: end;
}

.dropdown-sub-item {
    padding-left: 1rem;
    display: flex;
    text-decoration: underline;
    color: #1f2d51;
}

@media screen and (max-width: 675px) {
    .dropdown-sub-item a {
        color: #fff;
    }
}
/* Global elements | | x-section */
.x-wrapper {
    padding: 1rem;
}

/* Global Page Layout */
.xp-header {
    font-size: 32px;
    color: #302dbb;
    text-indent: 0.5rem;
    margin: 1rem;
}

.xp-s-header {
    font-size: 24px;
    color: #8784f1;
    text-indent: 0.5rem;
    border-bottom: 1px solid #dde8fb;
    margin: 0.5rem;
}

.xp-p {
    color: #302dbb;
    font-weight: 500;
    word-spacing: 0.2rem;
    letter-spacing: 0.01rem;
    margin: 1rem;
}

.xp-p-s {
    color: #8784f1;
    font-weight: 500;
    word-spacing: 0.2rem;
    text-indent: 1rem;
    letter-spacing: 0.02rem;
    margin: 0.5rem;
}

/* Inputs */
.x-inpt {
    margin: 0.2rem;
    border: 1px solid #b1aaaaa6;
    border-radius: 5px;
    outline: none;
    transition: 0.3s ease;
}

    .x-inpt:hover {
        border: 1px solid #1e62dd;
    }

    .x-inpt:active {
        border: 1px solid #1e62dd;
    }

    .x-inpt:focus {
        border: 1px solid #a8b324;
        background-color: #dbe6ef0f;
    }

.x-inpt-sm {
    padding: 0.3rem 1rem;
    font-size: 14px;
}

/* Labels */
.x-lbl-sm {
    font-weight: 400;
    color: #004085;
    font-size: 18px;
    margin: 0.2rem;
}

/* Buttons */
.x-btn {
    outline: none;
    border: 1px solid #80808026;
    background-color: #daddff;
    text-decoration: none;
    color: #302dbb;
    cursor: pointer;
    transition: 0.3s ease;
}

    .x-btn:hover {
        background-color: #eee5ff;
        border: 1px solid #a59f9f;
        color: #000;
    }

/* Secondary Button */
.xs-btn {
    background-color: #5383e3;
    border: 1px solid transparent;
    color: #f1eeee;
}

    .xs-btn:hover {
        border: 1px solid #000;
        color: #fff;
    }

/* Tertiary Button */
.xt-btn {
    background-color: #f1f2f5;
    border: 1px solid #dbd4d4;
    color: #4b4949;
}

    .xt-btn:hover {
        border: 1px solid #635f5f;
        color: #000;
    }

/* Forms */
.x-form-sm {
    width: 500px;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 2rem;
    border-radius: 10px;
    background-color: #fafdff;
    box-shadow: 1px 1px 14px 1px #e3dcdc;
}

/* Global Classes | | x-section */
.x-flex-center-v {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.xmt-1 {
    margin-top: 1rem;
}

.xmb-1 {
    margin-bottom: 1rem;
}

.xpt-1 {
    padding-top: 1rem;
}

.xpb-1 {
    padding-bottom: 1rem;
}

.x-fx {
    display: flex;
}

.xt-3 {
    transition: all ease 0.3s;
}

/*Notifications*/
/*Cookie Consent and Notification*/
.cookie-consent-container {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    margin-bottom: 0 !important;
    width: 100%;
    color: #f9f9f9;
    background-color: #256692;
    border-color: #ffffff;
    box-shadow: 1px 1px 12px 1px #29292942;
}

.cookie-left {
    padding: 1rem;
}

.cookie-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.accept-cookie-policy {
    background-color: #ffffffd9;
    color: #0c325a;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 7px 30px;
    font-weight: 400;
    transition: 0.3s ease;
}

    .accept-cookie-policy:hover {
        background-color: #fff;
    }

#main {
    overflow: hidden;
}

#cookieWrapper {
    display: none;
    position: fixed;
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    z-index: 1000;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    transform: translate(50%, 0%);
    width: 50%;
}

@media screen and (max-width: 678px) {
    #cookieWrapper {
        display: none;
        position: fixed;
        background-color: white;
        padding: 2rem;
        border-radius: 5px;
        z-index: 1000;
        width: 600px;
        margin-left: auto;
        margin-right: auto;
        transform: translate(5%, 50%);
        width: 90%;
        align-items: center;
        justify-content: center;
    }
}

.top-cookie-consent-text {
    margin-top: 0rem !important;
}

.cookie-feedback {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 14px;
    transition: opacity 0.5s ease;
}
/*Success*/
.x-alert-success {
    background-color: #326211;
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #38383880;
    animation: successFade 1s;
}

#alertMessage {
    display: flex;
}

@keyframes successFade {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}
/*Danger*/
.x-alert-danger {
    background-color: #f5c6cb;
    color: #5f0b0be0;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Warning*/
.x-alert-warning {
    background-color: #ffcc29;
    color: #3b331d;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Info*/
.x-alert-info {
    background-color: #baebf3;
    color: #0c5460;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Detail*/
.x-alert-detail {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Close*/
.x-alert-close {
    text-decoration: none;
    cursor: pointer;
    transition: 0.1s ease;
    outline: none;
    color: #247816;
    padding: 0rem 0.7rem;
    background-color: #ffffff;
    right: 1rem;
    top: 1rem;
    font-size: 24px;
    border: none;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0.6rem;
    margin-right: 0.4rem;
    -ms-transform: translate(-50%, -50%);
    width: 38px;
    transition: 0.3s ease;
}

    .x-alert-close:hover {
        background-color: #f1f1f1f2;
        color: #22a70e;
    }

.x-alert {
    width: 500px;
    top: 9rem;
    right: 5rem;
    position: fixed !important;
    z-index: 3;
}

@media screen and (max-width: 675px) {
    .x-alert {
        width: 100%;
        top: 0;
        right: 0;
        position: fixed;
        z-index: 30;
        font-size: 14px;
        border-radius: 0 !important;
    }
}

.product-card {
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 1px #e2e2e2;
    padding: 1rem;
}

.product-category-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;
}

.product-card:hover .product-category-image {
    transform: scale(1.1);
}

.iala-image {
    width: 300px !important;
    border: 1px solid #b1aaaaa6;
}

.page-breadcrumb-title p {
    text-align: center !important;
}

.accordion-item {
    border: 1px solid #5f9fff;
    border-radius: 10px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
}

.accordion-body .col-md-3 {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1440px !important;
    }
}

@media screen and (max-width: 768px) {
    .dropdown-sub-item {
        color: #fff !important;
        text-decoration: underline;
    }

    .mobile-list {
        background: orange;
    }

    .copyright-column {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .page-content-title {
        padding-left: 1rem;
    }

    .product-card {
        margin-bottom: 0.5rem;
    }

    .sec-title {
        padding-bottom: 1rem;
    }

    .product-card .sec-title .title-inner {
        height: 40px !important;
    }

    .auto-container .flex-column {
        padding: 1rem;
    }
}

@media screen and (max-width: 1650px) {
    .main-slider-carousel .auto-container {
        width: 1240px;
    }
}

@media screen and (max-width: 1410px) {
    .main-slider-carousel .auto-container {
        width: 1040px;
    }
}

@media screen and (max-width: 768px) {
    .main-slider-carousel .auto-container {
        width: auto !important;
    }
}

/* Swiper styles for main-slider */
.main-slider .swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.main-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    .main-slider .swiper-slide .auto-container {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
    }

.main-slider .swiper-pagination {
    bottom: 30px;
}

    .main-slider .swiper-pagination .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
    }

    .main-slider .swiper-pagination .swiper-pagination-bullet-active {
        background: #fff;
    }

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .main-slider .swiper-button-next:hover,
    .main-slider .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.6);
    }

/* RTL support for swiper */
[dir="rtl"] .main-slider .swiper-button-next {
    transform: rotate(180deg);
}

[dir="rtl"] .main-slider .swiper-button-prev {
    transform: rotate(180deg);
}
