/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Takes 80% of screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Video/Image Frame */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darkens the image for text readability */
    z-index: 1;
}

.hero-content {
    z-index: 2;
    text-align: center;
    padding: 0 5%;
}

.hero-logo {
    width: 200px; /* Adjust based on your logo size */
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Stats Bar */
.stats-bar {
    background: #000;
    padding: 40px 0;
    border-bottom: 1px solid #222;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px;
    flex: 1;
    min-width: 150px;
}

.stat-item i {
    color: #FFD700; /* Your Brand Yellow */
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
}

.stat-item p {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Divider lines between stats (optional) */
.stat-item:not(:last-child) {
    border-right: 1px solid #333;
}

@media (max-width: 768px) {
    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #333;
    }
    .hero h1 {
        font-size: 36px;
    }
}
.hero-bg img, .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills space without stretching */
}
.hero-content {
    z-index: 2;
    text-align: center;
    padding: 0 5%;
}

/* Responsiveness for text */
.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem); /* Auto scales between 2rem and 4rem */
    color: #fff;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh; /* Slightly smaller on mobile to feel more comfortable */
    }
}
/* Craftsmanship Section */
.craftmanship {
    padding: 100px 0;
    background-color: #000;
    text-align: center;
}

.section-header .sub-title {
    color: #FFD700; /* Brand Yellow */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-header .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 50px;
}

/* Container for Frame and Cards */
.craft-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Frame */
.main-frame {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid #222;
    z-index: 2;
}

.main-frame img {
    width: 100%;
    display: block;
    filter: brightness(0.7);
}

/* Yellow Glow Effect */
.glow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Play Button Overlay */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Floating Cards Styling */
.floating-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #333;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    z-index: 10;
    text-align: left;
    backdrop-filter: blur(5px);
    width: 250px;
    animation: float 4s ease-in-out infinite;
}

.card-icon {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 10px;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 18px;
}

.card-text h4 {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 2px;
}

.card-text p {
    color: #888;
    font-size: 11px;
}

/* Positioning for Desktop */
.card-left-top { top: 20%; left: -10%; animation-delay: 0s; }
.card-left-bottom { bottom: 20%; left: -5%; animation-delay: 1s; }
.card-right-top { top: 25%; right: -10%; animation-delay: 0.5s; }
.card-right-bottom { bottom: 15%; right: -8%; animation-delay: 1.5s; }

/* Float Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsiveness */
@media (max-width: 1100px) {
    .floating-card {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .craft-container {
        flex-direction: column;
    }
    .floating-card {
        position: static;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
        animation: none; /* Disable floating on mobile for better usability */
    }
    .main-frame {
        margin: 30px 0;
    }
}
/* --- Who We Are Section --- */
.about-overview {
    padding: 120px 0;
    background: #000;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-img-container {
    flex: 1;
}

.framed-image {
    position: relative;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 12px;
}

.framed-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    filter: grayscale(20%);
}

.about-content {
    flex: 1;
}

.accent-bar {
    width: 60px;
    height: 2px;
    background: #FFD700; /* Primary Yellow Brand Color */
    margin-bottom: 25px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 25px;
}

.about-content p {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #FFD700;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.4s ease;
}

.btn-outline-gold:hover {
    background: #FFD700;
    color: #000;
}
/* --- Strengths Grid Logic --- */
.b2b-strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Featured Card: Takes 2 Columns and 2 Rows height */
.strength-card-featured {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    min-height: 500px; /* Increased height to match two stacked cards */
    background: url('../img/manufacturing-editorial.jpg') no-repeat center center;
    background-size: cover; /* Keeps image responsive */
    border-radius: 20px;
    overflow: hidden;
    padding: 50px;
    display: flex;
    align-items: flex-end;
    border: 1px solid #222;
}

/* Darkened overlay for editorial text readability */
.card-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.card-inner-content {
    position: relative;
    z-index: 2;
}

