/* =========================================
   REO TEXTILES - PREMIUM PRODUCTS
========================================= */

:root {
    --reo-navy: #071b36;
    --reo-navy-2: #0d2c55;
    --reo-blue: #0b3b73;
    --reo-orange: #f47b20;
    --reo-light: #f6f8fc;
    --reo-text: #172337;
    --reo-muted: #718096;
    --reo-border: #e8edf4;
}

/* =========================
   1. GLOBAL & COMMON CLASSES
   ========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #f5f6fa; color: #333; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

.flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.section-padding { padding: 70px 0; }
.bg-light { background-color: #f5f6fa; }
.text-red { color: #fc8a29; }
.text-warning { color: #e7c50f; }
.text-white { color: white; }
.bg-dark { background-color: #0b1b32; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }
body, p, span, a, li, small { font-family: 'Roboto', sans-serif; }

.btn_navy { border: 2px solid #0b1b32; color: white; padding: 12px 30px; border-radius: 50px; font-weight: 600; background: #0b1b32; }
.btn_navy:hover { background-color: white; color: #0b1b32; }

.btn_get_quote { background-color: #3658a0; color: white; padding: 7px 10px; border-radius: 10px; font-weight: 600; font-size: 12px; display: inline-block; border: 1px solid #d92b2b; transition: all 0.3s ease; }
.btn_get_quote:hover { background-color: #b82222; border-color: #b82222; transform: scale(1.05); }

.btn-outline { border: 2px solid #fc8a29; color: white; padding: 12px 30px; border-radius: 50px; font-weight: 600; background: #fc8a29; }
.btn-outline:hover { background-color: white; color: #0b1b32; }

/* Section Headings */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading small { color: #d92b2b; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 5px; }
.section-heading h2 { font-size: 2.4rem; margin-bottom: 10px; font-weight: 700; color: #0b1b32; }
.section-heading .divider { width: 60px; height: 3px; background: #d92b2b; margin: 10px auto; }
.section-heading.text-white h2 { color: white; }
.section-heading.text-white .divider { background: white; }

/* Common Hover Effect */
.hover-card { transition: all 0.4s ease; position: relative; overflow: hidden; }
.hover-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }

/* Custom Shadow Utilities */
.custom-shadow { box-shadow:2px 4px 20px rgb(66 54 54 / 40%); transition: all 0.3s ease-in-out; }
.custom-shadow-hover { transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform, box-shadow; }
.custom-shadow-hover:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10, 43, 92, 0.12); }

/* Divider Line */
.divider-line { width: 60px; height: 3px; background: #d92b2b; margin: 0 auto 25px; border-radius: 5px; }

/* =========================
   2. HEADER & NAVBAR
   ========================= */
.top-bar { 
    background: #0b1b32; color: #ccc; font-size: 0.85rem; padding: 5px 0; 
    border-bottom: 1px solid #1e3655; 
    position: sticky; top: 0; left: 0; width: 100%; z-index: 1050; 
    transition: transform 0.4s ease, opacity 0.4s ease;
}
body.scrolled .top-bar { transform: translateY(-100%); opacity: 0; }
.top-bar i { margin-right: 5px; }

#mainHeader {
    background: #ffffffb0; width: 100%; position: sticky; top: 0; left: 0; z-index: 1040; 
    transition: all 0.4s ease-in-out; padding: 10px 0; backdrop-filter: blur(5px);
}
#mainHeader.scrolled { background: #fff; padding: 5px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
#mainHeader.scrolled header nav ul li > a { color: white; }

