/**
 *
 * CSS Variable
 *
 */
:root {
    --primary-color: #18b3ff;
    --secondary-color: #00bfff;
    --dark-color: #2c3e50;
    --navbar-bg: #06080a;
    --light-bg: #f8f9fa;
    --white-color: #ffffff;
    --text-dark: #333;
    --text-muted: #7f8c8d;
    --dark-hard: #000000;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

[data-aos] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: var(--dark-hard);
    margin-bottom: 15px;
    font-family: 'Open Sans', Arial, sans-serif !important;
}

.section-header p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: capitalize;
    max-width: 700px;
    margin: 0 auto;
}


/*=============================================
=            Navbar Customization             =
=============================================*/

.navbar {
    background-color: #1E2224;
    padding: 1rem 1.5rem;
    z-index: 1030;
}

/* Logo */
.navbar-brand {
    color: var(--white-color);
    font-size: 2rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-width: 350px;
    height: auto;
}

.navbar-brand:hover {
    color: #f0f0f0;
}

/* Menu Links */
.navbar-nav .nav-link {
    color: var(--secondary-color);
    margin: 0 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Toggler */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}



/* ==============================
   Mobile Responsive
================================*/
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 12px;
        font-size: 15px;
    }

    .navbar-brand img {
        max-width: 230px;
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 0.7rem 1rem;
    }

    .navbar-brand img {
        max-width: 210px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}




/*=============================================
=                  Hero Section              =
=============================================*/
.hero-slider .carousel-item {
    height: 70vh;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-slider .carousel-caption {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: var(--white-color);
}

.hero-slider .carousel-caption .subtitle {
    font-size: 21px;
    letter-spacing: 2px;
    line-height: 32px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-slider .carousel-caption .main-title {
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 20px 0;
    line-height: 42px;
    display: inline-block;
}

.typed-cursor {
    font-size: 4.5rem;
    color: var(--white-color);
    animation: typedjsBlink 0.7s infinite;
}

@keyframes typedjsBlink {
    50% {
        opacity: 0;
    }
}

.hero-slider .carousel-caption .description {
    font-size: 17px;
    font-weight: 300;
    line-height: 27px;
    color: #f0f0f0;
}

.hero-slider .btn-custom {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 25px;
    transition: all 0.3s ease;
    font-family: "Open Sans", Arial, sans-serif;
}

.hero-slider .btn-custom:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    transition: transform 0.2s ease;
}

.hero-slider .carousel-indicators .active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}


@media (max-width: 767.98px) {


    .carousel-caption .main-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

}

/*=============================================
=                 Fitures Section            =
=============================================*/
.features-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0;
}

.features-section .section-header h2,
.features-section .section-header p {
    color: var(--white-color);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-item .icon {
    font-size: 30px;
    flex-shrink: 0;
    width: 50px;
}

.feature-item .content h4 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 28px;
}

.feature-item .content p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    opacity: 0.9;
}

/*=============================================
=                 Software section           =
=============================================*/
.software-section {
    padding: 80px 0 0;
}

.asset-slider .slide-item {
    position: relative;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .asset-slider .slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slide-item:hover img {
    transform: scale(1.05);
}

.slide-item .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 10px 20px;
    color: var(--white-color);
}

.overlay h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    z-index: 1;
}

.overlay h4:after {
    content: '';
    width: 150px;
    background: #000;
    position: absolute;
    height: 60px;
    left: 0;
    z-index: -1;
    bottom: 20px;
    opacity: 0.7;
}

.overlay .btn-management {
    background-color: #00AEEF;
    border: none;
    color: var(--white-color);
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 200;
    border-radius: 2px;
    margin-top: 10px;
    text-transform: uppercase;
    z-index: 1;
}

/* Slick Slider Arrows */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.slick-prev:hover,
.slick-next:hover {
    transform: scale(1.1);
    background: #f0f0f0;
    color: black;
}

.slick-prev {
    left: -15px;
}

.slick-next {
    right: -15px;
}

.slick-prev:before,
.slick-next:before {
    content: '';
}


.slick-dots li button:before {
    font-size: 12px;
    color: var(--dark-color);
}

.slick-dots li.slick-active button:before {
    color: #00AEEF;
}

.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: var(--dark-color);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body img {
    width: 100%;
    border-radius: 8px;
    margin-top: 15px;
}

/*=============================================
=            Why Choose Us                  =
=============================================*/
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white-color);
}

.feature-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    height: 100%;
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-hard);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==============================
   Mobile Responsive
