/* Import Barlow Semi Condensed Font */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;600;700;800;900&display=swap');

/* =====================================================
   HERO SECTION – MOBILE ONLY
   Break after PROTECTION • Bottom Right • Safe
===================================================== */
@media (max-width: 768px) {

  /* Hero base */
  .mku-hero-section {
    min-height: 65vh !important;
    position: relative;
  }

  /* Content bottom align */
  .mku-hero-content {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    padding: 0 1rem 1.4rem !important;
    min-height: 65vh !important;
  }

  /* Row full width */
  .mku-hero-content .row {
    width: 100%;
    margin: 0;
  }

  /* Hide empty left column */
  .mku-hero-content .col-sm-4 {
    display: none !important;
  }

  /* Right column full width */
  .mku-hero-content .col-sm-8 {
    width: 100% !important;
    padding: 0 !important;
  }

  /* Text bottom-right */
  .mku-hero-text-right {
    max-width: 100% !important;
    margin-left: auto !important;
    text-align: right !important;
  }

  /* Title styling */
  .mku-hero-title-right {
    font-size: 1.4rem !important;
    line-height: 1.25 !important;
    letter-spacing: 1px !important;
    margin: 0 0 0.35rem 0 !important;
    white-space: normal !important;   /* 🔥 allow break */
  }

  /* LINE CONTROL */
  .mku-hero-line1 {
    display: block !important;        /* BALLISTIC PROTECTION */
    margin: 0 !important;
  }

  .mku-hero-line2 {
    display: block !important;        /* FOR MILITARY */
    margin: 0 !important;
  }

  /* Subtitle */
  .mku-hero-subtitle-right {
    font-size: 0.75rem !important;
    letter-spacing: 0.8px !important;
    margin: 0 !important;
  }

}

/* MKU Style Hero Section */
.mku-hero-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mku-navbar {
    position: relative;
    z-index: 10;
    padding: 1rem 0;
    background: transparent;
    min-height: 70px;
}

@media (max-width: 992px) {
    .mku-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1002;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}

.mku-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.mku-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mku-logo img {
    width: 120px;
    height: auto;
}

.mku-logo span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mku-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile Menu Toggle Button */
.mku-nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mku-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
}

.mku-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mku-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mku-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mku-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(254, 240, 0, 0.2);
    touch-action: manipulation;
    user-select: none;
}

.mku-nav-links a:hover,
.mku-nav-links a.active {
    color: #ffffff;
}

.mku-nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mku-nav-icons i {
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.mku-nav-icons i:hover {
    color: #fef000;
}

.mku-hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    min-height: calc(100vh - 100px);
}

.mku-hero-text {
    max-width: 600px;
}

.mku-hero-title {
    font-size: 5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.mku-hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 1px;
}

.mku-hero-text-right {
    text-align: right;
    max-width: 600px;
    margin-top: 245px;
    margin-left: auto;
}

.mku-hero-title-right {
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    white-space: normal;
    display: block;
}

.mku-hero-line1 {
    display: block;
    margin-bottom: 0.3rem;
}

.mku-hero-line2 {
    display: block;
}

.mku-hero-subtitle-right {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.mku-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('images/soilder-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mku-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom left, transparent 0%, transparent 30%, rgba(254, 240, 0, 0.3) 70%, rgba(254, 240, 0, 0.5) 100%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .mku-hero-section {
        width: 100%;
    }
    
    .mku-hero-title {
        font-size: 3.5rem;
    }
    
    .mku-nav-toggle {
        display: flex !important;
        z-index: 1005;
        position: relative;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .mku-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1003;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    .mku-nav-links.active {
        right: 0;
    }
    
    .mku-nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(254, 240, 0, 0.3);
        touch-action: manipulation;
        position: relative;
        z-index: 1004;
        pointer-events: auto !important;
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .mku-nav-links a:hover,
    .mku-nav-links a:active {
        color: #fef000;
        padding-left: 1rem;
        background: rgba(254, 240, 0, 0.1);
    }
    
    /* Overlay when menu is open */
    .mku-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        pointer-events: auto;
    }
    
    .mku-nav-overlay.active {
        display: block;
    }
    
    .mku-nav-toggle {
        z-index: 1005;
        position: relative;
    }
}

@media (max-width: 768px) {
    .mku-hero-section,
    .hero-section,
    .products-banner-section,
    .company-overview-section {
        width: 100% !important;
    }
    
    .mku-hero-section {
        min-height: 50vh;
    }
    
    .hero-section {
        min-height: 40vh;
        padding: 4rem 0 3rem;
    }
    
    .products-banner-section {
        min-height: 250px;
        padding-top: 80px;
    }
    
    .company-overview-section {
        padding: 3rem 0;
        min-height: 300px;
    }
    
    /* Reduce navbar height on mobile */
    .navbar {
        padding: 0.3rem 0 !important;
        min-height: 50px;
    }
    
    .mku-navbar {
        padding: 0.75rem 0 !important;
        min-height: 55px;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(26, 26, 26, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 1002 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Add padding to body on mobile to account for fixed navbar */
    body.home-page {
        padding-top: 55px;
    }
    
    /* Reduce navbar links size on mobile */
    .navbar-nav .nav-link {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .mku-nav-links a {
        font-size: 0.9rem !important;
        padding: 0.75rem 0 !important;
    }
    
    .navbar-brand .logo-img {
        width: 60px !important;
        height: auto !important;
    }
    
    .mku-logo img {
        width: 70px !important;
    }
    
    .mku-hero-content {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .mku-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .mku-hero-subtitle {
        font-size: 1rem;
    }
    .mku-logo span {
        display: none;
    }
    
    .mku-logo img {
        width: 90px;
    }
}

/* Renaissance Hero Section Styles */
.renaissance-hero-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
}

/* Hero Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-img-left {
    animation: slideInFromLeft 1s ease-out forwards;
    opacity: 0;
}

.hero-img-right {
    animation: slideInFromRight 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero-text-animate {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-left-content .hero-text-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-left-content .hero-text-animate:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-left-content .hero-text-animate:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-right-content .hero-text-animate:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-right-content .hero-text-animate:nth-child(2) {
    animation-delay: 0.5s;
}

.renaissance-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.renaissance-nav-links a:hover {
    color: #666 !important;
}

.renaissance-content-panel {
    background: #f6f0e4;
    border-radius: 16px;
    padding: 3rem 3.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .renaissance-navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .renaissance-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem !important;
    }
    
    .renaissance-content-panel {
        padding: 2rem 1.5rem;
    }
    
    .renaissance-content-panel > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .renaissance-content-panel h1 {
        font-size: 3rem !important;
    }
    
    .renaissance-content-panel > div > div:last-child h1 span {
        font-size: 4rem !important;
    }
}

@media (max-width: 768px) {
    .renaissance-hero-section {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .renaissance-content-panel {
        padding: 1.5rem 1rem;
    }
    
    .renaissance-content-panel h1 {
        font-size: 2.5rem !important;
    }
    
    .renaissance-content-panel > div > div:last-child h1 span {
        font-size: 3rem !important;
    }
}

/* Improve mobile navbar collapse readability */
@media (max-width: 991.98px) {
    .navbar .collapse {
        background: #1a1a1a;
        padding: 0.5rem 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        position: relative;
        z-index: 1001;
    }
    
    .navbar .collapse .navbar-nav {
        position: relative;
        z-index: 1002;
    }
    
    .navbar .collapse .navbar-nav .nav-link {
        position: relative;
        z-index: 1003;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .navbar .collapse .navbar-nav .nav-link::before {
        pointer-events: none !important;
    }
}
/* Normalize hero inner row height to avoid overflow/overlap */
.hero-section .row.min-vh-100 {
    min-height: auto !important;
}
/* Ensure About Us section on home stacks below hero */
#about-us {
    position: relative;
    clear: both;
    margin-top: 1.5rem;
}

/* Enhanced About RDR Defence (Home) */
.about-home-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #20231a 100%);
    padding: 2.5rem 0;
    border-top: 2px solid rgba(254, 240, 0, 0.2);
    border-bottom: 2px solid rgba(254, 240, 0, 0.1);
}

.about-header-enhanced .section-title {
    color: #000000;
    text-shadow: 0 0 16px rgba(0, 47, 254, 0.055);
}

.about-header-enhanced .section-subtitle {
    color: #c5c6be;
}

.about-copy {
    color: #c5c6be;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 500;
}

.about-copy p { margin-bottom: 1rem; }

.about-features {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1rem;
}

.about-features li {
    color: #e5e6e0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.about-features i {
    color: #fef000;
    width: 1.2rem;
}

.about-cta-wrap { margin-top: 0.5rem; }

.about-cta {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 400;
    letter-spacing: 1px;
}

.about-image-wrap {
    display: flex;
    justify-content: center;
}

.about-image-enhanced {
    border-radius: 14px;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    filter: none !important;
}

@media (max-width: 992px) {
    .about-features { grid-template-columns: 1fr; }
}

/* Home page About Us section - light background */
#about-us.about-home-section {
    background: #ffffff !important;
}

#about-us.about-home-section .about-features li {
    color: #333333;
}

#about-us.about-home-section .about-copy {
    color: #333333;
}

/* Home About section - mobile spacing */
@media (max-width: 768px) {
    #about-us.about-home-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
        margin-top: 0.5rem !important;
    }
}

/* Modern About Us Design */
.about-tab {
    transition: all 0.3s ease;
}

