a {
    color: #000;
}

.btn {
    /* color: #fff; */
    font-size: 12px;
    background: #f3d7c1;
}

p {
    font-size: 15px !important;
    font-weight: 500 !important;
}

ul#menu-policy {
    list-style: none;
    text-decoration: none;
    margin: 0px;
    padding: 10px;
}

.soap-blog-title {
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: #885a28;
    letter-spacing: 0.6px;
    position: relative;
    padding-bottom: 18px;
}

/* Soft bubble underline (soap feel) */
.soap-blog-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 6px;
    border-radius: 20px;
    background: linear-gradient(135deg, #a8d8c8, #ffd700);
}

/* Very light shine */
.soap-blog-title {
    text-shadow: 0 3px 10px rgba(55, 108, 95, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .soap-blog-title {
        font-size: 30px;
    }
}

/*-------------------------------- top header  ---------------------------------*/
#top-header {
    position: relative;
    overflow: hidden;
    background: #fff0e3;
}

#top-header a {
    transition: color 0.2s ease;
}

#top-header i {
    font-size: 16px;
}

#top-header .contact-box {
    position: relative;
    z-index: 1;
}

#top-header img {
    object-fit: contain;
}

.logo-box {
    position: relative;
    width: 30%;
}

.logo-box img {
    position: relative;
    width: 70%;
    left: 12%;
    top: -60%;
    z-index: 1;
    background: #fff0e3;
    padding: 5px 15px;
    border-radius: 20px;
}

/*----------------------------------------------- slider css  ------------------------*/
#slider {
    position: relative;
}

#slider .owl-carousel-text {
    position: absolute;
    top: 25%;
    left: 8%;
}

#slider .owl-carousel-text p {
    font-size: 30px;
}

#slider .owl-carousel-text .banner_title {
    font-size: 48px;
}



/* Active slide text animation */
#slider .owl-item.active .owl-carousel-text {
    opacity: 1;
    transform: translateY(0);
}

/* Title Animation */
#slider .owl-carousel-text .banner_title {
    font-size: 48px;
    animation: fadeSlideUp 1s ease forwards;
}

/* Paragraph animation */
#slider .owl-carousel-text p {
    font-size: 30px;
    animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*----------------------------------------------- about css  ------------------------*/
/* ===== Base Animation State ===== */
#about .col-lg-6:first-child {
    transform: translateX(-60px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

#about .col-lg-6:last-child {
    transform: translateX(60px);
    opacity: 0;
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.3s;
}

/* ===== Image Styling ===== */
#about .about-img-1 {
    width: 90%;
    transition: all 0.5s ease;
    animation: floatAbout 5s ease-in-out infinite;
}

/* Image hover effect */
#about .about-img-1:hover {
    transform: scale(1.05);
}

/* ===== Button Animation ===== */
#about .btn {
    background: #885a28;
    color: #fff;
    transition: all 0.3s ease;
}

#about .btn:hover {
    background: #ffc737;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Keyframes ===== */
@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floatAbout {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*----------------------------------------------- product css  ------------------------*/
#product {
    position: relative;
    background-image: url(../img/washing-concept.jpg);
}

#product::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url(../img/pattern.webp) repeat;
}

#product::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url(../img/pattern.png) repeat;
}

#product .card {
    border-radius: 20px;
    background: #fff0e3;
}

#product .product-right {
    position: absolute;
    right: 0%;
    top: -18%;
    width: 15%;
}

#product .owl-nav {
    position: relative;
    top: -55%;
}

#product .owl-prev {
    position: absolute;
    left: -1%;
    color: #fff;
    background: #885a28;
    padding: 2px 5px;
    border-radius: 20px;
}

#product .owl-next {
    position: absolute;
    right: -1%;
    color: #fff;
    background: #885a28;
    padding: 2px 5px;
    border-radius: 20px;
}

#product .product-img::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100px;
    z-index: -1;
    background: #ffc737;
}

.rating {
    font-size: 10px;
}

