/* About Page Specific Redesigns */

/* Banner Section */
.home-section-3 {
    background: #020b16;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Sidebar Redesign */
.top_categories_sidebar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}
.top_categories_sidebar h4 {
    background: linear-gradient(90deg, #d4af37, #b8860b);
    color: #000 !important;
    padding: 15px 20px !important;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.top_categories_sidebar .top_categories {
    list-style: none;
    padding: 15px 0 !important;
    margin: 0;
}
.top_categories_sidebar .top_categories li {
    padding: 0;
}
.top_categories_sidebar .top_categories li a {
    display: block;
    padding: 12px 20px;
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}
.top_categories_sidebar .top_categories li a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-left-color: #d4af37;
    padding-left: 25px;
}

/* Main Banner */
.common-page-banner {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.common-page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(2, 11, 22, 0.8), rgba(10, 31, 24, 0.6));
}
.bread-box {
    background: rgba(2, 11, 22, 0.7) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    backdrop-filter: blur(10px);
    z-index: 1;
}
.bread-box h1 {
    color: #d4af37 !important;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.bread-box h5 {
    color: #a0aec0 !important;
    font-weight: 400;
}
.bread-box h5 a {
    color: #fff;
    text-decoration: none;
}
.bread-box h5 a:hover {
    color: #d4af37;
}

/* Right side slider */
.special-offer-slider {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}
.special-offer-slider h4 {
    color: #d4af37 !important;
    font-size: 16px;
    padding: 15px !important;
    margin: 0;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    line-height: 1.4;
}
.special-offer-slide {
    padding: 15px;
}
.product-box-3 .img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Certifications Section */
.fashion-girl {
    background: #020b16;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}
.fashion-box-1 {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}
.fashion-box-1:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}
.fashion-box-1 img {
    border-radius: 10px;
}

/* Testimonials Section */
.our-testimonials .testimonials-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.our-testimonials .testimonials-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(180deg, #d4af37, #b8860b);
}
.our-testimonials .testimonials-box:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(212, 175, 55, 0.3);
}
.customer-item i {
    color: rgba(212, 175, 55, 0.5);
    font-size: 30px;
    margin-bottom: 15px;
}
.customer-box p {
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.6;
}
.customer-img {
    margin-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
.customer-img img {
    border-radius: 50%;
    border: 2px solid #d4af37;
    width: 50px; height: 50px;
    object-fit: cover;
}
.customer-img h5 {
    color: #fff;
    margin: 0;
    font-weight: 600;
}

/* Video Section */
.video-wrapper {
    background: #020b16;
    padding: 60px 0;
}
.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}
.video-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
