/* Container Styles */
.features-container {
    background-color: #F4CE59;
    color: white;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-weight:bold;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card */
.feature-card {
    background-color: #F5E788;
    padding: 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Icon Circle */
.icon-circle {
    background-color:black;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color:black;
    line-height: 1.5;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}

.header-top{
  background-color:white !important;
}

.mainmenuarea {
  background-color:white !important;
}
.main-menu-area,.ae-anno-announcement-wrapper{
  background-color:white !important;
}
.footer-area{
  background-color:white !important;
  border-top:2px solid #ECB93B;
}
.footer-copyright{
  background-color:white !important;
  border-top:2px solid #ECB93B;
}
.cosmetic-reviews {
    padding: 80px 20px;
    background-color: #fff; /* Main background white */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top:2px solid #E7B63A;
}

.section-heading {
    text-align: center;
    color: #333;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: bold;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards in one line */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: #E5BA33;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #ffffff; /* White Borders */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: left;
}

/* Hover Effect */
.review-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.stars {
    color: black;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-desc {
    color: #ffffff; /* White Text */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-meta img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
}

.user-meta h4 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
}

.user-meta span {
    font-size: 13px;
    color: #f0f0f0;
    opacity: 0.9;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet par 2 cards */
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr; /* Mobile par 1 card */
    }
    .section-heading {
        font-size: 28px;
    }
}
.star-recommendations {
    padding: 70px 20px;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.v-container {
    max-width: 1200px;
    margin: 0 auto;
}

.v-heading {
    text-align: center;
    font-size: 34px;
    color: #222;
    margin-bottom: 50px;
    font-weight: 800;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 25px;
}

.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

/* Hover Effect */
.video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-box {
    width: 100%;
    background: #000;
    line-height: 0;
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

.video-details {
    padding: 20px;
    text-align: center;
}

.star-rating {
    font-size: 14px;
    margin-bottom: 8px;
}

.video-details h4 {
    margin: 0;
    font-size: 19px;
    color: #333;
}

.video-details p {
    margin: 5px 0 0;
    color: #d63384; 
    font-size: 14px;
    font-weight: 600;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr; /* 1 per row on mobile */
        max-width: 400px;
        margin: 0 auto;
    }
    .v-heading {
        font-size: 26px;
    }
}

/* video */
.video-box {
    width: 100%;
    height: 400px;
    background: #000;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Mobile adjust */
@media (max-width: 768px) {
    .video-box {
        height: 300px;
    }
}
/* watsapp section */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 150px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

/* 📱 Small Mobile */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 150px;
        right: 12px;
    }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}

/* about us section*/
:root {
    --brand-color: #F1CD5A; /* Main text & hover color */
    --text-dark: #333;
}

/* Main Section */
.about-rumi {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

/* Layout */
.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    color: var(--brand-color);
    margin-bottom: 10px;
}

.about-text .tagline {
    font-size: 18px;
    color: var(--brand-color);
    margin-bottom: 25px;
    font-style: italic;
}

.about-text p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-text ul li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--brand-color);
}

/* Image */
.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image Hover */
.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 22px 45px rgba(241, 205, 90, 0.45);
}

/* Extra Cards */
.about-extra {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.extra-box {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(241, 205, 90, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Effect 1: Lift */
.extra-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 45px rgba(241, 205, 90, 0.35);
}

/* Hover Effect 2: Top Border Highlight */
.extra-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border-top: 3px solid transparent;
    transition: border-color 0.35s ease;
}

.extra-box:hover::before {
    border-top-color: var(--brand-color);
}

.extra-box h3 {
    font-size: 20px;
    color: var(--brand-color);
    margin-bottom: 12px;
}

.extra-box p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* 📱 Mobile Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-extra {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .about-image img {
        max-width: 320px;
    }
}