================================*/
@media (max-width: 991px) {
    .feature-card {
        min-height: auto;
        padding: 25px 15px;
    }

    .feature-card .icon {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .align-items-stretch {
        align-items: stretch !important;
        padding: 30px;
    }

    .feature-card {
        padding: 20px 10px;
        margin-bottom: 20px;
    }

    .feature-card .icon {
        font-size: 40px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/*=============================================
=                Pricing Section             =
=============================================*/
.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card .card-header {
    padding: 18px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--dark-color);
}

.pricing-card .card-price {
    padding: 30px 20px;
    background-color: var(--light-bg);
}

.pricing-card .price-value {
    font-size: 2.7rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--dark-hard);
    position: relative;
}

.pricing-card .price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pricing-card .feature-list {
    padding-left: 0;
    flex-grow: 1;
    padding: 0 20px;
}

.pricing-card .feature-list li {
    padding: 15px 10px;
    border-top: 1px solid #e9ecef;
    color: #555;
    list-style: none;
    font-size: 0.8rem;
}

.pricing-card .feature-list li:first-child {
    border-top: none;
}

.pricing-card .card-footer {
    padding: 30px;
}

.btn-custom,
.btn-primary-custom,
.btn-outline-dark,
.simpay-btn.simpay-payment-btn {
    padding: 10px 30px;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid black;
    background-color: transparent;
}

.btn-primary-custom,
.pricing-card.standard-plan .simpay-btn.simpay-payment-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    padding: 12px 30px;
}

.btn-primary-custom:hover {
    background-color: #009cdb;
    border-color: #009cdb;
}


.pricing-card.standard-plan .card-header {
    background-color: var(--primary-color);
}

.pTab {
    margin: 0;
    padding: 0;
}



.price-value .currency {
    font-size: 22px;
    font-weight: 600;
    margin-right: 5px;
    vertical-align: top;

    position: absolute;
    left: -14px;
    top: 0;
}


@media (min-width: 992px) {
    .pricing-card.standard-plan {
        transform: scale(1.08);
        z-index: 10;
    }
}

/* ==============================
   Mobile Responsive
================================*/
@media (max-width: 991px) {

    .card-header {
        font-size: 1.4rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .price-period {
        font-size: 0.95rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }

    .btn-custom,
    .btn-primary-custom,
    .simpay-btn.simpay-payment-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .pricing-card {
        margin-bottom: 20px;
    }

    .pTab {
        padding: 20px;
    }

    .card-header {
        font-size: 1.3rem;
    }

    .price-value {
        font-size: 1.7rem;
    }

    .price-period {
        font-size: 0.85rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .btn-custom,
    .btn-primary-custom,
    .simpay-btn.simpay-payment-btn {
        padding: 7px 18px;
        font-size: 0.85rem;
    }
}





/*=============================================
=                Contact Section              =
=============================================*/
.contact-section {
    background-color: #f1f1f1;
    padding: 80px 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-details {
    list-style: none;
    padding-left: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #555;
}

.contact-details .icon {
    font-size: 14px;
    color: var(--primary-color);
    background-color: #e4f6ff00;
    border-radius: 50%;
    border: 1px solid #18b3ff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}


.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    color: #008ecc;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(24, 179, 255, 0.25);
}

.btn-submit {
    background-color: var(--primary-color);
    border: none;
    color: var(--white-color);
    padding: 14px 25px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
}

.btn-submit:hover {
    background-color: #009cdb;
}

.contact-details li .icon,
.contact-details li span {
    display: inline-flex;
    align-items: center;
}


/* text center  */

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-details .icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details li span p {
    margin: 0 !important;
}

.contact-details li span p a {
    margin-left: 5px;
}

/*=============================================
=                  Footer Section            =
=============================================*/
.site-footer {
    background-color: #212529;
    color: #a9b3bb;
    padding: 100px 0 0;
    font-size: 0.9rem;
}

.site-footer .container {
    position: relative;
}


.get-in-touch-tag {
    position: absolute;
    top: -94px;
    left: 20px;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #29b6f6;
    color: white;
    padding: 8px 20px;
    font-family: "Shadows Into Light", cursive;
    font-size: 20px;
    font-weight: 400;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}


.get-in-touch-tag::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 14px 2px 0;
    border-color: transparent #0288d1 transparent transparent;
}


.footer-about h5 {
    color: var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgb(119, 119, 119);
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
}

.footer-bottom {
    background-color: #1c2023;
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom .logo {
    font-size: 1.8rem;
    font-weight: 400;
    color: #86888A;
}

.footer-bottom .copyright {
    font-size: 0.8rem;
    color: #888;
}

.footer-bottom .footer-nav a {
    color: #a9b3bb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-nav a:hover {
    color: var(--white-color);
}


/*=============================================
=              Back To Top               =
=============================================*/
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    border: none;
    background-color: #4a4a4a;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    justify-content: center;
    align-items: center;
}

#backToTopBtn.show {
    display: flex;
    opacity: 1;
}

#backToTopBtn:hover {
    background-color: #606060;
}

