/*
 Theme Name:   Suga Child
 Description:  Suga Child Theme
 Author:       DevsTree
 Template:     suga
 Version:      1.0.0
 Text Domain:  sugachild
*/

/* Add your own custom styles here */

/* for login hide in header part */
.lwa.lwa-modal.pixelbones.lwa-logged-in {
    display: none !important;
}

.lwa.lwa-modal.pixelbones.lwa-login {
    display: none !important;
}

a.navigation-bar__login-btn.navigation-bar-btn {
    display: none !important;
}

/* hide the post-tag and comments section */

.entry-interaction.entry-interaction--horizontal {
    display: none !important;
}

span.meta-date-wrap.meta-date_no-icon {
    display: none !important;
}

/* author links */
.author-info{
	display:none !important;
}

/* hiden the blog detail commments section */

.comments-section.single-entry-section {
    display: none !important;
}

.same-category-posts.single-entry-section {
    display: none !important;
}

/* .post__meta{
	display:none !important;
} */

/* Add css for slider  */
.custom-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Blog css for single page */

.blog-accordian-sec {
    /* background: #d97a57; */
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 50px;
}
 
.blog-accordian .accordion-header {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background 0.3s ease;
}
 
/* .blog-accordian .accordion-header:hover {
    background: #e6f7ff;
} */
 
.blog-accordian .accordion-icon {
    font-size: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
 
.blog-accordian .accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}
 
.blog-accordian .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    /* border-bottom: 1px solid #ddd; */
    margin-bottom: 10px;
    border-radius: 0 0 5px 5px;
}
 
.blog-accordian .accordion-body.active {
    max-height: 500px;
    padding: 15px 20px;
}
 
 
/* =============================
   Product Section Layout
============================= */
.product-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    margin-bottom: 60px;
}
 
.product-section h2.post-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c2c2c;
}
 
/* =============================
   Image
============================= */
.product-section img.img-fluid {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
 
/* =============================
   Right-side Text Card
============================= */
.product-content-card {
    background: #FCF9F1;
    color: #7b726f;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
}
 
.product-content-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
 
.product-content-card .btn {
    background: #6515DC;
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    border: none;
}
 
.product-content-card .btn:hover {
    background: #6515DC;
}
 
/* =============================
   Pros and Cons Section
============================= */
.row.pros-cons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
 
.row.pros-cons .col-md-6 {
    flex: 1;
    min-width: 280px;
}
 
/* Headers */
.pros {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}
 
.cons {
    background-color: #f44336;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}
 
/* List styles */
.pros-cons ul.list-unstyled {
    list-style: none;
    padding: 15px 20px;
    background: #f9f9f9;
    margin: 0;
    border-radius: 0 0 6px 6px;
}
 
.pros-cons li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}
 
.pros-cons .col-md-6:first-child li::before {
    content: "✔";
    color: #4caf50;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 18px;
}
 
.pros-cons .col-md-6:last-child li::before {
    content: "✖";
    color: #f44336;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 18px;
}
.pro-cons-content{
    padding-top: 30px;
}
 
/* =============================
   CTA Button Below Section
============================= */
.check-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background: #6515DC;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}
 
.check-btn:hover {
    background: #d97a57;
}
 
 
 
.review-section {
    padding: 50px 20px;
    background: #fffaf0;
    border-radius: 10px;
    margin-bottom: 60px;
}
 
.review-section .post-title {
    margin-bottom: 20px;
}
 
.review-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s;
}
 
.review-box:hover {
    transform: translateY(-5px);
}
 
.stars {
    color: #6515DC;
    font-size: 20px;
    margin-bottom: 10px;
}
 
.review-author {
    font-style: italic;
    color: #555;
    margin-top: 15px;
}
 
 
.checkout-sec {
    text-align: center;
    padding: 50px 20px;
    /* background: #e8f5e9; */
    border-radius: 12px;
}
 
