@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --secondary: #0D2D5E;
    --text-color: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center { text-align: center; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mb-20 { margin-bottom: 20px; }
.mb-50 { margin-bottom: 50px; }
.pl-30 { padding-left: 30px; }
.bg-light { background-color: var(--light-bg); }
.position-relative { position: relative; }
.z-10 { position: relative; z-index: 10; }

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}
.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Header */
.header {
    background-color: transparent;
    padding: 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav a {
    font-weight: 500;
    font-size: 17px;
    color: var(--white);
}
.nav a.active, .nav a:hover {
    color: #ffcc00;
}

/* Dropdown CSS */
.nav .dropdown {
    position: relative;
}

.nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.nav .dropdown:hover .dropdown-menu {
    display: flex;
}

.nav .dropdown-menu li {
    width: 100%;
}

.nav .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.nav .dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: #ffcc00;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 220px 0 180px;
    color: var(--white);
    overflow: hidden;
    background-color: var(--secondary); /* Fallback */
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 45, 94, 0.4), rgba(13, 45, 94, 0.2));
    z-index: 1;
}
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}
.slider-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    background-color: rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.subtitle-hero {
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 4px;
}
.hero h1 {
    color: var(--white);
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 35px;
    line-height: 1.1;
}
.hero-btn {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 4px;
}

/* Features */
.features {
    position: relative;
    margin-top: -90px;
    z-index: 20;
}
.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: transparent;
    gap: 0;
}
.feature-item {
    background-color: transparent;
    text-align: center;
    border: none;
    box-shadow: none;
    padding: 0 10px;
}
.feature-item:first-child { border-radius: 0; }
.feature-item:last-child { border-radius: 0; border-right: none; }
.feature-icon {
    width: 180px;
    height: 180px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: transparent;
    position: relative;
    z-index: 30;
}
.icon-inner {
    width: 150px;
    height: 150px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
    transition: all 0.3s ease;
}
.feature-item:hover .icon-inner {
    transform: scale(1.05);
}
.feature-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 10px;
}
.feature-item p {
    display: none;
}

/* Section Titles */
.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
}
.bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    text-transform: uppercase;
    line-height: 1;
    z-index: 1;
    white-space: nowrap;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: -20px 20px 0 rgba(255, 94, 20, 0.1);
}
.about-content .section-title {
    margin-bottom: 30px;
}
.highlight-text {
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 20px;
}
.highlight-text p {
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.6;
}
.about-desc {
    margin-bottom: 15px;
    font-size: 15px;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.product-card {
    background-color: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.product-card .p-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 94, 20, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.product-card:hover .p-icon {
    background-color: var(--primary);
    color: var(--white);
}
.product-card .p-icon i {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.product-card:hover .p-icon i {
    transform: rotateY(360deg) scale(1.2);
}
.product-card h3 {
    font-size: 17px;
    font-weight: 700;
}
.card-arrow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    transition: all 0.3s ease;
}
.product-card:hover .card-arrow {
    bottom: 10px;
}

/* Video Info */
.video-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.video-info .section-title {
    margin-bottom: 40px;
}
.feature-list .f-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.f-icon {
    width: 50px;
    height: 50px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}
.f-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.f-text p {
    font-size: 14px;
}
.v-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.v-video img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.5);
    animation: pulsePlay 2s infinite;
    transition: all 0.3s ease;
}
.play-button:hover {
    background-color: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
}
@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 94, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0);
    }
}

/* Projects */
.projects-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.project-box { position: relative; }
.project-box img { width: 100%; height: 240px; object-fit: cover; display: block; border-radius: 8px; }
.project-title-box {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 15px 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: bottom 0.3s ease;
}
.project-box:hover .project-title-box {
    bottom: 20px;
}
.project-title-box h4 {
    margin: 0;
    font-size: 16px;
}