/* Small Cards Styling */
.strength-card-small {
    background: #111;
    border: 1px solid #222;
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gold-icon {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 20px;
}
/* Hover effect consistent with brand colors */
.strength-card-small:hover {
    border-color: #FFD700; /* Yellow accent */
    transform: translateY(-5px);
}

/* Responsive Handling */
@media (max-width: 1100px) {
    .strength-card-featured {
        min-height: 450px;
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .b2b-strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strength-card-featured {
        grid-column: span 2; /* Full width on tablets */
        grid-row: span 1;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .b2b-strengths-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .strength-card-featured {
        grid-column: span 1;
        min-height: 300px;
    }
    
    .h2-serif {
        font-size: 28px;
    }
}
/* --- Manufacturing Excellence Section --- */
.manufacturing-excellence {
    padding: 120px 0;
    background-color: #000;
}

.manufacturing-row {
    display: flex;
    align-items: center;
    gap: 100px;
}

.manufacturing-text {
    flex: 1;
}

.manufacturing-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

.manufacturing-text p {
    color: #888;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Overlapping Image Stack */
.manufacturing-visual {
    flex: 1.2;
    position: relative;
}

.image-stack {
    position: relative;
    height: 600px; /* Adjust based on content */
}

.main-frame-white, .sub-frame-white {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    position: absolute;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.main-frame-white {
    width: 80%;
    right: 0;
    top: 0;
    z-index: 1;
}

.sub-frame-white {
    width: 45%;
    left: 0;
    bottom: 50px;
    z-index: 3;
}

.image-stack img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Floating Black Info Pill */
.floating-info-pill {
    position: absolute;
    top: 20px;
    right: -20px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    padding: 25px 30px;
    border-radius: 15px;
    z-index: 5;
    min-width: 250px;
}

.floating-info-pill ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floating-info-pill li {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-info-pill li i {
    color: #FFD700;
}

/* --- Global Logistics Section --- */
.global-logistics {
    position: relative;
    padding: 180px 0;
    background: url('../image/world-map.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Optional parallax effect */
    text-align: center;
}

.logistics-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darkens the map so text pops */
    z-index: 1;
}

.logistics-content {
    position: relative;
    z-index: 2;
}

.label-gold-centered {
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.global-logistics h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    margin-bottom: 25px;
    color: #fff;
}

.text-gold {
    color: #FFD700;
}

.global-logistics p {
    color: #ccc;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .manufacturing-row {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .manufacturing-text p { margin: 0 auto 40px; }
    .image-stack { height: 500px; max-width: 600px; margin: 0 auto; }
    .global-logistics h1 { font-size: 52px; }
}

@media (max-width: 768px) {
    .image-stack { height: 400px; }
    .main-frame-white { width: 90%; }
    .sub-frame-white { width: 50%; bottom: 20px; }
    .floating-info-pill { position: static; margin: 20px auto; width: fit-content; }
    .global-logistics h1 { font-size: 36px; }
}
/* --- Feedback & Marquee --- */
.feedback-marquee-section {
    background: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* The lighting effect from the screenshot */
.top-glow-effect {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%; height: 400px;
    background: radial-gradient(circle, rgba(212, 167, 74, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.marquee-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
}

.marquee-header p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 60px;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeMove 40s linear infinite;
}

@keyframes marqueeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 380px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 30px;
    border-radius: 4px; /* Sharper edges like the screenshot */
    text-align: left;
}

.star-rating {
    color: #d4a74a; /* Muted Gold */
    font-size: 10px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-profile img {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #222;
}

.u-name { display: block; color: #fff; font-size: 13px; font-weight: 600; }
.u-role { display: block; color: #555; font-size: 11px; }

/* --- The Glossy CTA --- */
.final-cta-section {
    padding: 80px 0 120px;
    background: #000;
}

.cta-box {
    position: relative;
    background: #050505;
    border: 1px solid #111;
    border-radius: 30px;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

/* The Background Lighting behind "GLOSSY" */
.cta-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(234, 174, 55, 0.1) 0%, rgba(149, 149, 149, 0) 80%);
    z-index: 1;
}

/* The Watermark Text */
.cta-watermark-text {
    position: absolute;
    top: 55%; left: 50%;
    transform: translate(-50%, -45%);
    font-size: 18vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02); /* Faint like the screenshot */
    letter-spacing: 5px;
    z-index: 0;
    pointer-events: none;
    font-family: sans-serif;
}

.cta-inner-content {
    position: relative;
    z-index: 2;
}

.cta-inner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.accent-gold { color: #d4a74a; }

.cta-inner-content p {
    color: #777;
    font-size: 16px;
    margin-bottom: 40px;
}

.btn-cta-gold {
    display: inline-block;
    background: #d4a74a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.btn-cta-gold:hover {
    background: #fff;
    color: #000;
}

/* Responsiveness */
@media (max-width: 768px) {
    .cta-inner-content h2 { font-size: 32px; }
    .cta-watermark-text { font-size: 25vw; }
    .testimonial-card { min-width: 300px; }
}
.feedback-marquee-section {
    padding: 100px 0;
    background: #000;
    overflow: hidden; /* Important for the marquee */
}

.marquee-header {
    text-align: center;
    margin-bottom: 60px;
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
    padding: 20px 0;
}

/* Pause animation on hover for readability */
.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.feedback-card {
    min-width: 400px;
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.feedback-card:hover {
    border-color: #FFD700;
}

.quote-icon {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

.feedback-card p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.client-info span {
    display: block;
}

.client-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-region {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}
.cta-box {
    position: relative;
    background: #050505;
    border: 1px solid #111;
    border-radius: 30px;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

/* The Background Lighting behind "GLOSSY" */
.cta-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    /* Change 0.1 to 0.3 for 3x brightness. Increase 60% to 100% for more spread */
    width: 100%; 
    height: 100%;
    background: radial-gradient(circle, rgba(212, 167, 74, 0.3) 0%, rgba(0,0,0,0) 75%);
    z-index: 1;
}
/* The Watermark Text */
.cta-watermark-text {
    position: absolute;
    top: 55%; left: 50%;
    transform: translate(-50%, -45%);
    font-size: 18vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02); /* Faint like the screenshot */
    letter-spacing: 5px;
    z-index: 0;
    pointer-events: none;
    font-family: sans-serif;
}

.cta-inner-content {
    position: relative;
    z-index: 2;
}

.cta-inner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.accent-gold { color: #d4a74a; }

.cta-inner-content p {
    color: #777;
    font-size: 16px;
    margin-bottom: 40px;
}

.btn-cta-gold {
    display: inline-block;
    background: #d4a74a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.btn-cta-gold:hover {
    background: #fff;
    color: #000;
}

/* Responsiveness */
@media (max-width: 768px) {
    .cta-inner-content h2 { font-size: 32px; }
    .cta-watermark-text { font-size: 25vw; }
    .testimonial-card { min-width: 300px; }
}