.about-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-tab.active {
    background: #fef000 !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .about-modern-design h2 {
        font-size: 2.5rem !important;
    }
    
    .about-tab {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Checkmark Icon Animations */
.checkmark-icon {
    position: relative;
    overflow: hidden;
}

.checkmark-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #090884;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.feature-box-item:hover .checkmark-icon::before {
    width: 50px;
    height: 50px;
}

.feature-box-item:hover .checkmark-icon {
    background: #090884;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 15px rgba(47, 0, 254, 0.4);
}

.feature-box-item:hover .checkmark-icon-i {
    color: #ffffff !important;
    transform: scale(1.2);
}

.feature-box-item {
    transition: transform 0.3s ease;
}

.feature-box-item:hover {
    transform: translateX(5px);
}

@keyframes checkmarkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.checkmark-icon {
    animation: checkmarkPulse 2s ease-in-out infinite;
}

/* Modern Category Cards */
.categories-modern-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.category-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-card-modern img {
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.category-card-modern:hover img {
    filter: grayscale(0%) saturate(1.2) contrast(1.05);
    transform: scale(1.1);
}

.category-card-modern:hover .category-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.category-overlay {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.category-card-modern:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    opacity: 1;
    transform: translateY(0);
}

.category-icon-overlay {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .category-card-modern {
        height: 300px !important;
    }
}

/* Testimonial Hero */
.testimonial-hero {
    position: relative;
    background: url('images/shades.jpg') center/cover no-repeat;
    padding: 5rem 0;
    color: #fff;
    overflow: hidden;
}

.testimonial-hero .container {
    position: relative;
    z-index: 2;
}

.testimonial-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0.85));
    z-index: 1;
}

.testimonial-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.testimonial-title {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.testimonial-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    flex: 1;
    max-width: 900px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
    color: #f2f2f2;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: #fef000;
    font-weight: 700;
    margin-bottom: 2rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1rem;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fef000;
    background: transparent;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.testimonial-dots .dot.active {
    background: #fef000;
    opacity: 1;
}

.testimonial-arrow {
    background: rgba(254, 240, 0, 0.2);
    border: 2px solid #fef000;
    color: #fef000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10;
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    background: rgba(254, 240, 0, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(254, 240, 0, 0.4);
}

.testimonial-arrow:active {
    transform: scale(0.95);
}

.testimonial-arrow i {
    pointer-events: none;
}

@media (max-width: 768px) {
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-slider-container {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-title { font-size: 2rem; }
    .testimonial-quote { font-size: 1.05rem; padding: 0 1rem; }
}

/* Our Categories Section - Original List + Image Layout */
.categories-section {
    background: #1a1a1a;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.categories-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.categories-section .container {
    position: relative;
    z-index: 2;
}

.category-image-wrapper {
    position: relative;
    height: 432px;
    width: 104%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.4s;
    display: block;
}

#default-image {
    opacity: 1;
    position: relative;
}

#category-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.categories-section .section-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.categories-section .section-subtitle {
    font-size: 1.1rem;
    color: #c5c6be;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-categories-list {
    padding-right: 2rem;
}

.category-item {
    text-decoration: none !important;
    display: block;
}

.category-item:hover {
    text-decoration: none !important;
}

.category-item > div:hover {
    padding-left: 1rem;
}

@media (max-width: 992px) {
    .categories-section .section-title {
        font-size: 2.5rem;
    }
    .product-categories-list {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    .category-image-wrapper {
        height: 220px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 2.5rem 0;
        background-attachment: scroll;
    }
    .categories-section .section-title {
        font-size: 2rem;
    }
    
    /* Hide category images on mobile */
    .category-image-wrapper {
        display: none !important;
    }
    
    /* Make category items full width and more touchable */
    .product-categories-list {
        width: 100%;
        padding-right: 0;
    }
    
    .category-item {
        width: 100%;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(254, 240, 0, 0.2);
    }
    
    .category-item > div {
        padding: 1.25rem 1rem !important;
        min-height: 60px;
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-bottom: 0.75rem;
        border: 1px solid rgba(254, 240, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .category-item > div:active {
        background: rgba(254, 240, 0, 0.15);
        transform: scale(0.98);
    }
    
    /* Ensure category items are fully clickable */
    .category-item {
        -webkit-tap-highlight-color: rgba(254, 240, 0, 0.3);
        touch-action: manipulation;
    }
    
    .category-item .category-name {
        font-size: 1.1rem !important;
        flex: 1;
    }
    
    .category-item span:first-child {
        font-size: 1.5rem !important;
        min-width: 50px !important;
    }
    
    .category-item i {
        opacity: 1 !important;
        font-size: 1.2rem;
    }
}
/* Custom CSS for RDR Defence Website */

:root {
    --primary-dark: #656952;
    --secondary-light: #989e83;
    --accent-light: #c5c6be;
    --highlight-yellow: #fef000;
    --text-white: #ffffff;
    --text-light: #f8f9fa;
    --bg-dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Semi Condensed', Sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    padding-top: 0;
}

body.home-page {
    padding-top: 0;
}

@media (max-width: 992px) {
    body.home-page {
        padding-top: 55px;
    }
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 80px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Navigation Styles */
.navbar {
    background: #1a1a1a !important;
    padding: 0.4rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(254, 240, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 60px;
    border-bottom: 2px solid rgba(254, 240, 0, 0.3);
    position: relative;
    z-index: 1000;
    max-height: 75px;

}

.navbar * {
    pointer-events: auto;
}

.navbar .navbar-nav,
.navbar .navbar-nav .nav-link {
    pointer-events: auto !important;
}

/* Improve mobile toggler visibility */
.navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6);
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none; /* allow clicks on nav links */
}

/* Hero card navbar (inside white box) */
.home-page .hero-card-nav {
    position: static;
    background: transparent !important;
    box-shadow: none;
    border-bottom: none;
    padding: 0 0 1rem;
}

.home-page .hero-card-nav .nav-link {
    color: #111 !important;
}

.home-page .hero-card-nav .nav-link:hover {
    color: #000 !important;
}

@keyframes navbarShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-yellow);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(254, 240, 0, 0.2);
    touch-action: manipulation;
    user-select: none;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 240, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    pointer-events: none; /* allow clicks on nav links */
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: #666666;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:active {
    background: #666666;
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover::before {
    opacity: 1;
    background: #666666;
}

/* Hero Logo Section */
.hero-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(254, 240, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-logo {
    height: 80px;
    width: auto;
    filter: brightness(1.3) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: brightness(1.3) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }
    100% {
        filter: brightness(1.6) drop-shadow(0 5px 20px rgba(254, 240, 0, 0.4));
    }
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.hero-brand-main {
    font-size: 3rem;
    font-weight: 400;
    color: #dc3545;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-brand-sub {
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: clamp(640px, 90vh, 860px);
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    overflow: hidden;
    width: 100%;
}

.editorial-hero .hero-bg-media {
    position: absolute;
    inset: 0;
    background: url('images/mission.webp') center/cover no-repeat;
    transform: scale(1.05);
    filter: grayscale(0.15);
}

.editorial-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(10, 10, 10, 0.88) 0%, rgba(27, 27, 27, 0.72) 42%, rgba(0, 0, 0, 0.55) 100%);
    backdrop-filter: blur(2px);
}

.editorial-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="120" height="120" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="120" height="120" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.75"/%3E%3C/svg%3E');
    opacity: 0.4;
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-meta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.75rem;
}

.hero-meta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.92rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.hero-meta-links span {
    position: relative;
}

.hero-meta-links span::after {
    content: '';
    position: absolute;
    bottom: -0.35rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(254, 240, 0, 0.55);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hero-meta-links span:hover::after {
    transform: scaleX(1);
}

.hero-meta-cta {
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-meta-cta:hover {
    background: #fef000;
    color: #111;
    border-color: #fef000;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.hero-copy-block {
    grid-column: span 5;
    color: #ffffff;
    position: relative;
    padding-right: 1rem;
}

.hero-whisper {
    text-transform: lowercase;
    letter-spacing: 0.7em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
}

.hero-kicker {
    font-size: 0.95rem;
    letter-spacing: 0.4em;
    color: #fef000;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.hero-display {
    font-size: clamp(2.6rem, 4vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-subline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 460px;
    margin-bottom: 1.25rem;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hero-contact-label {
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.hero-contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.hero-contact a:hover {
    color: #fef000;
}

.hero-location {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hero-number {
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 1.5rem;
}

.hero-gallery-grid {
    grid-column: span 7;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 120px;
    gap: 1.5rem;
    position: relative;
}

.hero-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card__label {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: #111;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    padding: 0.35rem 0.9rem;
    text-transform: uppercase;
    border-radius: 999px;
}

.hero-card__footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
}

.hero-card--wide {
    grid-column: span 4;
    grid-row: span 4;
}

.hero-card--tall {
    grid-column: span 2;
    grid-row: span 5;
}

.hero-card--mini {
    grid-column: 4 / span 3;
    grid-row: 4 / span 2;
    align-self: end;
}

.hero-card--mini img {
    height: 75%;
}

.hero-card--mini .hero-card__footer {
    font-size: 0.75rem;
    justify-content: center;
}

@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .hero-copy-block,
    .hero-gallery-grid {
        grid-column: span 1;
    }
    .hero-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }
    .hero-card--wide,
    .hero-card--tall,
    .hero-card--mini {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 5.5rem;
    }
    .hero-meta-strip {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-meta-links {
        gap: 0.75rem;
        letter-spacing: 0.12em;
    }
    .hero-display {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    .hero-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}

/* Hero media box (two-image white panel) */
.hero-media-shell {
    display: flex;
    justify-content: center;
}

.hero-media-box {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    gap: 2rem;
    background: #f6f0e4;
    padding: 2.2rem 2.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    max-width: 960px;
    width: 100%;
    height: 500px;
}

.hero-media-main,
.hero-media-side {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.hero-media-main {
    height: 380px;
}

.hero-media-side {
    height: 300px;
    align-self: flex-end;
}

.hero-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-media-box:hover .hero-media-img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .hero-media-box {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .hero-media-main,
    .hero-media-side {
        height: 220px;
    }
}



@keyframes titleGlow {
    0% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(254, 240, 0, 0.3);
    }
    100% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 40px rgba(254, 240, 0, 0.6);
    }
}

/* hero subtitle removed */

/* Removed unused subtitleFloat animation */

/* hero cta removed */

/* hero cta hover removed */

/* Removed unused ctaPulse animation */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(254, 240, 0, 0.1);
    border: 2px solid var(--highlight-yellow);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--highlight-yellow);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.hero-badge i {
    font-size: 1rem;
}

@keyframes badgeGlow {
    0% { 
        box-shadow: 0 0 10px rgba(254, 240, 0, 0.3);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 20px rgba(254, 240, 0, 0.6);
        transform: scale(1.02);
    }
}


@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-light);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--secondary-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--highlight-yellow);
}

.cta-arrows {
    display: flex;
    gap: 0.5rem;
}

.cta-arrows i {
    color: var(--highlight-yellow);
    font-size: 1rem;
}

/* hero image removed */

/* hero main image removed */

/* hero main image decorations removed */

@keyframes backgroundPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.05);
        opacity: 1;
    }
}