/* ===== Star Rating Animation ===== */
.rating i {
    transition: transform 0.3s ease;
}

#product .card:hover .rating i {
    transform: scale(1.3);
}

#product .product-img img {
    transition: transform 0.6s ease;
}

#product .card:hover .product-img img {
    transform: scale(1.1) rotate(2deg);
}

/* Floating Image Animation */
#product .product-img img {
    animation: floatProduct 4s ease-in-out infinite;
}

@keyframes fadeUpProduct {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatProduct {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatLeaf {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*----------------------------------------------- choose us css  ------------------------*/
#choose {
    position: relative;
}

#choose .choose_img_2 {
    position: absolute;
    top: -20%;
    width: 20%;
    left: 0px;
}

#choose .choose_img_1 {
    position: absolute;
    top: -10%;
    left: 0px;
    width: 12%;
}

#choose .feature-icon {
    width: 60px;
    height: 40px;
    font-size: 18px;
    border-radius: 40px;
    background: #885a28;
}

#choose .choose-img {
    animation: floatImg 4s ease-in-out infinite;
    transition: transform 0.4s ease;
}

#choose .choose-img:hover {
    transform: scale(1.05);
}

/* ===== Keyframes ===== */
@keyframes slideLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floatImg {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*----------------------------------------------- counter css  ------------------------*/
#counter .counter-box {
    background: #885a28;
    z-index: 1;
    padding: 30px 30px;
    box-shadow: 0 10px 30px 0 rgba(42, 185, 57, .1);
}

/* Section fade in on load */
#counter .feature-icon-box {
    background: #fff0e3;
    border-radius: 80px;
    padding: 20px 0px;
    height: 100%;
    transition: all 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

/* Delay for each box */
#counter .col-md-2:nth-child(1) .feature-icon-box {
    animation-delay: 0.1s;
}

#counter .col-md-2:nth-child(2) .feature-icon-box {
    animation-delay: 0.2s;
}

#counter .col-md-2:nth-child(3) .feature-icon-box {
    animation-delay: 0.3s;
}

#counter .col-md-2:nth-child(4) .feature-icon-box {
    animation-delay: 0.4s;
}

#counter .col-md-2:nth-child(5) .feature-icon-box {
    animation-delay: 0.5s;
}

/* Hover lift effect */
#counter .feature-icon-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px #fff;
}

/* Icon styling */
#counter .feature-icon i {
    font-size: 36px;
    color: #885a28;
    transition: all 0.4s ease;
}

/* Icon animation on hover */
#counter .feature-icon-box:hover i {
    transform: rotate(10deg) scale(1.2);
    color: #000;
}

/* Keyframes */
@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*----------------------------------------------- promo-card css  ------------------------*/
.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Card hover lift effect */
.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Image styling */
.promo-card img {
    border-radius: 20px;
    transition: transform 0.6s ease;
}

/* Image zoom on hover */
.promo-card:hover img {
    transform: scale(1.08);
}

/* Text content */
.promo-card2 {
    position: absolute;
    top: 10%;
    left: 4%;
    z-index: 2;
    animation: slideUpFade 1s ease forwards;
    opacity: 0;
}

/* Keyframe animation */
@keyframes slideUpFade {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*----------------------------------------------- gallery css  ------------------------*/
.image-tilt-row {
    overflow: hidden;
}

.tilt-card {
    transition: all 0.4s ease;
    margin-bottom: 10px;
}

.tilt-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
}

/* Individual rotations */
/* .tilt-1 {
    transform: rotate(12deg);
}

.tilt-2 {
    transform: rotate(-12deg);
}

.tilt-3 {
    transform: rotate(0deg);
}

.tilt-4 {
    transform: rotate(12deg);
}

.tilt-5 {
    transform: rotate(-12deg);
} */

/* Hover effect */
.tilt-card:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 2;
}

#gallery {
    position: relative;
    background: #885a28;
}