/* Brands Strip */
.brands-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.brands-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.brands-flex img {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
.brands-flex img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary);
    padding: 40px 0;
}
.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-title {
    color: var(--white);
    font-size: 28px;
    margin: 0;
}
.cta-contact-box {
    background-color: var(--white);
    padding: 10px 30px 10px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.cta-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.cta-number span {
    display: block;
    font-size: 12px;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 4px;
}
.cta-number strong {
    color: var(--secondary);
    font-size: 18px;
    line-height: 1;
}

/* Gallery Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item.item-large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 45, 94, 0.95) 0%, rgba(13, 45, 94, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.gallery-info h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}
.gallery-info p {
    color: #cbd5e1;
    font-size: 15px;
    margin: 0;
}
.gallery-overlay i {
    color: var(--white);
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: translateX(-20px) scale(0.8);
    transition: all 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-info {
    transform: translateY(0);
}
.gallery-item:hover .gallery-overlay i {
    transform: translateX(0) scale(1);
}
/* Parallax CTA Section */
.parallax-cta {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/hero_slide_2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13, 45, 94, 0.9) 0%, rgba(21, 75, 147, 0.7) 100%);
    z-index: 1;
}
.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.parallax-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: white;
}
.parallax-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: #0b1a30;
    color: #94a3b8;
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 50px;
}
.widget-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.widget-title:hover {
    color: #ffcc00;
}
.footer-desc {
    margin-bottom: 20px;
    font-size: 15px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #94a3b8;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}
.footer-map img {
    width: 100%;
    border-radius: 4px;
}
.contact-list {
    list-style: none;
}
.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.c-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    color: gray;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.c-text strong {
    display: block;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}
.c-text span {
    font-size: 14px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.fb-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.fb-links a {
    color: #ffcc00;
}
.fb-links a:hover {
    color: var(--white);
}
.divider {
    margin: 0 10px;
    color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 992px) {

  .gallery-item.item-large { grid-column: span 1; grid-row: auto; }
  .gallery-grid { grid-auto-rows: auto; }
  .gallery-item { min-height: 250px; }

    .features-container { grid-template-columns: repeat(2, 1fr); }
    .feature-item { border-right: none; border-bottom: 1px solid #f1f5f9; }
    .about-container, .video-container, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
    .fb-flex { flex-direction: column; gap: 10px; text-align: center; }
}


/* --- Products Grid Layout --- */
.products-marquee-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0 15px;
}
.products-marquee-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
}

/* Subpages CSS */
.page-banner { padding: 170px 0 100px 0 !important; background-size: cover; background-position: center; text-align: center; }
.mv-card:hover { transform: translateY(-10px); }
.product-card-lg:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important; }
.product-card-lg img { transition: transform 0.5s ease; }
.product-card-lg:hover img { transform: scale(1.05); }

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
    overflow-x: hidden;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
    top: 0; bottom: 0; left: 50%;
    margin-left: -2px;
    border-radius: 4px;
}
.timeline-item {
    padding: 20px 50px;
    position: relative;
    background-color: inherit;
    width: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.timeline-item.animate-left {
    transform: translateX(-50px);
}
.timeline-item.animate-right {
    transform: translateX(50px);
}
.timeline-item.in-view {
    opacity: 1;
    transform: translateX(0);
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--white);
    border: 4px solid var(--primary);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(21, 75, 147, 0.2);
    transition: all 0.3s ease;
}
.timeline-item:hover::after {
    background-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(21, 75, 147, 0.4);
}
.timeline-left { left: 0; }
.timeline-right { left: 50%; }
.timeline-right::after { left: -12px; }

.timeline-content {
    padding: 30px 40px;
    background-color: var(--white);
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary);
}
.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.timeline-date {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(21, 75, 147, 0.3);
}
/* Responsive Timeline */
@media screen and (max-width: 768px) {
  .hero-slider-nav { display: none !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .contact-info-wrapper { padding: 20px !important; }
  .contact-form-wrapper { padding: 20px !important; }


  .mv-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .mv-card { padding: 30px !important; } /* Reduce huge internal padding on mobile */

    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 10px; }
    .timeline-item.animate-left, .timeline-item.animate-right { transform: translateX(20px); }
    .timeline-item::after { top: 25px; }
    .timeline-left::after, .timeline-right::after { left: 8px; }
    .timeline-right { left: 0%; }
    .timeline-content { padding: 15px; }
}

/* --- New Products Layout --- */
.prod-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.prod-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 60px;
    border-radius: 60px;
    margin-bottom: 20px;
}
.prod-row:nth-child(even) {
    background-color: #f1f5f9;
}
.prod-row:nth-child(odd) {
    background-color: #ffffff;
}
.prod-left h2 {
    color: var(--primary);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}