/* hero main soldier image removed */

/* hero main soldier hover removed */

/* hero product images removed */

/* hero product showcase removed */

/* hero product showcase hover removed */

/* hero product showcase variants removed */

/* hero product showcase images removed */

/* Removed old product label and unused animation keyframes */

/* About Us Section */
.about-section {
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    padding-top: 2rem;
}

.about-content {
    background: var(--primary-dark);
    padding: 2rem 3rem;
    position: relative;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 2rem 3rem;
    transform: skewY(-2deg);
    transform-origin: top left;
}

.about-title {
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text-content {
    margin-top: 6rem;
    position: relative;
}

.about-block {
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--highlight-yellow);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-block p {
    color: var(--text-white);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.about-products {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.product-grid {
    flex: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.product-grid-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-grid:hover .product-grid-img {
    transform: scale(1.05);
}

.about-image {
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, #989e83 0%, #7a8068 50%, #989e83 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-left: 5px solid #fef000;
    min-height: 700px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 240, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.officer-img {
    width: 75%;
    height: 79%;
    object-position: center;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    animation: imageGlow 6s ease-in-out infinite alternate;
    padding-right: 5%;
}

.officer-img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    
}

@keyframes imageGlow {
    0% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        border-color: #fef000;
    }
    100% {
        box-shadow: 0 25px 60px rgba(254, 240, 0, 0.3);
        border-color: rgba(254, 240, 0, 0.8);
    }
}

/* Diagonal Split Effect */
.about-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, transparent 100%);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: transparent;
}

/* Section Styles */
.section-padding {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(254, 240, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(152, 158, 131, 0.03) 0%, transparent 50%);
    animation: sectionBgFloat 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes sectionBgFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.bg-dark {
    background-color: var(--bg-dark);
    position: relative;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(254, 240, 0, 0.02) 50%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: darkBgMove 20s linear infinite;
    z-index: 1;
}

@keyframes darkBgMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-3px); }
    50% { transform: translateX(-3px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(-3px); }
    100% { transform: translateX(0) translateY(0); }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(254, 240, 0, 0.3); }
    100% { text-shadow: 0 0 20px rgba(254, 240, 0, 0.6); }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-light);
    margin-bottom: 3rem;
    position: relative;
}


/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--highlight-yellow);
}

.feature-icon {
    font-size: 3rem;
    color: var(--highlight-yellow);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--accent-light);
    font-size: 1rem;
}

/* Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.product-image img {
    max-height: 200px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.product-content {
    padding: 1.5rem;
}

.product-content h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--accent-light);
    font-size: 1rem;
}

/* Gallery */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
}

/* Gallery Collage Styles */
.gallery-wide img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.gallery-tall img {
    width: 60%;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight-yellow);
    color: var(--text-white);
    box-shadow: 0 0 0 0.2rem rgba(254, 240, 0, 0.25);
}

.form-control::placeholder {
    color: var(--accent-light);
}

.btn-primary {
    background-color: var(--highlight-yellow);
    border-color: var(--highlight-yellow);
    color: var(--bg-dark);
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6d400;
    border-color: #e6d400;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 1.5rem 0 2.5rem;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(254, 240, 0, 0.25);
    margin-top: 0 !important;
}


.footer .container {
    position: relative;
}

.footer-content {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.6fr;
    gap: 1.5rem 2rem;
    align-items: start;
}

.footer-logo {
    text-align: left;
}
.footer-logo-img { filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); margin-bottom: .75rem; }

/* Footer: About + quick links style */
.footer-about-text { line-height: 1.7; }

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
    margin-top: .5rem;
}

.footer-links-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-links-list li { display: flex; align-items: center; gap: .6rem; }
.footer-links-list i { color: #ffffff; font-size: .85rem; }
.footer-links-list a { color: #ffffff; text-decoration: none; font-weight: 600; transition: color .2s ease; }
.footer-links-list a:hover { color: #ffffff; }

/* Footer contact column */
.footer-contact-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 1rem;
}

.footer-contact-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .75rem; }
.footer-contact-list li { color: #e5e6e0; display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact-list i { color: #ffffff; margin-top: .2rem; }
.footer-contact-list a { color: #ffffff; text-decoration: none; font-weight: 600; }
.footer-contact-list a:hover { color: #ffffff; }
.footer-contact-block div { line-height: 1.6; }

.footer-social { display: flex; gap: 1rem; margin-top: .5rem; }
.footer-social a { color: #ffffff; background: rgba(255,255,255,.12); width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; transition: background .2s ease, transform .2s ease; }
.footer-social a:hover { background: #fef000; color: #333; transform: translateY(-2px); }

@media (max-width: 992px) {
    .footer-content { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; gap: .5rem 1.25rem; }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.helmet-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1px;
}

.brand-text {
    color: #dc3545;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-subtitle {
    color: #28a745;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gear-icon {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: #333;
}

.company-name {
    grid-column: 1 / -1;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin: 0.5rem 0 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Ensure footer company name stays on one line and white */
.footer .company-name {
    color: #ffffff !important;
    white-space: nowrap;
}

/* Home: Why Choose RDR Defence heading in yellow */
#why-choose-highlights .section-title {
    color: #fef000;
}

/* Home: Featured Products and Product Categories headings in yellow */
#featured-products .section-title,
#quick-links .section-title {
    color: #000000;
}

/* Section background enhancements (home page) */
#featured-products.featured-products-section {
    background: linear-gradient(135deg, #151515 0%, #20231a 100%);
    position: relative;
}

#featured-products.featured-products-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(254,240,0,0.35), transparent);
}

#quick-links.quick-links-section {
    background: linear-gradient(135deg, #121212 0%, #1b1e15 100%);
    position: relative;
}

#quick-links.quick-links-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(254,240,0,0.25), transparent);
}

#why-choose-highlights.why-choose-highlights-section {
    background: linear-gradient(135deg, #161616 0%, #24271d 100%);
    position: relative;
}

#why-choose-highlights.why-choose-highlights-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(254,240,0,0.25), transparent);
}

/* Subtitles on dark backgrounds */
#featured-products .section-subtitle,
#quick-links .section-subtitle,
#why-choose-highlights .section-subtitle {
    color: #c5c6be;
}

.footer-info {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
    text-align: left;
    margin: 0.5rem 0 0;
}

.contact-info {
    display: grid;
    gap: 0.5rem;
}

.info-line {
    color: #e5e6e0;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.info-line:hover {
    color: #fef000;
    transform: translateX(5px);
}

.info-line a {
    color: #fef000;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-weight: 600;
}

.info-line a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(254, 240, 0, 0.5);
}

.footer-copyright {
    color: #c5c6be;
    font-size: 1rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(197, 198, 190, 0.3);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    grid-column: 1 / -1;
    position: relative;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #fef000, #989e83, #c5c6be);
    border-radius: 1px;
}

/* Why Choose Us Hero Banner */
.why-choose-hero-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #656952 50%, #1a1a1a 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.why-choose-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 240, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(152, 158, 131, 0.12) 0%, transparent 50%);
    z-index: 1;
    animation: heroPulse 8s ease-in-out infinite;
}