#backToTopBtn::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--white-color);
    border-left: 3px solid var(--white-color);
    transform: translateY(2px) rotate(45deg);
}

/*=============================================
=               Rresponsive sty;e               =
=============================================*/
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-slider .carousel-caption .main-title,
    .typed-cursor {
        font-size: 2.8rem;
        min-height: 50px;
    }

    .hero-slider .carousel-caption .subtitle {
        font-size: 0.8rem;
    }

    .hero-slider .carousel-caption .description {
        font-size: 1rem;
    }

    .hero-slider .btn-custom {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .features-section {
        padding: 50px 0;
    }

    .feature-item {
        margin-bottom: 40px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .feature-card {
        margin-bottom: 30px;
    }

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

    .site-footer {
        text-align: center;
    }

    .get-in-touch-tag {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .footer-bottom .d-flex {
        flex-direction: column;
    }

    .footer-bottom .footer-nav {
        margin-top: 15px;
    }
}



.wpcf7 form .wpcf7-response-output {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #0f5132;
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
}

.form-control {
    padding: 10px 15px;
    font-size: 13px;
    color: rgb(190, 190, 190);
    font-weight: 400;
    line-height: 1.5;
}

label.form-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(109, 108, 108);
}

a.footer-logo img {
    max-width: 240px;
    opacity: .5;
}





/*=============================================
=            Cart Page Design            =
=============================================*/

.bredcam_area {
    padding: 30px 0;
    margin-bottom: 40px;
    background-color: #00b2f0 !important;
    text-align: center;
}

.bredcam_area .entry-title {
    color: white;
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
}

.woocommerce .woocommerce-cart-form,
.woocommerce .cart-collaterals {
    width: 100%;
}


.woocommerce-cart-form {
    flex: 1 1 64%;
    order: 1;
}

.cart-collaterals {
    flex: 1 1 32%;
    order: 2;
}


.woocommerce table.shop_table {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    padding: 20px;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.woocommerce table.shop_table thead {
    display: table-header-group;
}

.woocommerce table.shop_table thead th {
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    font-weight: 600;
    color: #555;
    padding: 15px;
}

.woocommerce table.shop_table tbody tr {
    background-color: #fdfdfd;
}

.woocommerce table.shop_table td {
    border: none;
    padding: 20px 15px;
    vertical-align: middle;
}

.woocommerce table.shop_table td.product-thumbnail img {
    width: 80px;
    border-radius: 5px;
}

.woocommerce table.shop_table td.product-name a {
    text-decoration: none;
    font-weight: bold;
    color: #2c3e50;
    transition: color 0.3s;
}

.woocommerce table.shop_table td.product-name a:hover {
    color: #00b2f0;
}

.woocommerce a.remove {
    color: #e74c3c !important;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.woocommerce a.remove:hover {
    background: none !important;
    color: #c0392b !important;
}

.woocommerce .quantity .qty {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.woocommerce .actions {
    padding: 20px 0 !important;
}

.woocommerce .actions .coupon {
    display: flex;
    gap: 10px;
}

.woocommerce .coupon .input-text {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    height: 45px;
}

.woocommerce .coupon .button,
.woocommerce .actions>.button {
    background-color: #2c3e50 !important;
    color: white !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    height: 45px;
    padding: 0 25px !important;
    transition: background-color 0.3s;
}

.woocommerce .coupon .button:hover,
.woocommerce .actions>.button:hover {
    background-color: #00b2f0 !important;
}


.cart_totals {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.cart_totals h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cart_totals table.shop_table {
    box-shadow: none;
    padding: 0;
}

.cart_totals .shop_table th {
    width: 40%;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-weight: bold;
    font-size: 1.2em;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    background-color: #00b2f0 !important;
    color: white !important;
    padding: 15px !important;
    text-align: center;
    font-size: 1.2em !important;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background-color: #2c3e50 !important;
    transform: translateY(-2px);
}


@media (max-width: 992px) {
    .woocommerce {
        flex-direction: column;
    }

    .woocommerce-cart-form,
    .cart-collaterals {
        flex: 1 1 100%;
    }
}


/*=============================================
=            checkout             =
=============================================*/


body.woocommerce-checkout {
    background-color: #FFFFFF; 
}

.woocommerce-checkout form.checkout {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px;
    align-items: flex-start;
	margin-bottom: 150px;

}

#customer_details {
    flex: 6; 
    order: 1; 
    width: 100%;
}

.order-column-wrapper {
    flex: 4; 
    order: 2; 
    position: sticky; 
    top: 40px;
}

#customer_details.col2-set {
    display: flex;
    flex-direction: column; 
    width: 100%;
}

#customer_details .col-1,
#customer_details .col-2 {
    flex: 1 0 100%; 
    max-width: 100%;
}

.woocommerce-billing-fields,
#order_review,
.woocommerce-checkout-payment {
    margin-bottom: 30px;
}

.order-column-wrapper #order_review {
    margin-bottom: 30px;
}