.prod-left p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 15px;
}
.prod-thumbs {
    display: flex;
    gap: 15px;
}
.prod-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Accordion */
.accordion-item {
    margin-bottom: 20px;
}
.accordion-btn {
    width: 100%;
    background-color: white;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.accordion-btn.active {
    background-color: var(--primary);
    color: white;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: white;
    border-radius: 0 0 20px 20px;
    margin-top: -15px;
    padding: 0 25px;
    position: relative;
}
.accordion-content.show {
    padding: 30px 25px 20px;
}
.accordion-content p {
    color: #000;
    font-size: 14px;
    margin-bottom: 15px;
}
.read-more-link {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.accordion-btn.active + .accordion-content.show .read-more-link {
    color: var(--primary);
}

/* Products Footer Info */
.prod-footer-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 80px;
    padding: 0 20px;
}
.brochure-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 15px;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s;
}
.brochure-btn:hover { opacity: 0.9; }
.btn-black { background-color: #0f172a; }
.btn-orange { background-color: #f97316; }
.btn-blue { background-color: var(--primary); }

.contact-quick {
    margin-top: 40px;
}
.contact-quick-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-quick-item i {
    font-size: 20px;
    color: var(--primary);
}
.contact-quick-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}
.contact-quick-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 3px;
}

.prod-footer-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.prod-footer-text p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.prod-footer-text h4 {
    font-size: 18px;
    margin: 25px 0 10px;
}

@media (max-width: 900px) {
    .prod-row { grid-template-columns: 1fr; padding: 40px 20px; border-radius: 30px; }
    .prod-footer-info { grid-template-columns: 1fr; }
}

/* --- New Projects Layout --- */
.projects-header-wrap {
    position: relative;
    text-align: center;
    padding: 80px 0 40px;
    overflow: hidden;
}
.projects-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 5px;
}
.projects-header-wrap h2 {
    position: relative;
    z-index: 1;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}
.projects-header-wrap .subtitle {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.projects-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}
.project-card-v2 {
    position: relative;
    margin-bottom: 30px; /* Space for the overlapping box */
}
.project-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card-v2:hover .project-img-wrap img {
    transform: scale(1.05);
}
.project-title-box {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
    background: white;
    padding: 18px 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-title-box h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .projects-grid-3col { grid-template-columns: repeat(2, 1fr); }
    .projects-watermark { font-size: 80px; }
}
@media (max-width: 600px) {
    .projects-grid-3col { grid-template-columns: 1fr; }
}

/* --- Partners Page Layout --- */
.partners-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-top: 1px solid #f1f5f9;
    border-left: 1px solid #f1f5f9;
    margin-bottom: 80px;
}
.partner-logo-cell {
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    transition: background-color 0.3s ease;
}
.partner-logo-cell:hover {
    background-color: #f8fafc;
}
.partner-placeholder {
    font-size: 20px;
    font-weight: 800;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .partners-grid-4col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .partners-grid-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .partners-grid-4col { grid-template-columns: 1fr; }
}




/* --- FULL WEBSITE RESPONSIVENESS --- */
@media screen and (max-width: 1200px) {
  .projects-wrapper { grid-template-columns: repeat(3, 1fr); }
  .projects-wrapper .project-box img { height: 280px; }
}