.why-choose-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* USP Section */
.usp-section {
    background: linear-gradient(135deg, #656952 0%, #989e83 100%);
    color: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.usp-card {
    transition: all 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(254, 240, 0, 0.3) !important;
}

/* Differentiators Section */
/* Differentiators Section (other pages only, keep default) */

.differentiator-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(254, 240, 0, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    background: #c5c6be;
    color: #333;
    padding: 1.5rem 0 1.5rem;
    margin-top: 0;
    position: relative;
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

@keyframes starGlow {
    0%, 100% { 
        transform: scale(1);
        color: #fef000;
    }
    50% { 
        transform: scale(1.2);
        color: #989e83;
    }
}

/* Star Glow Animation */
.fa-star {
    animation: starGlow 2s ease-in-out infinite;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #656952;
    color: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.why-choose-content {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    color: #020202;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-item {
    margin-bottom: 2.5rem;
}

.feature-item h3 {
    color: #fef000;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-item p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.iso-logo {
    margin-top: 2rem;
    text-align: center;
}

.dummy-iso-logo {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 3px solid #333;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 200px;
    margin: 0 auto;
}

.iso-text {
    color: #333;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.iso-subtitle {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-choose-image {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #989e83;
}

.product-showcase-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Our Products Section */
.products-section {
    background: #c5c6be;
    color: #333;
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    color: #656952;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
}

.product-image img {
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: #333;
    font-size: 1.3rem;
    
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}

.product-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: #fef000;
    color: #333;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 2px solid #fef000;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: transparent;
    color: #fef000;
    border-color: #fef000;
}

/* Gallery Section */
.gallery-section {
    background: #989e83;
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: auto;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 240, 0, 0.9) 0%, rgba(101, 105, 82, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Overview Banner Section */
.overview-section {
    background: linear-gradient(135deg, #656952 0%, #4a4d3a 50%, #656952 100%);
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 240, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(152, 158, 131, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.overview-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.overview-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fef000;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.overview-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 500;
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fef000;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Products Section */
.featured-products-section {
    background: #c5c6be;
    padding: 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
    clear: both;
    top: 0;
    height: 100%;
}

.featured-products-section .container {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.featured-product-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-product-card .product-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.featured-product-card .product-image img {
    max-height: 200px;
    width: auto;
}

.featured-product-card .product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.featured-product-card .product-description {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.featured-product-card .product-link {
    display: inline-block;
    background: linear-gradient(135deg, #fef000 0%, #989e83 100%);
    color: #333;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.featured-product-card .product-link:hover {
    background: linear-gradient(135deg, #989e83 0%, #fef000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 240, 0, 0.4);
}

.featured-product-card .product-link {
    position: relative;
    overflow: hidden;
}

.featured-product-card .product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.featured-product-card .product-link:hover::before {
    left: 100%;
}

/* Quick Links Section */
.quick-links-section {
    background: #989e83;
    padding: 2rem 0 0;
    position: relative;
}

.quick-links-section .container {
    padding: 3.5rem 0;
}

.quick-link-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.link-icon {
    font-size: 3rem;
    color: #fef000;
    margin-bottom: 1.5rem;
}

.link-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.link-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fef000 0%, #989e83 100%);
    color: #333;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: linear-gradient(135deg, #989e83 0%, #fef000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 240, 0, 0.4);
}

.quick-link-card {
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
}

.quick-link-card:hover .link-icon {
    transform: scale(1.1);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.link-btn {
    position: relative;
    overflow: hidden;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.link-btn:hover::before {
    left: 100%;
}

/* Gallery Page Styles */
.gallery-hero-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #656952 50%, #1a1a1a 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.gallery-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 240, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(152, 158, 131, 0.12) 0%, transparent 50%);
    z-index: 1;
    animation: heroPulse 8s ease-in-out infinite;
}

.gallery-hero-title {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.gallery-hero-subtitle {
    color: #c5c6be;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.gallery-hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fef000 0%, #989e83 100%);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.gallery-categories-section {
    background: #c5c6be;
    padding: 5rem 0;
}

.gallery-categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-categories-title {
    color: #333;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.gallery-categories-subtitle {
    color: #666;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-category-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #fef000;
}

.category-icon {
    font-size: 4rem;
    color: #fef000;
    margin-bottom: 1.5rem;
}

.category-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-count {
    background: linear-gradient(135deg, #fef000 0%, #989e83 100%);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 457px;

}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(101, 105, 82, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #ffffff;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #c5c6be;
}

.overlay-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.overlay-icons i {
    font-size: 1.5rem;
    color: #fef000;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.gallery-stats-section {
    background: linear-gradient(135deg, #656952 0%, #989e83 100%);
    padding: 5rem 0;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-subtitle {
    color: #c5c6be;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: #fef000;
    margin-bottom: 1rem;
}

.stat-number {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: #c5c6be;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* About Page Styles */
.about-hero-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #656952 50%, #1a1a1a 100%);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 240, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(152, 158, 131, 0.12) 0%, transparent 50%);
    z-index: 1;
    animation: heroPulse 8s ease-in-out infinite;
}

.about-hero-title {
    color: #ffffff;
    font-size: 80px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.about-hero-subtitle {
    color: #c5c6be;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.about-hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fef000 0%, #989e83 100%);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.company-overview-section {
    background: #c5c6be;
    padding: 5rem 0;
    width: 100%;
}

.overview-content {
    padding: 2rem;
}

.overview-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.overview-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-item i {
    color: #fef000;
    font-size: 1.5rem;
}

.overview-image {
    text-align: center;
}

.overview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vision-mission-section {
    background: #989e83;
    padding: 5rem 0;
}

.vision-card, .mission-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vision-icon, .mission-icon {
    font-size: 4rem;
    color: #fef000;
    margin-bottom: 1.5rem;
}

.vision-title, .mission-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-text, .mission-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.company-stats-section {
    background: linear-gradient(135deg, #656952 0%, #989e83 100%);
    padding: 5rem 0;
}

.product-showcase-section {
    background: #c5c6be;
    padding: 5rem 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    color: #333;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.showcase-subtitle {
    color: #666;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-showcase-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-showcase-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-name {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #fef000 0%, #989e83 100%);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Highlights Section */
/* New Why Choose Section Design */
.why-choose-highlights-section-new {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.why-choose-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.why-choose-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.why-choose-highlights-section-new .container {
    position: relative;
    z-index: 2;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-main-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: #c5c6be;
    margin: 0;
}

/* Left Side: 2x2 Image Grid */
.why-choose-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.why-choose-img-item {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.why-choose-img-item:hover {
    transform: scale(1.05);
}

.why-choose-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side: Points */
.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-choose-point-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.why-choose-point-item:hover {
    transform: translateX(5px);
}

.why-choose-point-number {
    font-size: 2rem;
    font-weight: 400;
    color: #fef000;
    min-width: 50px;
    line-height: 1;
}

.why-choose-point-content {
    flex: 1;
}

.why-choose-point-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fef000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
}

.why-choose-point-content p {
    font-size: 0.95rem;
    color: #c5c6be;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .why-choose-images-grid {
        margin-bottom: 2rem;
    }
    .why-choose-img-item {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .why-choose-main-title {
        font-size: 2rem;
    }
    .why-choose-img-item {
        height: 150px;
    }
    .why-choose-point-item {
        padding: 0.8rem 0;
        gap: 1rem;
    }
    .why-choose-point-number {
        font-size: 1.5rem;
        min-width: 40px;
    }
    .why-choose-point-content h3 {
        font-size: 1.1rem;
    }
}

.why-choose-highlights-section {
    background: #656952;
    padding: 2rem 0 0;
    position: relative;
}

.why-choose-highlights-section .container {
    padding: 3.5rem 0;
}

.highlight-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    font-size: 3rem;
    color: #fef000;
    margin-bottom: 1.5rem;
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fef000;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-description {
    color: #c5c6be;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Contact Us Section */
.contact-section {
    background: #ffffff;
    color: #000000;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}

@keyframes contactBgFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .row {
    position: relative;
    z-index: 3;
}

/* Contact Hero Banner */
.contact-hero-banner {
    background: #ffffff;
    padding: 2rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 240, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(152, 158, 131, 0.12) 0%, transparent 50%);
    z-index: 1;
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.floating-gears {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-icon-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 3rem;
    color: rgba(254, 240, 0, 0.15);
    animation: iconFloat1 8s ease-in-out infinite;
}

.floating-icon-2 {
    position: absolute;
    top: 60%;
    right: 15%;
    font-size: 3rem;
    color: rgba(254, 240, 0, 0.12);
    animation: iconFloat2 10s ease-in-out infinite;
}

.floating-icon-3 {
    position: absolute;
    bottom: 20%;
    left: 20%;
    font-size: 3rem;
    color: rgba(254, 240, 0, 0.15);
    animation: iconFloat3 9s ease-in-out infinite;
}

.floating-icon-4 {
    position: absolute;
    top: 40%;
    right: 25%;
    font-size: 3rem;
    color: rgba(254, 240, 0, 0.1);
    animation: iconFloat4 11s ease-in-out infinite;
}

@keyframes iconFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.25; }
}

@keyframes iconFloat2 {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.12; }
    50% { transform: translateX(20px) rotate(-180deg); opacity: 0.22; }
}

@keyframes iconFloat3 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
    50% { transform: translateY(-25px) scale(1.1); opacity: 0.25; }
}

@keyframes iconFloat4 {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateX(-20px) rotate(180deg); opacity: 0.2; }
}

@keyframes contactTitleGlow {
    0% { 
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(254, 240, 0, 0.4);
    }
    100% { 
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 50px rgba(254, 240, 0, 0.8);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Card Animations */
@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
}

.card-corner-decoration {
    animation: cornerPulse 4s ease-in-out infinite;
}

@keyframes cornerPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Enhanced Info Boxes */
.company-info > div {
    transition: all 0.3s ease;
    cursor: default;
}

.company-info > div:hover {
    transform: translateX(5px);
    background: rgba(254, 240, 0, 0.15) !important;
    box-shadow: 0 5px 15px rgba(254, 240, 0, 0.2);
}

/* Enhanced Map */
.google-map {
    transition: all 0.3s ease;
}

.google-map:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(254, 240, 0, 0.3) !important;
}

/* Enhanced Form Elements */
.contact-form .form-group {
    position: relative;
}

.contact-form .form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fef000, transparent);
    transition: width 0.3s ease;
}

.contact-form .form-group:focus-within::after {
    width: 100%;
}

/* Decorative Elements */
.contact-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 240, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: elementPulse 10s ease-in-out infinite;
    z-index: 1;
}

.contact-section::before {
    animation: contactBgFloat 20s ease-in-out infinite;
}

@keyframes elementPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* Success message styling */
.contact-form {
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(45deg, rgba(254, 240, 0, 0.03), transparent, rgba(152, 158, 131, 0.03));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Contact Page Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card,
.contact-form-card {
    animation: fadeInUp 0.8s ease-out, cardFloat 6s ease-in-out infinite;
}

.contact-info-card {
    animation-delay: 0s;
}

.contact-form-card {
    animation-delay: 0.2s;
}

/* Products Hero Banner */
.products-hero-banner {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.products-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(101, 105, 82, 0.9) 100%);
    z-index: 1;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Product Detail Cards */
.product-detail-card {
    transition: all 0.3s ease;
}

.product-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.inquiry-btn {
    transition: all 0.3s ease !important;
}

.inquiry-btn:hover {
    background: linear-gradient(135deg, #989e83 0%, #fef000 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 240, 0, 0.4) !important;
}

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Barlow Semi Condensed', Sans-serif;
}

.company-info {
    margin-bottom: 2rem;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.phone a, .email a {
    color: #007bff;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.phone a:hover, .email a:hover {
    text-decoration: underline;
}

.working-hours {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.map-section {
    margin-top: 2rem;
}

.map-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Barlow Semi Condensed', Sans-serif;
}

.google-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    border: none;
    width: 100%;
    height: 300px;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Barlow Semi Condensed', Sans-serif;
}

.contact-form {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    position: static;
    z-index: auto;
    transition: none;
}

.contact-form:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form .form-control {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .form-control:focus {
    background: #ffffff;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    color: #333;
    transform: none;
}

.contact-form .form-control::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.send-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.send-btn:hover {
    background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Google Map Styling */
.map-container {
    margin-top: 3rem;
    text-align: center;
}

.map-title {
    color: #fef000;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.google-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #fef000;
    transition: all 0.3s ease;
}

.google-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.google-map iframe {
    border-radius: 12px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.google-map:hover iframe {
    filter: grayscale(0%);
}

/* Clean Footer Styles */
.footer-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(254, 240, 0, 0.3));
}

.company-name {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
}

.footer-info {
    text-align: center;
    margin: 2rem 0;
}

.contact-info {
    text-align: center;
}

.info-line {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;}

.info-line a {
    color: #fef000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-line a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(254, 240, 0, 0.5);
}

.footer-copyright {
    color: #c5c6be;
    font-size: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(254, 240, 0, 0.3);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand-text {
        font-size: 3rem;
    }
    
    .footer {
        padding: 4rem 0 3rem;
    }
    
    .footer-logo-img {
        width: 120px;
        height: 120px;
    }
    
    /* Contact page responsive */
    .contact-hero-banner {
        padding: 6rem 0 3rem;
    }
    
    .contact-main-title {
        font-size: 2.5rem !important;
        letter-spacing: 2px !important;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .floating-icon-1,
    .floating-icon-2,
    .floating-icon-3,
    .floating-icon-4 {
        font-size: 2rem;
        opacity: 0.1;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 2rem !important;
        margin-bottom: 2rem;
    }
    
    .contact-info-title,
    .form-title {
        font-size: 1.5rem !important;
    }
    
    /* Reorder contact section columns on mobile - form first, address second */
    .contact-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .contact-section .col-lg-6:first-child {
        order: 2; /* Address section comes second */
    }
    
    .contact-section .col-lg-6:last-child {
        order: 1; /* Form section comes first */
    }
    
    /* Why Choose Us page responsive */
    .why-choose-main-title {
        font-size: 2.5rem !important;
        letter-spacing: 2px !important;
    }
    
    .why-choose-hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .why-choose-hero-banner {
        padding: 6rem 0 3rem;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .usp-card,
    .differentiator-item,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .usp-title,
    .differentiator-item h3 {
        font-size: 1.2rem !important;
    }
    
    .differentiator-item p {
        font-size: 1rem !important;
    }
    
    .testimonial-card h4 {
        font-size: 1.1rem !important;
    }
    
    /* Why Choose Us - Accordion Style on Mobile - Show headings only with arrow */
    .why-choose-main-content .col-lg-7 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item {
        margin-bottom: 0;
        padding: 0 !important;
        min-height: auto;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.6) !important;
        border-left: 5px solid #fef000 !important;
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item .accordion-header {
        padding: 1rem 0.8rem !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        margin-bottom: 0 !important;
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item h3 {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
        letter-spacing: 1px !important;
        line-height: 1.3 !important;
        flex: 1;
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item h3 i {
        font-size: 0.9rem !important;
        margin-right: 0.4rem !important;
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item .accordion-arrow {
        font-size: 1rem !important;
        color: #fef000;
        transition: transform 0.3s ease;
        display: block !important;
        margin-left: 0.5rem;
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item.active .accordion-arrow {
        transform: rotate(180deg);
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 0.8rem;
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item.active .accordion-content {
        max-height: 500px;
        padding: 1rem 0.8rem !important;
    }
    
    .why-choose-main-content .col-lg-7 > div.accordion-item p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
    
    /* USP Section - Accordion Style on Mobile */
    .usp-section .col-lg-10 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .usp-section .col-lg-10 > div.accordion-item {
        padding: 0 !important;
        border-top: 1px solid #333333;
        min-height: auto;
        cursor: pointer;
        overflow: hidden;
    }
    
    .usp-section .col-lg-10 > div.accordion-item:nth-child(1),
    .usp-section .col-lg-10 > div.accordion-item:nth-child(2) {
        border-top: 1px solid #333333;
    }
    
    .usp-section .col-lg-10 > div.accordion-item .accordion-header {
        padding: 1rem 0.8rem !important;
        display: flex !important;
        align-items: center;
        gap: 0.8rem;
        background: transparent;
    }
    
    .usp-section .col-lg-10 > div.accordion-item .accordion-header .accordion-number {
        font-size: 1.2rem !important;
        min-width: 40px !important;
        color: #fef000;
        font-weight: 400;
    }
    
    .usp-section .col-lg-10 > div.accordion-item .accordion-header h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0 !important;
        letter-spacing: 1px !important;
        line-height: 1.3 !important;
        flex: 1;
        color: #fef000;
    }
    
    .usp-section .col-lg-10 > div.accordion-item .accordion-arrow {
        font-size: 1rem !important;
        color: #fef000;
        transition: transform 0.3s ease;
        display: block !important;
        margin-left: 0.5rem;
    }
    
    .usp-section .col-lg-10 > div.accordion-item.active .accordion-arrow {
        transform: rotate(180deg);
    }
    
    .usp-section .col-lg-10 > div.accordion-item .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 0.8rem;
    }
    
    .usp-section .col-lg-10 > div.accordion-item.active .accordion-content {
        max-height: 500px;
        padding: 1rem 0.8rem !important;
    }
    
    .usp-section .col-lg-10 > div.accordion-item p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        color: #ffffff;
    }
    
    /* Key Differentiators - Accordion Style on Mobile */
    .differentiators-section .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .differentiators-section .col-lg-6 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0.8rem !important;
    }
    
    .differentiators-section .differentiator-item.accordion-item {
        padding: 0 !important;
        min-height: auto;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.05) !important;
        border-left: 5px solid #fef000 !important;
    }
    
    .differentiators-section .differentiator-item.accordion-item .accordion-header {
        padding: 1rem 0.8rem !important;
        display: flex !important;
        align-items: center;
        gap: 0.6rem;
        background: transparent;
        margin-bottom: 0 !important;
    }
    
    .differentiators-section .differentiator-item.accordion-item .accordion-header > div {
        font-size: 1.2rem !important;
        color: #fef000;
    }
    
    .differentiators-section .differentiator-item.accordion-item .accordion-header h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0 !important;
        letter-spacing: 1px !important;
        line-height: 1.3 !important;
        flex: 1;
        color: #fef000;
    }
    
    .differentiators-section .differentiator-item.accordion-item .accordion-arrow {
        font-size: 1rem !important;
        color: #fef000;
        transition: transform 0.3s ease;
        display: block !important;
        margin-left: 0.5rem;
    }
    
    .differentiators-section .differentiator-item.accordion-item.active .accordion-arrow {
        transform: rotate(180deg);
    }
    
    .differentiators-section .differentiator-item.accordion-item .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 0.8rem;
    }
    
    .differentiators-section .differentiator-item.accordion-item.active .accordion-content {
        max-height: 500px;
        padding: 1rem 0.8rem !important;
    }
    
    .differentiators-section .differentiator-item.accordion-item p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        color: #ffffff;
    }
    
    /* Reduce section titles on mobile */
    .why-choose-main-content .section-title,
    .usp-section .section-title,
    .differentiators-section .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }
    
    .usp-section .section-subtitle,
    .differentiators-section .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Right column sticky panel - Compact on mobile */
    .why-choose-main-content .col-lg-5 {
        margin-top: 2rem;
    }
    
    .why-choose-main-content .col-lg-5 > div {
        position: relative !important;
        top: 0 !important;
    }
    
    .why-choose-main-content .col-lg-5 img {
        max-height: 200px !important;
    }
    
    .why-choose-main-content .col-lg-5 ul {
        gap: 0.4rem !important;
    }
    
    .why-choose-main-content .col-lg-5 ul li {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .why-choose-main-content .col-lg-5 ul li i {
        font-size: 0.7rem !important;
        margin-right: 0.4rem !important;
    }
    
    /* Reduce overall section padding on mobile */
    .why-choose-main-content {
        padding: 3rem 0 !important;
    }
    
    .usp-section {
        padding: 3rem 0 !important;
    }
    
    .differentiators-section {
        padding: 3rem 0 !important;
    }
    
    /* Products page responsive */
    .products-main-title {
        font-size: 2.5rem !important;
        letter-spacing: 2px !important;
    }
    
    .products-hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .products-hero-banner {
        padding: 6rem 0 3rem;
    }
    
    .category-title {
        font-size: 2rem !important;
    }
    
    .product-detail-card {
        margin-bottom: 2rem;
    }
    
    .product-title {
        font-size: 1.2rem !important;
    }
    
    .product-specs {
        font-size: 0.9rem !important;
    }
    
    .inquiry-btn {
        font-size: 0.9rem !important;
        padding: 0.6rem 1.2rem !important;
    }
    
    /* Gallery page responsive */
    .gallery-hero-title, .about-hero-title {
        font-size: 2.5rem !important;
        letter-spacing: 2px !important;
    }
    
    .gallery-hero-subtitle, .about-hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .gallery-hero-banner, .about-hero-banner {
        padding: 6rem 0 3rem;
    }
    
    .gallery-categories-title, .stats-title, .showcase-title {
        font-size: 2rem !important;
    }
    
    .overview-title {
        font-size: 2rem !important;
    }
    
    .gallery-category-card, .stat-card, .vision-card, .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .overview-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .gallery-image-container {
        height: 250px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .overlay-content h4 {
        font-size: 1.2rem;
    }
    
    .overlay-icons {
        gap: 0.8rem;
    }
    
    .overlay-icons i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .gallery-hero-title, .about-hero-title {
        font-size: 2rem !important;
    }
    
    .gallery-categories-title, .stats-title, .showcase-title {
        font-size: 1.8rem !important;
    }
    
    .overview-title {
        font-size: 1.8rem !important;
    }
    
    .gallery-category-card, .stat-card, .vision-card, .mission-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon, .vision-icon, .mission-icon {
        font-size: 3rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .gallery-image-container {
        height: 200px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .overlay-content h4 {
        font-size: 1rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .overlay-icons i {
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* --- SR FOOTER STYLES --- */
.sr-footer { background: #f8f9fa; color: #232323; margin-top: 3rem; border-top: 1px solid #e9ecef; font-size:1rem; padding: 2rem 0; }
.sr-footer a { color: #232323; }

.sr-footer .footer-brand-col, .sr-footer .footer-contact-col, .sr-footer .footer-social-col {
  padding: 0 1rem;
}

.sr-footer h5.fw-bold {
  margin-bottom: 1.2rem !important;
}

.sr-footer .footer-links { font-size: .98rem; }
.sr-footer .footer-links li { margin-bottom: .4rem; }
.sr-footer .footer-links a { text-decoration: none; transition: color 0.2s; color: #ffffff; }
.sr-footer .footer-links a:hover { color: #ffffff; text-decoration: underline; }

.sr-footer .footer-contact-col > div {
  margin-bottom: 0.8rem !important;
  display: flex;
  align-items: flex-start;
}
.sr-footer .footer-contact-col > div > i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  width: 15px; /* Ensures alignment */
}

.sr-footer .footer-social a { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:#e9ecef; color:#232323; margin-right:.5rem; border:1px solid #dee2e6; transition: all 0.22s; }
.sr-footer .footer-social a:hover { background:#fee440; color:#000; border-color:#fee440; box-shadow:0 4px 10px rgba(254,228,64,0.13); transform:translateY(-3px) scale(1.08); }
.sr-footer .footer-social-contact { display: flex; gap: 0.75rem; margin-top: 1rem; }
.sr-footer .footer-social-contact a { font-size: 1.2rem; color: #555; transition: color 0.2s; }
.sr-footer .footer-social-contact a:hover { color: #000; }
.sr-footer .fw-bold { font-weight:700 !important; }
.sr-footer .small.text-muted { color: #757575 !important; }
.sr-footer hr { border-color: #e9ecef; margin: 0.9rem 0; }
.sr-footer .footer-brand-col ul { padding-left:0; }
.sr-footer .footer-brand-col li { list-style:none; }
.sr-footer .footer-brand-col .bg-dark { background:#232323 !important; color:#fff !important; border-radius:6px; padding:.2rem .5rem; letter-spacing:1px; margin-left:6px; font-weight:600; }

@media (max-width: 991.98px) { /* corresponds to Bootstrap's lg breakpoint */
  .sr-footer .footer-brand-col, 
  .sr-footer .footer-contact-col, 
  .sr-footer .footer-social-col { 
    text-align: center; 
  }
  .sr-footer .footer-logo-wrap,
  .sr-footer .footer-social,
  .sr-footer .footer-social-contact {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .sr-footer .row > [class^="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0rem;
  }
}

@media (max-width: 576px) {
  .sr-footer {
    padding: 1.2rem 0;
  }
  .sr-footer .footer-brand-col,
  .sr-footer .footer-contact-col,
  .sr-footer .footer-social-col {
    padding: 0 .5rem;
  }
  .sr-footer .footer-brand-col > div {
    font-size: 0.97rem;
  }
}

.sr-footer .footer-links a,
.footer .footer-links a,
.sr-footer .footer-links li a,
.footer .footer-links li a {
  color: #ffffff !important;
  text-decoration: none;
}

.sr-footer .footer-contact-col a,
.footer .footer-contact-col a,
.sr-footer .footer-contact-list a,
.footer .footer-contact-list a,
.sr-footer .footer-contact-col .mb-2 a,
.footer .footer-contact-col .mb-2 a {
  color: #ffffff !important;
}

.sr-footer .small.text-muted,
.sr-footer .small.text-end,
.footer .small.text-muted,
.footer .small.text-end {
  color: #fff !important;
}

.sr-footer .text-decoration-none,
.footer .text-decoration-none {
  color: #fff !important;
}
/* =====================================================
   FOOTER – MOBILE ONLY (NO DESKTOP IMPACT)
   Compact • Fully LEFT aligned • No extra gaps
===================================================== */
@media (max-width: 768px) {

  /* Base footer fix */
  footer {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    padding: 1.5rem 1rem 0.8rem !important;
  }

  footer .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  /* Stack all columns */
  footer .row {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
  }

  footer [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Global LEFT alignment */
  footer,
  footer * {
    text-align: left !important;
  }

  /* Footer headings – tight */
  footer h4,
  footer h5 {
    margin: 0 0 0.4rem 0 !important;
    padding: 0 !important;
  }

  /* Paragraph spacing – tight */
  footer p {
    margin: 0 0 0.3rem 0 !important;
    line-height: 1.4 !important;
  }

  /* About | Contact | Privacy – one line */
  footer .footer-links,
  footer .footer-menu,
  footer .footer-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.8rem !important;
    margin: 0 0 0.4rem 0 !important;
    padding: 0 !important;
    font-size: 0.85rem;
  }

  footer .footer-links a,
  footer .footer-menu a,
  footer .footer-nav a {
    white-space: nowrap;
    padding: 0 !important;
  }

  /* Address / Plant Address */
  footer .address,
  footer .plant-address,
  footer .footer-address {
    margin: 0.2rem 0 !important;
    padding: 0 !important;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Contact section – no top gap */
  footer .contact,
  footer .footer-contact,
  footer .contact-info {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Remove unwanted dividers */
  footer hr {
    display: none !important;
  }

  /* Bottom lines – 2024 + Powered by Netleaf (LEFT) */
  footer .footer-bottom,
  footer .footer-copy,
  footer .copyright,
  footer .powered-by {
    margin: 0.2rem 0 0 0 !important;
    padding: 0 !important;
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: left !important;
    display: block;
  }

  footer .powered-by a {
    margin: 0 !important;
    padding: 0 !important;
    display: inline;
  }

}

.our-team{
    text-align: center;
    margin-bottom: 100px;
    z-index: 1;
    position: relative;
}
.our-team .pic{
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 5px solid #fef000;
}
.our-team .pic:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .pic:after{ opacity: 1; }
.our-team .pic img{
    width: 100%;
    height: auto;
}
.our-team .social{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.our-team:hover .social{ opacity: 1; }
.our-team .social li{ display: inline-block; }
.our-team .social li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid #fef000;
    font-size: 15px;
    color: #fef000;
    margin-right: 10px;
    transition: all 0.5s ease 0s;
}
.our-team .social li a:hover{
    background: #fef000;
    color: #000;
}
.our-team .team-content{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dotted #fef000;
    position: absolute;
    bottom: -70px;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease 0s;
}
.our-team:hover .team-content{ border: 2px dotted #fef000; }
.our-team .team-info{
    width: 100%;
    color: #fef000;
    position: absolute;
    bottom: 12px;
    left: 0;
}
.our-team .title{
    font-size: 20px;
    font-weight: 600;
    color: #fef000;
    margin: 0 0 5px 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .title{ color: #fef000; }
.our-team .post{
    display: block;
    font-size: 14px;
    color: #fef000;
}

/* Product Category List Hover Effects */
.category-item {
    text-decoration: none !important;
    display: block;
}

.category-item:hover {
    text-decoration: none !important;
}

.category-item > div:hover {
    padding-left: 1rem;
}

.product-categories-list {
    padding-right: 2rem;
}

/* Why Choose Us Cards Hover Effects */
.highlight-card:hover {
    transform: translateY(-5px);
    border-left-width: 8px !important;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

/* Industrial Facilities Image Scroll Animation */
@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-420px * 9 - 1.5rem * 9));
    }
}

.image-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.image-scroll-container {
    will-change: transform;
}

/* Home About reveal animations */
.reveal-left,
.reveal-right {
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 800ms ease, opacity 800ms ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.in-view,
.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Typewriter caret */
.typewriter {
    position: relative;
    min-height: 1em;
}
.typewriter::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    background: currentColor;
    margin-left: 4px;
    animation: caretBlink 1s steps(1, end) infinite;
    vertical-align: -0.2em;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* WHY CHOOSE horizontal slide (direction-aware) */
.scroll-h-slide {
    opacity: 0;
    transform: translateX(100%);
    transition: transform 800ms ease, opacity 800ms ease;
    will-change: transform, opacity;
}
.scroll-h-slide.from-left { transform: translateX(-100%); }
.scroll-h-slide.in-view { opacity: 1; transform: translateX(0); }

/* Reveal up (bottom to top) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 700ms ease, opacity 700ms ease;
    will-change: transform, opacity;
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

/* ===========================================
   Products Page - Banner & Categories
   =========================================== */

/* Breadcrumb Navigation */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 10;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin: 0 0.75rem;
    color: #999;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0066cc;
}

.breadcrumb-item.active {
    color: #000;
    font-weight: 600;
}

/* Products Banner Section */
.products-banner-section {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    width: 100%;
    background: #ffffff;
}

.products-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.products-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.products-banner-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.products-banner-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.products-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.products-breadcrumb a:hover {
    color: #0066cc;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: #0066cc;
    font-weight: 600;
}

.products-banner-title {
    font-size: 4.5rem;
    font-weight: 500;
    color: #090884;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 83px 0 0 0;
    text-shadow: none;
}

/* Product Categories Section */
.product-categories-section {
    background: #ffffff;
    position: relative;
    padding: 4rem 0 5rem;
}

.product-categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.product-categories-section .container {
    position: relative;
    z-index: 2;
}

.product-categories-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-categories-title span {
    color: #0066cc;
}

.product-categories-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
    border-radius: 2px;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.product-category-card:hover,
.product-category-card.active {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(254, 240, 0, 0.3);
    border-color: #090884;
    background: #ffffff;
}

.category-icon-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-category-card:hover .category-icon-wrapper {
    transform: scale(1.08);
}

.category-icon-wrapper img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-category-card:hover .category-icon-wrapper img {
    transform: scale(1.1);
}

.category-icon-wrapper i {
    font-size: 3rem;
    color: #1a1a1a;
}

/* Category Background Colors - REMOVED */
.helmets-bg {
    background: transparent;
}

.vests-bg {
    background: transparent;
}

.plates-bg {
    background: transparent;
}

.accessories-bg {
    background: transparent;
}

.category-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category-card:hover .category-name,
.product-category-card.active .category-name {
    color: #090884;
}

.category-desc {
    font-size: 0.9rem;
    color: black;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .products-banner-title {
        font-size: 2.8rem;
    }
    
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-banner-section {
        min-height: 260px;
    }
    
    .products-banner-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .product-categories-section {
        padding: 3rem 0 4rem;
    }
    
    .product-categories-title {
        font-size: 1.8rem;
    }
    
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-icon-wrapper {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .products-banner-title {
        font-size: 1.8rem;
    }
    
    .product-categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .product-category-card {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }
    
    .category-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    .category-desc {
        font-size: 0.8rem;
    }
}

/* ===========================================
   Products Display Section - Product Grid
   =========================================== */

.products-display-section {
    background: #ffffff;
    padding: 0rem 0 5rem;
}

/* Dynamic Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    animation: fadeInUp 0.5s ease;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #090884;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile: Show product images and names */
@media (max-width: 768px) {
    .products-display-section .product-image {
        display: flex !important;
        padding: 1.5rem;
        min-height: 180px;
        background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    }
    
    .products-display-section .product-image img {
        max-width: 70%;
        max-height: 140px;
        object-fit: contain;
    }
    
    .products-display-section .product-item {
        background: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(254, 240, 0, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        padding: 0;
        cursor: pointer;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .products-display-section .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(254, 240, 0, 0.2);
        border-color: #fef000;
    }
    
    .products-display-section .product-info {
        padding: 1.5rem 1rem;
        text-align: center;
        background: rgba(26, 26, 26, 0.6);
        border-top: 1px solid rgba(254, 240, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .products-display-section .product-info:hover {
        background: rgba(254, 240, 0, 0.1);
    }
    
    .products-display-section .product-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #fef000;
        cursor: pointer;
    }
    
    .products-display-section .product-feature {
        font-size: 0.85rem;
        color: #aaa;
    }
    
    .products-display-section .product-overlay {
        display: flex !important;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .products-display-section .product-item:hover .product-overlay {
        opacity: 1;
    }
    
    /* Make product name clickable - redirect to link in overlay */
    .products-display-section .product-name {
        pointer-events: auto;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    animation: fadeInUp 0.5s ease;
}

.products-grid.fade-in {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(9, 8, 132, 0.1);
    border-color: #090884;
}

.product-image {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #ffffff 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    background: white;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #ffffff;
    color: #000;
    transform: scale(1.05);
}

.product-info {
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.product-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #090884;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-feature {
    font-size: 0.85rem;
    color: #333333;
    margin: 0;
}

/* Products Grid Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .products-display-section {
        padding: 3rem 0 4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-image {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .product-image img {
        max-height: 120px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .product-feature {
        font-size: 0.75rem;
    }
    
    .product-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

/* ===========================================
   About Page Mobile Responsive Styles
   =========================================== */

/* Company Overview Hero Section - Mobile Responsive */
.company-overview-section {
    background-attachment: scroll !important;
}

@media (max-width: 992px) {
    .company-overview-section {
        height: auto !important;
        min-height: 500px;
        background-attachment: scroll !important;
    }
    
    .company-overview-section .overview-content {
        padding: 2rem 1.5rem !important;
    }
    
    .company-overview-title {
        font-size: 1.5rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .company-overview-text {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
}

@media (max-width: 768px) {
    .company-overview-section {
        height: auto !important;
        min-height: 300px !important;
        background-attachment: scroll !important;
        padding: 2rem 0 !important;
    }
    
    .company-overview-section .container {
        padding: 0 1rem !important;
    }
    
    .company-overview-section .overview-content {
        padding: 1.5rem 1rem !important;
    }
    
    .company-overview-title {
        font-size: 1.3rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .company-overview-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 576px) {
    .company-overview-section {
        min-height: 350px;
    }
    
    .company-overview-title {
        font-size: 1.1rem !important;
    }
    
    .company-overview-text {
        font-size: 0.9rem !important;
    }
}

/* Vision Section - Mobile Responsive */
.vision-section {
    background-attachment: scroll !important;
}

@media (max-width: 992px) {
    .vision-section {
        height: auto !important;
        min-height: auto !important;
        background-attachment: scroll !important;
        padding: 3rem 0 !important;
    }
    
    .vision-section .container {
        padding: 2rem 1rem !important;
    }
    
    .vision-title {
        font-size: 2.2rem !important;
    }
    
    .vision-text {
        font-size: 1rem !important;
    }
    
    .vision-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        margin-top: 1.5rem !important;
    }
    
    .vision-image-wrapper {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 2rem 0 !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .vision-section .row {
        flex-direction: column-reverse !important;
    }
    
    .vision-section .col-lg-6 {
        margin-bottom: 1.5rem;
    }
    
    .vision-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
    }
    
    .vision-text {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .vision-image {
        margin-top: 0 !important;
        margin-bottom: 1.5rem !important;
        height: auto !important;
        min-height: 200px !important;
    }
    
    .vision-image-wrapper {
        justify-content: center !important;
    }
    
    .vision-section .reveal-left > div {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .vision-title {
        font-size: 1.5rem !important;
    }
    
    .vision-text {
        font-size: 0.9rem !important;
    }
    
    .vision-image {
        border-width: 3px !important;
        border-radius: 10px !important;
    }
}

/* Manufacturing & Defence Split Section - Mobile Responsive */
.manufacturing-section {
    background-attachment: scroll !important;
}

@media (max-width: 992px) {
    .manufacturing-section {
        background-attachment: scroll !important;
    }
    
    .split-card {
        min-height: 350px !important;
        height: 350px !important;
    }
}

@media (max-width: 768px) {
    .manufacturing-section {
        padding: 2rem 0 !important;
        background-attachment: scroll !important;
    }
    
    .manufacturing-title {
        font-size: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .split-card {
        min-height: 300px !important;
        height: 300px !important;
    }
    
    .split-card .reveal {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .manufacturing-title {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .manufacturing-section .row.g-4 {
        gap: 1rem !important;
    }
    
    .split-card {
        min-height: 250px !important;
        height: 250px !important;
    }
    
    .split-card .reveal {
        font-size: 1.2rem !important;
        letter-spacing: 0.5px !important;
    }
}

/* Company Stats Section - Mobile Responsive */
.company-stats-section {
    background-attachment: scroll !important;
}

@media (max-width: 992px) {
    .company-stats-section {
        padding: 4rem 0 !important;
        background-attachment: scroll !important;
    }
    
    .stats-title {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
    }
    
    .stats-subtitle {
        font-size: 1rem !important;
    }
    
    .stat-card {
        padding: 2rem 1.5rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-icon {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .company-stats-section {
        padding: 2rem 0 !important;
    }
    
    .stats-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .stats-title i {
        margin-right: 0.5rem !important;
        font-size: 1.5rem !important;
    }
    
    .stats-subtitle {
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }
    
    .stat-card {
        padding: 2rem 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-icon {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    .company-stats-section .col-lg-3 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .company-stats-section {
        padding: 2.5rem 0 !important;
    }
    
    .stats-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .stats-title span {
        display: block;
        margin-top: 0.25rem;
    }
    
    .stats-subtitle {
        font-size: 0.85rem !important;
    }
    
    .stat-card {
        padding: 1.5rem 1rem !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-icon {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
}

/* Navigation Bar - Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0 !important;
    }
    
    .navbar-brand .logo-img {
        width: 80px !important;
        height: auto !important;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
        position: relative;
        z-index: 1001;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem;
        min-height: 48px;
        -webkit-tap-highlight-color: rgba(254, 240, 0, 0.3);
        touch-action: manipulation;
        position: relative;
        z-index: 1;
        pointer-events: auto;
    }
    
    .navbar-nav .nav-link:active {
        background: rgba(254, 240, 0, 0.15);
        color: #fef000;
    }
    
    .navbar-nav .nav-link::before {
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .navbar-brand .logo-img {
        width: 70px !important;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 1rem !important;
        min-height: 44px;
        position: relative;
        z-index: 1;
        pointer-events: auto;
    }
    
    .navbar-collapse {
        position: relative;
        z-index: 1001;
    }
    
    .navbar-collapse .navbar-nav {
        position: relative;
        z-index: 1002;
    }
}

/* General Mobile Optimizations */
@media (max-width: 768px) {
    /* Remove fixed background attachments on mobile */
    section[style*="background-attachment: fixed"] {
        background-attachment: scroll !important;
    }
    
    /* Ensure containers have proper padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Improve text readability */
    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Better spacing for sections */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Fix Bootstrap column stacking */
    .col-lg-6, .col-lg-12 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.3rem !important;
    }
    
    h4 {
        font-size: 1.1rem !important;
    }
}
/* =====================================================
   MISSION STATEMENT – MOBILE OPTIMIZED (DESKTOP SAFE)
===================================================== */
@media (max-width: 768px) {

  /* Section spacing */
  #about-us.about-home-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Main heading */
  #about-us h4 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.8rem !important;
  }

  /* Mission paragraph */
  #about-us p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.2rem !important;
  }

  /* Feature grid tighter */
  #about-us > .container > .row {
    row-gap: 1rem !important;
  }

  /* Feature box */
  #about-us .feature-box-item {
    gap: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  /* Reduce gap ABOVE Ballistic Helmets line */
  #about-us .feature-box-item:first-child {
    margin-top: 0 !important;
  }

  /* Feature icon smaller */
  #about-us .checkmark-icon {
    width: 32px !important;
    height: 32px !important;
  }

  #about-us .checkmark-icon i {
    font-size: 0.85rem !important;
  }

  /* Feature title – single line look */
  #about-us .feature-box-item h4 {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }

}
/* =====================================================
   GALLERY – SPACING + HOVER FIX (KEEP OLD DESIGN)
   Desktop untouched
===================================================== */
@media (max-width: 768px) {

  /* Bootstrap column gap fix */
  #gallery .row {
    margin-left: -6px !important;
    margin-right: -6px !important;
  }

  #gallery [class*="col-"] {
    padding-left: 6px !important;
    padding-right: 6px !important;
    margin-bottom: 8px !important; /* 👈 MAIN GAP FIX */
  }

  /* Gallery card */
  #gallery .gallery-item {
    margin-bottom: 0 !important;
  }

  /* Image container height (same look, compact) */
  #gallery .gallery-image-container {
    height: 220px !important;
  }

  /* Overlay hidden by default */
  #gallery .gallery-overlay {
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
  }

  /* Show text ONLY on hover / tap */
  #gallery .gallery-item:hover .gallery-overlay,
  #gallery .gallery-item:active .gallery-overlay {
    opacity: 1 !important;
  }

}

/* Extra small devices */
@media (max-width: 576px) {

  #gallery [class*="col-"] {
    margin-bottom: 6px !important;
  }

  #gallery .gallery-image-container {
    height: 200px !important;
  }
}
/* =====================================================
   GALLERY SECTION – MOBILE ONLY (GAP + HOVER FIX)
   Desktop styles remain untouched
===================================================== */
@media (max-width: 768px) {

  /* Section spacing */
  #gallery.gallery-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Section header */
  #gallery .section-header {
    margin-bottom: 1rem !important;
  }

  #gallery .section-title {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 0.25rem !important;
    text-align: center;
  }

  #gallery .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
    text-align: center;
  }

  /* 🔥 CARD GAP REAL FIX (Bootstrap mb-4 override) */
  #gallery [class*="col-"] {
    margin-bottom: 0.6rem !important;
  }

  #gallery .gallery-item {
    margin-bottom: -73px !important;
  }

  /* Image size */
  #gallery .gallery-image-container {
    height: 200px !important;
    border-radius: 12px !important;
  }

  /* Image zoom disable */
  #gallery .gallery-image-container img {
    transform: none !important;
  }

  /* Overlay hidden by default */
  #gallery .gallery-overlay {
    opacity: 0 !important;
    transition: opacity 0.25s ease-in-out !important;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.2) 0%,
      rgba(0,0,0,0.85) 100%
    ) !important;
  }

  /* Overlay ONLY on hover / tap */
  #gallery .gallery-item:hover .gallery-overlay,
  #gallery .gallery-item:active .gallery-overlay {
    opacity: 1 !important;
  }

  /* Overlay content */
  #gallery .overlay-content {
    padding: 0.8rem !important;
  }

  #gallery .overlay-content h4 {
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
    margin-bottom: 0.2rem !important;
  }

  #gallery .overlay-content p {
    font-size: 0.75rem !important;
    margin-bottom: 0.35rem !important;
  }

  /* Icons */
  #gallery .overlay-icons {
    gap: 0.6rem !important;
  }

  #gallery .overlay-icons i {
    font-size: 0.95rem !important;
    animation: none !important;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 576px) {

  #gallery .gallery-image-container {
    height: 180px !important;
  }

  #gallery [class*="col-"] {
    margin-bottom: 0.5rem !important;
  }

  #gallery .section-title {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
  }
}
/* ===============================
   MOBILE RESPONSIVE FIX
================================ */
@media (max-width: 768px) {

    /* HERO BANNER */
    .contact-hero-banner {
        padding: 5rem 1rem 3rem;
        text-align: center;
    }

    .contact-main-title {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem !important;
        letter-spacing: 1.5px !important;
    }

    .hero-divider {
        width: 120px !important;
    }

    /* Floating icons OFF on mobile */
    .floating-gears {
        display: none;
    }

    /* CONTACT SECTION BG FIX */
    .contact-section {
        background-attachment: scroll;
        padding: 3rem 1rem;
        min-height: auto;
    }

    /* GRID FIX */
    .contact-section .row {
        gap: 1.5rem;
    }

    /* CARDS */
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem !important;
        border-radius: 12px;
        animation: none !important;
        transform: none !important;
    }

    /* HEADINGS */
    .contact-info-title,
    .form-title {
        font-size: 1.4rem !important;
        margin-bottom: 1.2rem;
    }

    /* INFO*
/* =====================================================
   CONTACT PAGE – CLEAN CORPORATE MOBILE FIX
   Desktop completely safe
===================================================== */
@media (max-width: 768px) {

  /* CONTACT INFO CARD */
  .contact-info-card {
    background: #ffffff !important;
    padding: 1.5rem !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12) !important;
  }

  /* REMOVE OLD BOX STYLES */
  .company-info > div {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 1.2rem !important;
    box-shadow: none !important;
  }

  /* SECTION HEADING */
  .contact-info-title {
    font-size: 1.2rem !important;
    color: #000 !important;
    margin-bottom: 1rem !important;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
  }

  /* OFFICE / PLANT TITLE */
  .company-name {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0a3d62 !important;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }

  /* ADDRESS TEXT */
  .location {
    font-size: 0.95rem !important;
    line-height: 1.6;
    color: #444 !important;
  }

  /* PHONE / EMAIL */
  .phone,
  .email,
  .working-hours {
    font-size: 0.95rem !important;
    color: #222 !important;
    margin: 0.2rem 0;
  }

  .phone a,
  .email a {
    color: #0a3d62 !important;
    font-weight: 600;
    text-decoration: none;
  }

  /* ICONS REMOVE (CLEAN LOOK) */
  .company-info i {
    display: none;
  }

  /* MAP */
  .map-section {
    margin-top: 1.2rem;
  }

  .map-title {
    font-size: 1rem !important;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
  }

  .google-map {
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: none;
  }

  .google-map iframe {
    height: 200px;
    border-radius: 8px;
    filter: none;
  }
}
@media (max-width: 768px) {

  /* WORKING HOURS TEXT BLACK */
  .working-hours span,
  .working-hours {
    color: #000 !important;
    font-weight: 500;
  }

}