.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 1.2em;
}

.woocommerce form .form-row label {
    font-weight: 600;
    color: #444;
}

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce textarea,
.select2-selection {
    border: 0.5px solid #ccc !important;
    border-radius: 5px;
}

.woocommerce textarea {
    height: auto;
    padding: 15px !important;
}

.woocommerce input:focus,
.woocommerce textarea:focus,
.select2-container--open .select2-selection {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
    outline: none;
}

#customer_details h3,
#order_review_heading {
    font-size: 1.8em;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #e8e8e8;
}

.woocommerce-shipping-fields h3#ship-to-different-address {
    font-size: 1.2em;
    padding: 0;
    border: none;
    display: block;
    margin-bottom: 1.5em;
}

.woocommerce-checkout-review-order-table .order-total {
    font-size: 1.3em;
    font-weight: bold;
    color: #000;
}

#place_order {
    width: 100%;
    padding: 16px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    background-color: #29B6F6;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#place_order:hover {
    background-color: #29B6F6;
}

@media (max-width: 992px) {
    .woocommerce-checkout form.checkout {
        flex-direction: column;
    }

    .order-column-wrapper {
        position: static; 
        width: 100%;
        order: 2;
    }

    #customer_details {
        order: 1;
    }
}

.woocommerce-checkout .col2-set .col-1 {
    width: 100%;
}
.woocommerce-checkout .col2-set .col-2 {
    width: 100%;
}
tr.order-total.recurring-total {
    display: none;
}
tr.recurring-totals {
    display: none;
}
tr.cart-subtotal.recurring-total {
    display: none;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    background-color: #d4f2fc !important;
}
.woocommerce-info {
    border-top-color: #00B2F0 !important;
}
ul.wc_payment_methods.payment_methods.methods.stripe-small {
    background-color: #d4f2fc;
}

#add_payment_method #payment div.payment_box,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment div.payment_box {
    background-color: #d4f2fc;
}
.form-row.place-order {
    background-color: #d4f2fc;
}


/* End Checkout */

.cart_totals {
    margin-bottom: 150px;
}

.woocommerce div.product form.cart .button {
    background: #00bfff;
}

.woocommerce .product.type-product {
    max-width: 1140px;
    margin: auto;
    padding: 50px 0;
}


tr.wps_recurring_bifurcation_wrapper {
    display: none;
}

.woocommerce-notices-wrapper {
    display: none;
}



/*
======================================================
WooCommerce Error Layout 
======================================================
*/

.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
    flex-basis: 100%;
    width: 100%;
    order: -1;
    margin-bottom: 30px;
}

.woocommerce-error {
    background-color: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb;
    border-top: 3px solid #d9534f; 
    border-radius: 5px;
    margin: 0 !important;
    list-style: none inside !important; 
}

.woocommerce-error li {
    padding: 0.2em 0;
    margin: 0;
}

.woocommerce-error li a {
    color: inherit; 
    text-decoration: underline;
}

.woocommerce-error li a strong {
    font-weight: 600; 
}


.woocommerce-MyAccount-navigation li {
  list-style: none;
}
.woocommerce-MyAccount-navigation ul {
  padding: 0;
}
.woocommerce-MyAccount-navigation li a {
  text-decoration: none;
  background: #afe2f4;
  display: block;
  padding: 10px;
  margin-bottom: 2px;
  color: #000;
}
.woocommerce-MyAccount-navigation-link.is-active a {
  background: #00b2f0;
}