@media screen and (max-width: 992px) {

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-wrapper { grid-template-columns: repeat(2, 1fr); }
  .projects-wrapper .project-box img { height: 320px; }
  .cta-flex { flex-direction: column; gap: 20px; text-align: center; }

  .hero h1 { font-size: 3.5rem; }
  .features-container { grid-template-columns: repeat(2, 1fr); }
  .feature-item { padding: 20px; border-bottom: 1px solid #e2e8f0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .premium-product-card { min-width: 0; width: 100%; height: 350px; }
}

@media screen and (max-width: 768px) {

  .page-banner h1 { font-size: 36px !important; line-height: 1.2; }
  .page-banner { padding: 130px 0 60px 0 !important; }

  .bg-text { font-size: 60px; }

  .projects-wrapper { grid-template-columns: 1fr; }
  .projects-wrapper .project-box img { height: 350px; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-list-item { flex-direction: column; height: auto; }
  .blog-list-item img { width: 100%; height: 200px; }
  .header-container { flex-direction: row; justify-content: space-between; align-items: center; width: 100%; }

  .menu-toggle { display: block !important; }
  
  .header-action { display: none; } /* Hide contact button on mobile header to save space */
  
  .nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(11, 26, 48, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav ul.active {
    display: flex !important;
    max-height: 500px;
    flex-direction: column;
  }
  
  .nav ul li {
    width: 100%;
    text-align: left;
  }
  
  .nav ul li a {
    display: block;
    padding: 16px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .nav ul li a:hover {
    color: #ffcc00 !important;
    padding-left: 30px;
    background-color: rgba(255, 255, 255, 0.03);
  }
  
  .hero { padding: 150px 0 100px; }
  .hero h1 { font-size: 2.5rem; }
  
  .features-container { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; }
  
  .fb-flex { flex-direction: column; text-align: center; gap: 15px; }
  
  .section-title { font-size: 2rem; }
  
  .premium-product-card { min-width: 0; width: 100%; height: 350px; }
}

@media screen and (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-btn { padding: 12px 25px; font-size: 14px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 16px; }
  .hero-slider-nav { padding: 0 15px; }
  .bg-text { display: none; }
}

/* Building Materials Category Grid */
.bm-categories-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.bm-header {
    text-align: center;
    margin-bottom: 40px;
}
.bm-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary);
}
.bm-header p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.bm-grid-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 300px;
    gap: 15px;
    margin-bottom: 15px;
}

.bm-grid-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 350px;
    gap: 15px;
}

.bm-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bm-card:hover {
    transform: translateY(-5px);
}

.bm-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bm-card:hover img {
    transform: scale(1.05);
}

.bm-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.bm-card .bm-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bm-card.large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.bm-card.large .bm-title {
    font-size: 32px;
    bottom: 30px;
    left: 30px;
}

@media (max-width: 992px) {
    .bm-grid-top {
        grid-template-columns: 1fr 1fr;
    }
    .bm-card.large {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }
    .bm-grid-bottom {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bm-grid-top {
        grid-template-columns: 1fr;
    }
    .bm-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bm-grid-bottom {
        grid-template-columns: 1fr;
    }
}

/* Lubricants Sidebar and Grid Layout */
.lube-page-wrapper {
    display: flex;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 30px;
}

.lube-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.lube-sidebar h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.lube-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.lube-sidebar ul li {
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.lube-sidebar ul li a {
    display: block;
    padding: 10px 15px;
    color: #0056b3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.lube-sidebar ul li a:hover {
    background-color: #0056b3;
    color: #fff;
}

.lube-content {
    flex-grow: 1;
}

.lube-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lube-card {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.lube-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lube-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.lube-card .category {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.lube-card .title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.lube-card .btn-rfq {
    display: inline-block;
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.lube-card .btn-rfq:hover {
    background-color: #004494;
}

@media (max-width: 1200px) {
    .lube-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .lube-page-wrapper {
        flex-direction: column;
    }
    .lube-sidebar {
        width: 100%;
    }
    .lube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .lube-grid {
        grid-template-columns: 1fr;
    }
}

/* Technical Supplies Grid */
.tech-supplies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 15px;
}

@media (max-width: 992px) {
    .tech-supplies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-supplies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tech-supplies-grid {
        grid-template-columns: 1fr;
    }
}

/* Lubricants Grid */
.lube-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 15px;
}

@media (max-width: 992px) {
    .lube-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lube-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .lube-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* Divisions Grid */
.divisions-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
}

@media (max-width: 992px) {
    .divisions-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .divisions-grid-3col {
        grid-template-columns: 1fr;
    }
}


/* Glowing Header Button */
@keyframes glowingButton {
    0% {
        box-shadow: 0 0 5px var(--white);
    }
    50% {
        box-shadow: 0 0 20px var(--white), 0 0 30px var(--white);
    }
    100% {
        box-shadow: 0 0 5px var(--white);
    }
}

.header-action .btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    animation: glowingButton 2s infinite;
    transition: all 0.3s ease;
}

.header-action .btn-outline:hover {
    animation: none;
    box-shadow: 0 0 25px var(--white), 0 0 40px var(--white);
    transform: scale(1.05);
    background-color: transparent;
    color: var(--white);
}


/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
}

.call-btn {
    background-color: #154b93;
}
.call-btn:hover {
    box-shadow: 0 6px 15px rgba(21, 75, 147, 0.4);
}

.wa-btn {
    background-color: #25D366;
}
.wa-btn:hover {
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