#gallery .gallery-img-2 {
    position: absolute;
    top: -21%;
    width: 25%;
    right: 0px;
}

#gallery::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url(../img/pattern.webp) repeat;
    /* z-index: 1000; */
    /* pointer-events: none; */
}

#gallery::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url(../img/pattern.png) repeat;
    /* z-index: 1000; */
    /* pointer-events: none; */
}


#gallery .video-size {
    width: 550px;
    height: 320px;
    border-radius: 20px;
}

/*----------------------------------------------- testimonial css  ------------------------*/

#testimonial .card {
    background: #fff0e3;
}


/*----------------------------------------------- contact-section css  ------------------------*/
#contact-section {
    padding-top: 10%;
    padding-bottom: 4%;
    background: #1f4e3d;
}




/*----------------------------------------------- explore css  ------------------------*/
#explore {
    position: relative;
}

.explore-text-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
}

#explore h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-transform: capitalize;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    max-width: 700px;
}

/* Highlight second line */
#explore h2 span {
    color: #ffd700;
    /* gold highlight */
}


/*----------------------------------------------- blog css  ------------------------*/
.blog-box {
    background: #fff0e3;
    border-radius: 20px;
    padding-left: 10px;
}


/*----------------------------------------------- footer css  ------------------------*/
#footer {
    position: relative;
}

#footer .footer-overlay {
    padding-top: 30px;
    background-color: transparent;
    background-image: linear-gradient(160deg, #885a28 0%, #382510 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer-copyright {
    background: #825626;
}

#footer .social-menu li {
    font-size: 25px;
}

#footer .widgettitle {
    color: #ffb200;
}

.social-menu .fa-whatsapp {
    color: #25D366;
}

.social-menu .fa-instagram {
    color: #E4405F;
}

.social-menu .fa-facebook {
    color: #1877F2;
}

.social-menu .fa-youtube {
    color: #FF0000;
}

/* ===== Title Shine Effect ===== */
#footer .widgettitle {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

#footer .widgettitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: footerShine 4s infinite;
}

/* ===== Social Icons Animation ===== */
#footer .social-menu li {
    font-size: 25px;
    transition: all 0.3s ease;
}

#footer .social-menu li:hover {
    transform: translateX(8px);
}

/* Individual Icon Hover Glow */
.social-menu i {
    transition: all 0.3s ease;
}

.social-menu i:hover {
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* ===== Link Hover Slide Effect ===== */
#footer .menu li a {
    position: relative;
    transition: all 0.3s ease;
}

#footer .menu li a:hover {
    padding-left: 10px;
    color: #ffd700 !important;
}

/* ===== Contact Icons Animation ===== */
#footer .textwidget i {
    transition: all 0.3s ease;
}

#footer .textwidget p:hover i {
    transform: rotate(10deg) scale(1.2);
}

/* ===== Keyframes ===== */
@keyframes footerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerShine {
    0% {
        left: -100%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/*----------------------------------------------- inner gallery css  ------------------------*/
#galleryspage #gallery::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 0px;
    background: url(../img/pattern.webp) repeat;
}

#galleryspage #gallery {
    background: #fff;
}

#galleryspage #gallery .image-gallery__col {
    position: relative;
}

#galleryspage #gallery .image-gallery__col .gallery_title {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: #fff0e3;
    padding: 2px 98px;
}

#galleryspage #gallery .image-gallery__col .gallery_title h2 {
    font-size: 20px;
}

/*----------------------------------------------- inner product css  ------------------------*/
#productpage #product {
    background: #fff;
}

#productpage #product::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 0px;
    background: url(../img/pattern.webp) repeat;
}

#productpage #product .card {
    box-shadow: 0px 0px 5px 0px;
}
.logo-box-mob {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    #explore h2 {
        font-size: 15px;
    }

    #slider .owl-carousel .owl-item img {
        border-radius: 0px 0px 0px 0px;
    }

    #gallery .video-size {
        width: 405px;
        height: 250px;
        border-radius: 20px;
    }
}