/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Arial', 'Helvetica', sans-serif; /* You can change this to your preferred font */
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif; /* Same font for all headings */
    font-weight: 600;
}

/* Make sure all navigation links have consistent styling */
nav ul li a {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

/* Ensure form elements use the same font */
input, textarea, button, select {
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: padding 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

nav ul li a:hover {
    color: #d4af37;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4af37;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #c19b2e;
}

/* Slider Navigation */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    padding: 16px;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Dots */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: white;
}

/* Section Styles */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4af37;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text, .about-image {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products-section {
    background-color: #f9f9f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #333;
}

.product-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Contact Section */
/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-hero {
    background-image: url('../assests/contact us.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 3rem;
    padding: 80px 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
    margin-top: 70px; /* Space for fixed header */
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-hero p {
    font-size: 1.2rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h2, .contact-form h2, .map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-info h2:after, .contact-form h2:after, .map-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f0ad4e; /* Golden color to match your brand */
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: #f0ad4e;
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.info-item p {
    color: #666;
    line-height: 1.5;
}

.contact-form form {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #f0ad4e;
    outline: none;
    box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.2);
}

.btn-primary {
    background-color: #f0ad4e;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #e09932;
}

.map-section {
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
}

/* Footer Styles */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-social {
    margin-bottom: 30px;
}
.footer-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.footer-links h3, .footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d4af37;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    transition: background-color 0.1s ease;
}

.social-icon:hover {
    background-color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    header {
        padding: 15px 30px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
    }
    
    nav ul li a {
        padding: 10px 0;
        display: block;
    }
    
    .slide-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }
    
    .slide-content h2 {
        font-size: 30px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links h3::after, .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

/* About Page Styles */

/* Hero Section */
.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Products Overview Section */
.products-overview-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-item i {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.product-item h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 20px;
}

.product-item p {
    color: #666;
    line-height: 1.5;
}

.section-conclusion {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Manufacturing Section */
.manufacturing-section {
    padding: 80px 0;
}

.manufacturing-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.manufacturing-text {
    flex: 1;
    min-width: 300px;
}

.manufacturing-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.manufacturing-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.manufacturing-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.manufacturing-image:hover img {
    transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #f5f7fa;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.5;
}

/* Vision & Mission Section */
.values-section {
    padding: 80px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.vision-card, .mission-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.vision-card i, .mission-card i {
    font-size: 50px;
    margin-bottom: 20px;
}

.vision-card h3, .mission-card h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.vision-card p, .mission-card p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.values-conclusion {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 18px;
    font-style: italic;
    color: #555;
    max-width: 900px;
    margin: 40px auto 0;
}

/* Section Headings */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #D4AF37;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-content,
    .manufacturing-content {
        flex-direction: column;
    }
    
    .about-text,
    .about-image,
    .manufacturing-text,
    .manufacturing-image {
        width: 100%;
    }
    
    .about-image,
    .manufacturing-image {
        margin-top: 30px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 250px;
    }
    
    .about-section,
    .products-overview-section,
    .manufacturing-section,
    .why-choose-section,
    .values-section {
        padding: 50px 0;
    }
    
    .product-item,
    .benefit-card,
    .vision-card,
    .mission-card {
        padding: 20px;
    }
}

/* Instagram-style Reel Videos Section */
.reels-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.reels-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #f1f1f1;
}

.reels-container::-webkit-scrollbar {
    height: 8px;
}

.reels-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reels-container::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.reel-card {
    flex: 0 0 auto;
    width: 300px;
    height: 530px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    position: relative;
}

.reel-card:hover {
    transform: translateY(-10px);
}

.reel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reel-wrapper video,
.reel-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.reel-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.reel-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}
.reel-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reel-play-button:hover {
    background-color: rgba(212, 175, 55, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-play-button i {
    color: white;
    font-size: 24px;
}

.reel-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 3;
}
.reel-wrapper video {
    cursor: pointer;
}
/* Make sure video takes full space */
.reel-wrapper video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.reel-control-button {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reel-control-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.reel-control-button i {
    color: white;
    font-size: 16px;
}

.reels-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.reels-nav-button {
    background-color: #d4af37;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.reels-nav-button:hover {
    background-color: #c19b2e;
    transform: scale(1.1);
}

.reels-nav-button i {
    font-size: 20px;
}

/* Responsive adjustments for reels */
@media (max-width: 768px) {
    .reel-card {
        width: 250px;
        height: 450px;
    }
    
    .reel-overlay h3 {
        font-size: 16px;
    }
    
    .reel-play-button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .reel-card {
        width: 220px;
        height: 400px;
    }
    
    .reels-nav-button {
        width: 40px;
        height: 40px;
    }
}

/* Manufacturing Media Styles */
.manufacturing-media {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manufacturing-media .reel-card {
    width: 300px;
    height: 530px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.manufacturing-media .reel-card:hover {
    transform: translateY(-10px);
}

.manufacturing-media .reel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.manufacturing-media .reel-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.manufacturing-media .reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.manufacturing-media .reel-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.manufacturing-media .reel-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.manufacturing-media .reel-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.manufacturing-media .reel-play-button:hover {
    background-color: rgba(212, 175, 55, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.manufacturing-media .reel-play-button i {
    color: white;
    font-size: 24px;
}

.manufacturing-media .reel-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.manufacturing-media .reel-control-button {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.manufacturing-media .reel-control-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.manufacturing-media .reel-control-button i {
    color: white;
    font-size: 16px;
}

/* Responsive adjustments for manufacturing media */
@media (max-width: 992px) {
    .manufacturing-media {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .manufacturing-media .reel-card {
        width: 250px;
        height: 450px;
    }
    
    .manufacturing-media .reel-overlay h3 {
        font-size: 16px;
    }
    
    .manufacturing-media .reel-play-button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .manufacturing-media .reel-card {
        width: 220px;
        height: 400px;
    }
}