.checkout-sec .post-title {
    margin-bottom: 15px;
}
 
.checkout-sec p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 16px;
    color: #444;
}
 
.checkout-sec .check-btn {
    background-color: #6515DC;
    padding: 12px 25px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}
 
.checkout-sec .check-btn:hover {
    background-color: #6515DC;
}
 
 
@media (max-width: 768px) {
    .product-section .row {
        flex-direction: column;
    }
 
    .col-md-6 {
        width: 100%;
    }
 
    .product-content-card {
        margin-top: 20px;
    }
}


/* footer css start */
footer .widget-subscribe__inner{
    background-color: #13151e5c;
    border-radius: 10px;
}
footer .widget-subscribe__inner .subscribe-form form p input[type="submit"]{
    display: inline-block;
    margin-top: 20px;
    background-color: #13151e5c;
}
footer .widget-subscribe__inner .subscribe-form form p input[type="email"]{
    background-color: #13151e5c;
}
footer .widget-subscribe__inner .subscribe-form form p{
    text-align: start;
    margin-bottom: 0;
}
footer .widget-subscribe--stack-bottom{
    padding-bottom: 0;
}
footer .widget.atbssuga-widget{
    margin-bottom: 30px;
}
footer .paymentDiv .d-flex{
    display: flex;
}
footer .paymentWrapper{
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 25px;
    width: 83px;
    justify-content: center;
    align-items: center;
    row-gap: 8px;
}
footer .paymentDiv .d-flex.flexWrapper{
    gap: 8px;
    margin-top: 10px;
}
footer .trustpiolt{
    margin-bottom: 20px;
}
footer .footerRow.justify-content-between{
    justify-content: space-between;
    display: flex;
}
footer .header-social-icons.social-link-list{
    display: flex;
    gap: 12px;
    list-style: none;
    margin-bottom: 0;

}
footer .header-social-icons.social-link-list li {
    width: 40px;
    height: 40px;
    background: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
footer .header-social-icons.social-link-list li a {
    line-height: 1;
}

.subscribe-form .mc4wp-alert.mc4wp-success   {
    color: #ffffff !important;
}
.mdicon-twitter::before {
    content: "X" !important;
}
.mdicon-twitter {
    font-size: 15px;
}


@media(max-width : 991px){
    footer .footerRow.justify-content-between{
        flex-direction: column;
    }
    footer .widget.atbssuga-widget{
        margin-top: 20px;
    }
    footer .customCol3{
        display: flex;
        gap: 60px;
    }
    footer .widget.atbssuga-widget{
        margin-top: 0;
    }
    footer .widget-subscribe__inner{
        max-width: 320px;
    }
}

@media(max-width : 767px){
    footer .customCol3{
        flex-direction: column;
        gap: 0;
    }
    footer .widget.atbssuga-widget {
        margin-top: 10px;
    }
    .site-footer__section--flex .site-footer__section-left{
        text-align: start !important;
    }
    .site-footer__section:first-child{
        padding-bottom: 30px;
    }
}

@media(min-width : 1024px){
    footer .site-footer__section .container{
        padding-left: 100px;
        padding-right: 100px;
    }
}
/* footer css end */

/* subscribePopup css start */
.subscribePopup{
    text-align: center;
}
.pum-theme-962 .pum-container, .pum-theme-lightbox .pum-container{
     border: 0 !important;
}
.subscribePopup .mc4wp-alert.mc4wp-error{
    color: red;
}
@media(min-width:1024px){
    .pum-container.pum-responsive.pum-responsive-micro{
        width: 30% !important;
        max-width: 320px !important;
    }
    #why-choose .section-header h4{
        font-size: 1.800em;
        line-height: 1.5;
        text-align: center;
        font-style: italic;
    }
}
/* subscribePopup css end */


.suga-dark-mode .blog-accordian .accordion-header,
.suga-dark-mode .blog-accordian .accordion-body{
    background-color: #222222;
}