header .logo h1 { font-size: 1.8rem; color: white; font-weight: 700; transition: 0.4s; }
#mainHeader.scrolled .logo h1 { font-size: 1.5rem; }
header .logo h1 span { color: #d92b2b; }

header nav ul { display: flex; gap: 10px; align-items: center; }
header nav ul li { position: relative; }
header nav ul li > a {
    color: #cf1019; font-weight: 600; font-size: 0.95rem; padding: 10px;
    border-radius: 10px; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
header nav ul li > a:hover, header nav ul li > a.active {
    background-color: #d92b2b; color: white; transform: scale(1.05);
}

.header-right { display: flex; align-items: center; gap: 20px; }

/* Mega Menu */
header nav ul li .mega-menu {
    position: absolute; top: 100%; left: 0; background: white; width: 370px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100; display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
header nav ul li:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(10px); }
header nav ul li .mega-menu li a { display: flex; align-items: center; gap: 10px; padding: 10px 15px; color: #333; border-radius: 8px; }
header nav ul li .mega-menu li a:hover { background-color: #f4f4f4; color: #d92b2b; padding-left: 20px; }
header nav ul li .mega-menu li a i { color: #d92b2b; width: 20px; }

/* Simple Sub-Menu */
header nav ul li .simple-submenu {
    position: absolute; top: 100%; left: 0; background: #ffffff66; width: 170px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 8px; padding: 15px 0;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100; display: flex; flex-direction: column;
}
header nav ul li:hover .simple-submenu { opacity: 1; visibility: visible; transform: translateY(10px); }
header nav ul li .simple-submenu li a { display: block; padding: 10px 25px; color: #ff0000; font-size: 0.95rem; }
header nav ul li .simple-submenu li a:hover { background-color: #f4f4f4; color: #d92b2b; padding-left: 30px; }

/* Hamburger Menu */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 3px; background: #646262; border-radius: 3px; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================
   3. HERO SLIDER
   ========================= */
.hero-swiper { width: 100%; height: 650px; position: relative; margin-top: -90px; }
.hero-swiper .swiper-slide { background-size: cover; background-position: center; display: flex; align-items: center; }
.hero-overlay { background: #f1e9e92b; width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.hero-content { position: relative; z-index: 2; max-width: 650px; text-align: left; color: white; }
.hero-content .hero-subtitle { display: block; color: #fc8a29; font-weight: 600; letter-spacing: 2px; margin-bottom: 10px; }
.hero-content h1 { font-size: 4rem; margin-bottom: 15px; line-height: 1.1; font-weight: 700; }
.hero-content h1 small { font-size: 1.5rem; font-weight: 300; }
.hero-features { display: flex; flex-wrap: wrap; gap: 20px; margin: 25px 0; }
.hero-features span { margin-right: 20px; color: rgba(255,255,255,0.9); }
.hero-features span i { color: #d92b2b; margin-right: 8px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* =========================
   4. COUNTER SECTION
   ========================= */
.counters { background: #0b1b32; color: white; padding: 40px 0; border-top: 1px solid #1e3655; }
.counter-box { text-align: center; padding: 15px 10px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-radius: 12px; }
.counter-box:hover { transform: translateY(-10px); background: rgba(255,255,255,0.05); }
.counter-box i { font-size: 2.5rem; color: #d92b2b; margin-bottom: 10px; transition: 0.3s; }
.counter-box:hover i { transform: scale(1.1); }
.counter-box h3 { font-size: 2.5rem; margin-bottom: 5px; transition: 0.3s; }
.counter-box:hover h3 { color: #d92b2b; }
.counter-box p { font-size: 0.9rem; color: #aab; }

/* =========================
   5. CATEGORIES SWIPER
   ========================= */
.category-swiper { padding-bottom: 40px !important; }
.cat-card { background: white; border-radius: 12px; overflow: hidden; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.cat-card img { width: 100%; height: 180px; object-fit: cover; }
.cat-card h3 { padding: 15px 0; font-size: 1rem; font-weight: 600; }

/* =========================
   6. ABOUT & STATS
   ========================= */
.about-wrapper { align-items: center; gap: 50px; }
.about-video-col { flex: 1; }
.video-wrapper { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.play-btn-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.3s; }
.play-btn-overlay:hover { transform: translate(-50%, -50%) scale(1.1); }
.about-content-col { flex: 1.2; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 20px 0; margin: 25px 0; }
.stat-box { text-align: center; border-right: 1px solid #e5e5e5; padding: 10px; }
.stat-box:last-child { border-right: none; }
.stat-icon { font-size: 2rem; color: #0b1b32; margin-bottom: 5px; }
.stat-box h4 { font-weight: bold; }

/* =========================
   7. PRODUCTS SECTION
   ========================= */
.product-section { padding-bottom: 50px; }

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.product-tabs button {
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}
.product-tabs button:hover { color: #ffffff; transform: translateY(-2px); }
.product-tabs button.active {
    background: #ffffff;
    color: #0b1b32;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,255,255,0.15);
}
.product-tabs button.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #d92b2b;
    border-radius: 2px;
}

.product-swiper { padding-bottom: 40px !important; }

.prod-card {
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}
.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.prod-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.prod-card:hover img { transform: scale(1.05); }
.prod-card h4 { font-size: 1rem; color: #0b1b32; font-weight: 600; margin-bottom: 0; }

.swiper-slide.hidden-slide { display: none !important; }

.product-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.product-swiper .swiper-pagination-bullet-active { background: #d92b2b; }

/* =========================
   8. FACILITIES
   ========================= */
.facilities-wrapper { align-items: stretch; gap: 30px; }
.facilities-text-col { flex: 1; background: #0b1b32; color: white; padding: 40px 30px; border-radius: 12px; }
.facilities-img-col { flex: 1.4; }

.fac-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.fac-grid a { display: block; position: relative; overflow: hidden; border-radius: 8px; }
.fac-grid a img { width: 100%; height: 200px; object-fit: cover; transition: 0.5s; }
.fac-grid a:hover img { transform: scale(1.1); }
.fac-grid a .img-title {
    position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(11,27,50,0.8); color: white;
    padding: 8px; text-align: center; font-size: 0.9rem; font-weight: 500;
    transform: translateY(100%); transition: 0.4s;
}
.fac-grid a:hover .img-title { transform: translateY(0); }

.why-choose-col { flex: 1; background: #0b1b32; color: white; padding: 40px 30px; border-radius: 12px; }

/* =========================
   9. SERVICES (SWIPER)
   ========================= */
.services-swiper { padding-bottom: 40px !important; }
.service-card { background: white; padding: 40px 20px; border-radius: 12px; text-align: center; border: 1px solid #eee; height: 100%; }
.service-icon { font-size: 3rem; color: #0b1b32; margin-bottom: 15px; }
.service-card h4 { font-size: 1.2rem; color: #0b1b32; margin-bottom: 10px; font-weight: 600; }

/* =========================
   10. CERTIFICATIONS
   ========================= */
.cert-wrapper { background: white; border-radius: 12px; overflow: hidden; display: flex; box-shadow: 0 5px 20px rgba(0,0,0,0.05); align-items: stretch; }
.cert-left { background: #0b1b32; color: white; padding: 40px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.cert-left h3 { font-size: 2rem; margin: 15px 0; line-height: 1.2; }
.cert-right { padding: 20px 10px; flex: 1.5; display: flex; align-items: center; overflow: hidden; }
.cert-right img { max-width: 200px; height: auto; opacity: 0.7; margin: 0 auto; transition: 0.4s; }
.cert-right img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }

/* =========================
   11. TESTIMONIALS
   ========================= */
.testimonial-section { padding: 70px 0; background: #f5f6fa; }
.testimonial-swiper { padding-bottom: 50px !important; }

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author h5 { margin: 0; font-size: 1rem; font-weight: 600; }
.testimonial-swiper .swiper-pagination-bullet-active { background: #d92b2b !important; }

/* =========================
   12. NEWS
   ========================= */
.news-section { background: white; }
.news-swiper { padding-bottom: 40px !important; }
.news-card { background: #f9f9f9; border-radius: 8px; overflow: hidden; height: 100%; border: 1px solid #eee; }
.news-card img { width: 100%; height: 160px; object-fit: cover; }
.news-content { padding: 20px; }
.news-content h4 { font-size: 1rem; margin: 10px 0; line-height: 1.4; font-weight: 600; }
.read-more { color: #d92b2b; font-weight: 600; font-size: 0.9rem; }

/* =========================
   13. WHY CHOOSE
   ========================= */
.why-choose-bar { background-color: #f5f6fa; padding: 60px 0; }
.choose-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; }

.choose-item-box {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eef0f3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.choose-item-box:hover {
    transform: translateY(-10px);
    border-color: #d92b2b;
    box-shadow: 0 15px 35px rgba(217, 43, 43, 0.12);
}

.choose-icon-wrap {
    width: 70px;
    height: 70px;
    background: #f8f9fc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.choose-icon-wrap i { font-size: 2rem; color: #0b1b32; transition: all 0.4s ease; }
.choose-item-box:hover .choose-icon-wrap { background: #d92b2b; transform: scale(1.05); }
.choose-item-box:hover .choose-icon-wrap i { color: #ffffff; }

.choose-text { display: flex; flex-direction: column; gap: 5px; }
.choose-title { font-size: 1.1rem; font-weight: 700; color: #0b1b32; transition: color 0.3s; }
.choose-desc { font-size: 0.85rem; color: #666; line-height: 1.4; }
.choose-item-box:hover .choose-title { color: #d92b2b; }

/* =========================
   14. FOOTER (5 Columns)
   ========================= */
.main-footer { background-color: #010b18; color: #cfdbe9; padding: 60px 0 0 0; }
.footer-grid-main {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr 1.5fr;
    gap: 30px;
    padding-bottom: 50px;
}
.footer-col-main { display: flex; flex-direction: column; }
.footer-logo img { max-height: 80px; margin-bottom: 20px; }
.footer-desc { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; opacity: 0.85; }
.footer-socials { display: flex; gap: 12px; padding-top: 20px; }
.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
}
.footer-socials a:hover { background: #d92b2b; border-color: #d92b2b; transform: translateY(-4px); }

.f-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.f-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d92b2b;
    border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li { display: flex; align-items: center; }
.footer-links li a, .footer-links li { color: #cfdbe9; font-size: 0.9rem; transition: all 0.3s; }
.footer-links li a:hover { color: #ffffff; padding-left: 6px; }
.footer-links li .text-red { color: #d92b2b; margin-right: 8px; width: 20px; text-align: center; }

.copyright-bar { padding: 15px; background: #0b1b32; text-align: center; }

/* =========================
   15. ABOUT PAGE STYLES
   ========================= */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0b1b32e0 0%, #1a3a5cd6 80%), url('/uploads/page/banner_1747202521_36.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0 70px;
    background-attachment: fixed;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(217, 43, 43, 0.08);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(217, 43, 43, 0.05);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }

.hero .badge-custom {
    display: inline-block;
    background: rgba(217, 43, 43, 0.15);
    color: #c7a806;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.hero h1 { color: #fff; font-size: 3.2rem; font-weight: 700; }
.hero h1 span { color: #d92b2b; }
.hero p { color: rgba(255, 255, 255, 0.8); font-size: 1.15rem; }

.hero .breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    list-style: none;
    padding: 0;
}
.hero .breadcrumb-custom a { color: #c7a806; font-weight: 500; text-decoration: none; transition: color 0.3s; }
.hero .breadcrumb-custom a:hover { color: #ff6b6b; }
.hero .breadcrumb-custom .separator { color: rgba(255, 255, 255, 0.3); }
.hero .breadcrumb-custom .current { color: rgba(255, 255, 255, 0.6); }
.hero .wave-shape { position: absolute; bottom: 0; left: 0; right: 0; z-index: 0; }
.hero .wave-shape svg { display: block; width: 100%; }

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-image img { width: 100%; height: auto; object-fit: cover; transition: transform 0.5s ease; }
.about-image:hover img { transform: scale(1.03); }
.about-image .floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(217, 43, 43, 0.92);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(217, 43, 43, 0.3);
}
.about-image .floating-badge i { font-size: 1.3rem; }

.about-content .desc { color: #555; font-size: 1rem; line-height: 1.8; }
.about-content .desc strong { color: #0b1b32; }
.about-content h2 { font-size: 2rem; }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    list-style: none;
    padding: 0;
}
.feature-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}
.feature-grid li i { color: #d92b2b; font-size: 1.1rem; width: 22px; text-align: center; }

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d92b2b, #b82222);
    color: #fff;
    padding: 14px 38px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: none;
    text-decoration: none;
}
.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 43, 43, 0.35);
    color: #fff;
}

.counter-section { background: #0b1b32; padding: 60px 0; }
.counter-box .number { font-size: 3rem; font-weight: 700; color: #fff; display: block; line-height: 1.2; }
.counter-box .number .suffix { color: #d92b2b; }
.counter-box .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.bottom-section { padding: 70px 0 80px; background: #f8f4f0; }
.bottom-content { max-width: 850px; margin: 0 auto; text-align: center; }
.bottom-content .quote-box {
    background: #fff;
    padding: 30px 35px;
    border-radius: 14px;
    border-left: 5px solid #d92b2b;
    text-align: left;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.bottom-content .quote-box i { color: #d92b2b; font-size: 1.6rem; margin-right: 12px; vertical-align: middle; }
.bottom-content .quote-box p { margin-bottom: 0; font-weight: 500; color: #0b1b32; font-size: 1.05rem; }

/* =========================
   16. CONTACT PAGE STYLES
   ========================= */
.contact-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c0392b;
    background: rgba(192, 57, 43, 0.08);
    transition: 0.3s;
}
.custom-shadow-hover:hover .icon-box { background: #c0392b; color: #fff; }
.contact-link { color: #555; text-decoration: none; transition: 0.3s; }
.contact-link:hover { color: #c0392b; }

.banner_text h1 { text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }

/* =========================
   17. PRODUCT PAGE STYLES
   ========================= */
.reo-product-card {
    border: 1px solid var(--reo-border);
    border-radius: 18px;
    transition: transform .4s ease, box-shadow .4s ease;
}
.reo-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244,123,32,.25);
}
.reo-product-image {
    height: 245px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    position: relative;
}
.reo-product-image img {
    width: 100% !important;
    height: auto;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.reo-product-card:hover .reo-product-image img { transform: scale(1.08); }
.reo-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,27,54,.35);
    opacity: 0;
    transition: opacity .35s;
}
.reo-product-card:hover .reo-image-overlay { opacity: 1; }
.reo-image-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--reo-navy);
    background: #fff;
    transform: scale(.7);
    transition: all .3s;
}
.reo-product-card:hover .reo-image-btn { transform: scale(1); }
.reo-image-btn:hover { color: #fff; background: var(--reo-orange); }

.reo-product-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: rgba(7,27,54,.82);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
}
.reo-product-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-top: -42px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    color: #fff;
    background: var(--reo-navy);
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(7,27,54,.18);
    transition: all .3s;
}
.reo-product-card:hover .reo-product-icon { background: var(--reo-orange); transform: rotate(8deg); }
.reo-product-content h4 { font-size: 18px; font-weight: 700; color: var(--reo-navy); }
.reo-product-content p { min-height: 52px; color: var(--reo-muted); font-size: 13px; line-height: 1.7; }
.reo-product-link { color: var(--reo-orange); font-size: 13px; font-weight: 700; }
.reo-product-link:hover { color: var(--reo-navy); }
.reo-product-link i { transition: transform .3s; }
.reo-product-link:hover i { transform: translateX(5px); }

.reo-trust-box { border-radius: 22px; background: var(--reo-navy); box-shadow: 0 20px 60px rgba(7,27,54,.16); overflow: hidden; }
.reo-trust-item { padding: 32px 25px; border-right: 1px solid rgba(255,255,255,.12); }
@media (max-width: 991px) { .reo-trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); } }

.reo-trust-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244,123,32,.5);
    border-radius: 14px;
    color: var(--reo-orange);
    background: rgba(244,123,32,.08);
    font-size: 18px;
}
.reo-trust-item h5 { color: #fff; font-size: 14px; font-weight: 700; }
.reo-trust-item p { margin: 0; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.6; }

.reo-fabric-cta {
    border-radius: 24px;
    background: radial-gradient(circle at 85% 20%, rgba(244,123,32,.16), transparent 28%), linear-gradient(120deg, #061a34, #0b315e);
    box-shadow: 0 20px 60px rgba(7,27,54,.16);
    position: relative;
    overflow: hidden;
}
.reo-cta-small { display: inline-block; color: var(--reo-orange); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; }
.reo-fabric-cta h2 { color: #fff; font-size: clamp(28px, 3vw, 40px); font-weight: 800; }
.reo-fabric-cta h2 span { color: var(--reo-orange); }
.reo-fabric-cta p { max-width: 600px; margin: 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.8; }

.reo-btn-orange {
    border-radius: 50px;
    color: #fff;
    background: var(--reo-orange);
    border: 1px solid var(--reo-orange);
    box-shadow: 0 10px 25px rgba(244,123,32,.22);
}
.reo-btn-orange:hover { color: #fff; background: #d96412; transform: translateY(-3px); }

.reo-btn-outline {
    border-radius: 50px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
}
.reo-btn-outline:hover { color: var(--reo-navy); background: #fff; transform: translateY(-3px); }

/* =========================
   RESPONSIVE DESIGNS
   ========================= */
@media (max-width: 1200px) {
    .choose-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid-main { grid-template-columns: 2fr 1.5fr 1.5fr 2fr; }
}
@media (max-width: 992px) {
    .hero-swiper { height: 500px; }
    .hero-content h1 { font-size: 2.8rem; }
    .cert-wrapper { flex-direction: column; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid-main { grid-template-columns: 1fr 1fr; }
    .facilities-wrapper, .about-wrapper { flex-direction: column; }
    .stats-row { grid-template-columns: 1fr 1fr; border: none; }
    .stat-box { border: 1px solid #eee; margin: 5px; padding: 10px; border-radius: 5px; }
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.4rem; }
    .about-image img { height: 350px; }
    .about-content h2 { font-size: 2rem; }
    .counter-box .number { font-size: 2.4rem; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    header nav ul {
        position: absolute; top: 100%; left: 0; width: 100%; background: #0b1b32;
        flex-direction: column; align-items: center; padding: 20px 0; gap: 15px;
        display: none; border-top: 1px solid #1e3655;
    }
    header nav ul.active { display: flex; }
    header nav ul li .mega-menu, header nav ul li .simple-submenu {
        position: static; width: 100%; transform: none; opacity: 1; visibility: visible; display: none;
        box-shadow: none; padding: 10px; background: rgba(255,255,255,0.05);
    }
    header nav ul li:hover .mega-menu, header nav ul li:hover .simple-submenu { display: grid; }
    header nav ul li:hover .simple-submenu { display: block; }
    header nav ul li > a { color: white; text-align: center; display: block; width: 100%; }
    
    .hero-content { text-align: center; max-width: 100%; padding-top: 50px; }
    .hero-btns { justify-content: center; }
    
    .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-grid-main { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .f-heading::after { left: 50%; transform: translateX(-50%); }
    .choose-grid { grid-template-columns: 1fr; }
    .services-swiper { padding-bottom: 20px !important; }
    .product-tabs button { padding: 8px 18px; font-size: 0.85rem; }
    .prod-card img { height: 140px; }
    
    .hero { padding: 70px 0 50px; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 1rem; }
    .about-image img { height: 250px; }
    .about-image .floating-badge { bottom: 15px; left: 15px; padding: 10px 18px; font-size: 0.8rem; }
    .about-content h2 { font-size: 1.6rem; }
    .feature-grid { grid-template-columns: 1fr; gap: 8px; padding-left: 20px; }
    .bottom-section { padding: 45px 0 55px; }
    .bottom-content h3 { font-size: 1.5rem; }
    .bottom-content p { font-size: 0.95rem; }
    .bottom-content .quote-box { padding: 20px; text-align: center; }
    .bottom-content .quote-box i { display: block; margin: 0 auto 10px; font-size: 2rem; }
    .counter-box .number { font-size: 1.8rem; }
    .counter-box .label { font-size: 0.75rem; }
    .hero-section .hero-content h1 { font-size: 1.8rem; }
    .counters .counter-box h3 { font-size: 1.8rem; }
    .choose-item-box { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
    .product-tabs { gap: 8px; }
    .product-tabs button { padding: 6px 14px; font-size: 0.75rem; }
    .footer-grid-main { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-links li { justify-content: center; }
    .footer-logo img { margin: 0 auto 20px auto; }
    .footer-socials { justify-content: center; }
    .hero h1 { font-size: 1.5rem; }
    .about-image img { height: 200px; }
    .about-image .floating-badge { bottom: 10px; left: 10px; padding: 8px 14px; font-size: 0.7rem; gap: 6px; }
    .about-image .floating-badge i { font-size: 1rem; }
    .about-content h2 { font-size: 1.3rem; }
    .bottom-content h3 { font-size: 1.2rem; }
    .counter-box .number { font-size: 1.5rem; }
}