a {
    color: #000;
}

.btn {
    color: #fff;
    font-size: 12px;
    background: #007c3c;
}

p {
    font-size: 15px !important;
    font-weight: 500 !important;
}

ul#menu-policy {
    list-style: none;
    text-decoration: none;
    margin: 0px;
    padding: 10px;
}

.reel-box {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 10px;
}

.reel-box iframe {
    width: 100%;
    height: 100%;
    margin-top: -55px;
}

.soap-blog-title {
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: #007c3c;
    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, #7f97a1, #f1f1f1);
}

/* Very light shine */
.soap-blog-title {
    text-shadow: 0 3px 10px rgba(55, 108, 95, 0.2);
}

.navbar .navbar-nav .nav-link {
    font-family: sans-serif !important;
    font-style: normal !important;
    margin: 0px 50px;
    padding: 13px 10px 10px 10px;
    /* font-weight: normal; */
}

/* Responsive */
@media (max-width: 768px) {
    .soap-blog-title {
        font-size: 30px;
    }
}

/*-------------------------------- top header  ---------------------------------*/
#top-header {
    position: relative;
    overflow: hidden;
    background: #00a650;
}

#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;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
}

#top-header .logo-box img {
    background: #fff;
    width: 82%;
    padding: 10px 55px;
    border-radius: 80px 80px 0px 0px;
}

/* .logo-box img {
    position: relative;
    width: 70%;
    left: 12%;
    top: -60%;
    z-index: 1;
    background: #f1f1f1;
    padding: 5px 15px;
    border-radius: 20px;
} */

/*----------------------------------------------- slider css  ------------------------*/
#slider {
    position: relative;
}

#slider .owl-carousel-text {
    position: absolute;
    top: 25%;
    left: 12%;
}

#slider .owl-carousel-text p {
    font-size: 30px;
}

#slider .owl-carousel-text .banner_title {
    font-size: 48px;
}

/* #slider .owl-carousel .owl-item img {
    border-radius: 0px 0px 80px 80px;
} */

/* Active slide text animation */
#slider .owl-item.active .owl-carousel-text {
    opacity: 1;
    transform: translateY(0);
}

/* Title Animation */
#slider .owl-carousel-text .banner_title {
    color: #215045;
    font-size: 45px;
    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 {
    position: relative;
}

#about .about-back-img {
    position: absolute;
    bottom: 6%;
    left: 36px;
}

#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%;
    border-radius: 20px;
    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: #007c3c;
    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: #f1f1f1;
}

#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: #007c3c;
    padding: 2px 5px;
    border-radius: 20px;
}

#product .owl-next {
    position: absolute;
    right: -1%;
    color: #fff;
    background: #007c3c;
    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: #007c3c;
}

#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: #fffbf5;
    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: #f1f1f1; */
    /* border-radius: 80px; */
    padding: 20px 0px;
    height: 100%;
    border-right: 1px solid #e7e7e7;
    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: #007c3c;
    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: #00a650;
}

#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;
}

#gallery::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url(../img/pattern.png) repeat;
}


.reel-section {
    padding: 60px 0;
}

.reel-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.reel-card:hover {
    transform: translateY(-5px);
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.reel-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reel-profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.reel-icons {
    position: absolute;
    right: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    font-size: 22px;
}

.reel-icons i {
    cursor: pointer;
    transition: 0.3s;
}

.reel-icons i:hover {
    transform: scale(1.2);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 700;
}

/* #gallery .video-size {
    width: 550px;
    height: 320px;
    border-radius: 20px;
    margin-top: -55px;
} */

/*----------------------------------------------- testimonial css  ------------------------*/

#testimonial .card {
    background: #f1f1f1;
}


/*----------------------------------------------- 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: 45px;
    font-weight: 800;
    line-height: 1.2;
    color: #007c3c;
    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: #f1f1f1;
    border-radius: 20px;
    padding-left: 10px;
}


/*----------------------------------------------- footer css  ------------------------*/
#footer {
    position: relative;
    margin-top: 8%;
}

#footer::before {
    content: '';
    width: 100%;
    height: 133px;
    display: block;
    position: absolute;
    top: -133px;
    background: url(../img/footer-bg.svg) no-repeat center;
    background-size: cover;
}

#footer .footer-overlay {
    background-color: #00a650;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer-copyright {
    background: #007c3c;
}

#footer .social-menu li {
    font-size: 25px;
}

#footer .widgettitle {
    color: #fff;
}

.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 {
    font-size: 25px;
    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;
}

#galleryspage #gallery .insta-reel {
    background: #000;
    box-shadow: 6px 6px 2px 0px #959595;
}



/*----------------------------------------------- inner service css  ------------------------*/
.service-section{
    background:#f8f9fc;
    position:relative;
    overflow:hidden;
}

.service-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s ease;
    z-index:1;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.service-icon{
    width:80px;
    height:80px;
    line-height:80px;
    text-align:center;
    border-radius:50%;
    background:linear-gradient(135deg, #006631, #00a650);
    color:#fff;
    font-size:30px;
    margin:0 auto 25px;
    box-shadow:0 10px 20px rgba(13,110,253,0.25);
}

.service-card-title{
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
    text-align:center;
}

.service-description{
    color:#666;
    font-size:16px;
    line-height:1.9;
    text-align:center;
}

.service-btn{
    margin-top:25px;
    text-align:center;
}

.service-btn a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    border-radius:50px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.service-btn a:hover{
    background:#084298;
    color:#fff;
    transform:translateY(-2px);
}

.shape-left{
    position:absolute;
    top:0;
    left:0;
    width:120px;
    opacity:0.08;
    z-index:-1;
}

.shape-right{
    position:absolute;
    bottom:0;
    right:0;
    width:120px;
    opacity:0.08;
    z-index:-1;
}
/*----------------------------------------------- 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;
}

.product-image-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    overflow:hidden;
    position:relative;
}

.main-product-img{
    width:100%;
    height:500px;
    object-fit:contain;
    cursor:pointer;
    transition:0.4s;
}

.main-product-img:hover{
    transform:scale(1.05);
}

.thumb-img-box{
    border:2px solid #eee;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    transition:0.3s;
}

.thumb-img-box:hover{
    border-color:#0d6efd;
    transform:translateY(-3px);
}

.thumb-img{
    width:100%;
    height:80px;
    object-fit:cover;
}

.product-details-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.category-badge{
    display:inline-block;
    background:#e8f1ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.product-title{
    font-size:40px;
    font-weight:700;
    color:#222;
    margin-bottom:5px;
}

.rating{
    color:#ffc107;
    font-size:12px;
}

.short-desc{
    font-size:17px;
    color:#555;
    line-height:1.8;
}

.product-description{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

.enquiry-btn{
    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.enquiry-btn:hover{
    background:#084298;
    color:#fff;
    transform:translateY(-2px);
}

.whatsapp-btn{
    background:#25d366;
    color:#fff;
    border:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#1da851;
    color:#fff;
    transform:translateY(-2px);
}

.product-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#ff9800;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    z-index:2;
}

/* Responsive */
@media (max-width: 768px) {
    #explore h2 {
        font-size: 20px;
    }

    #slider .owl-carousel .owl-item img {
        border-radius: 0px 0px 0px 0px;
    }

    #gallery .video-size {
        width: 405px;
        height: 250px;
        border-radius: 20px;
    }
}