/* aboutus page css start */
#place{
    margin-top: 30px;
}
#about .container,
#place .container{
    display: flex;
    align-items: center;
}
#about .container .text,
#about .container .image,
#place .container .text{
    width: 50%;
    padding-right: 12px;
    padding-bottom: 12px;
}
#about .container .image img,
#place .container .text img{
    border-radius: 20px;
}
.travel-banner{
    border-radius: 20px;
    margin-top: 20px;
}
.travel-banner .banner-content{
    color: white;
    padding: 70px;
}

#about .container .image img,
#place .container .text img {
    width: 410px;
    height: 520px;
    object-fit: cover;
    border-radius: 200px;
}
#about .container .image{
    text-align: end;
}

@media(max-width:767px){
    #about .container,
    #place .container{
        flex-direction: column-reverse;
    }
    #about .container .text,
    #about .container .image,
    #place .container .text{
        width: 100%;
    }
    #about .container .image,
    #place .container .image{
        text-align: center;
    }
    #about .container .image img, #place .container .text img{
        width: 100%;
    }
}

@media(min-width:991px){
    .travel-banner .banner-content{
        margin-top: 30px;
    }
}
/* aboutus page css end */


/* navbar css start */
.navigation-bar{
    background-color: #FAF3E0 !important;
}
/* .navigation--main>li>a{
    color: #000000 !important;
} */
.navigation-bar-btn i, .sticky-header .navigation-bar-btn i,
.mdicon~span{
    color: #776c6c !important;
}
/* light mode start */

.navigation-bar--inverse .navigation--main>li>a,
.navigation-bar--inverse .navigation-bar-btn,
footer.site-footer--inverse,
footer.site-footer--inverse .widget_nav_menu a {
    color: #000000 !important;
}

/* light mode end */

/* dark mode start */
/*
.suga-dark-mode .navigation-bar--inverse .navigation--main>li>a,
.suga-dark-mode .navigation-bar--inverse .navigation-bar-btn,
.suga-dark-mode footer.site-footer--inverse,
.suga-dark-mode footer.site-footer--inverse .widget_nav_menu a {
    color: #ffffff !important;
}
    */
/* dark mode end */

.navigation-bar--fullwidth .navigation-bar__inner{
    padding-top: 15px;
    padding-bottom: 15px;
}
.mobile-header .mdicon--last,
.mobile-header-btn i{
    color: #ffffff;
}
.atbs-theme-switch--style-1 svg path{
    fill: #ffffff !important;
}

@media(max-width : 991px){
    .mobile-header{
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        height: auto !important;
    }
    #atbssuga-offcanvas-mobile .atbssuga-offcanvas__title{
        background-color: #ffffff !important;
    }
    .atbssuga-offcanvas .social-list a{
        color: #6515dc !important;
    }
}
/* navbar css end */


@media(max-width : 575px){
    .travel-banner .banner-content{
        padding: 20px;
    }
}


/* home page css start */
@media(max-width : 991px){
    .artificialIntelRow1.atbssuga-block{
        margin-bottom: 0;
    }
    .artificialIntelRow2 .row--space-between>[class*='col-']{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .artificialIntelRow2 .list-space-sm{
        padding-top: 15px;
    }
    .artificialIntelRow2 .row--space-between .col-md-5{
        padding-right: 5px;
    }
    .artificialIntelRow2 .row--space-between .col-md-3{
        padding-left: 5px;
    }
}

@media(max-width : 575px){
    
    .artificialIntelRow2 .row--space-between .col-md-5{
        padding-right: 15px;
    }
    .artificialIntelRow2 .row--space-between .col-md-3{
        padding-left: 15px;
    }
}

.image-slider .slick-track {
    display: flex;
    align-items: center;
}
.image-slider .imgWrapper .sliderImg {
    margin: 0 auto;
}
/* home page css end */