/* ===============================================
   Pharma Techno Solution - Lennox-Style Design
   =============================================== */

/* --- Variables --- */
:root {
    --primary: #102A83;
    --primary-dark: #0B1E60;
    --accent: #102A83;
    --accent-hover: #0B1E60;
    --green: #28a745;
    --orange: #e67e22;
    --red: #e74c3c;
    --text-dark: #222;
    --text-body: #555;
    --text-muted: #888;
    --bg-light: #f5f7fa;
    --bg-dark: #1a1a2e;
    --white: #fff;
    --border: #ddd;
    --font: 'Montserrat', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 6px;
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-body); line-height: 1.7; background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { color: var(--text-dark); font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: var(--accent); transition: all var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 12px 30px; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); text-transform: uppercase; font-family: var(--font); }
.btn-solid { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-solid:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--primary); }
.btn-small { padding: 8px 20px; font-size: 0.75rem; }

/* ===================== TOP BAR ===================== */
.top-bar { background: var(--primary-dark); color: rgba(255,255,255,0.8); font-size: 0.8rem; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 25px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--accent); font-size: 0.75rem; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { color: rgba(255,255,255,0.7); font-size: 0.85rem; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all var(--transition); }
.top-bar-right a:hover { color: var(--white); background: var(--accent); }

/* ===================== MAIN HEADER ===================== */
.main-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 1000; transition: all var(--transition); }
.main-header .container { display: flex; justify-content: space-between; align-items: center; height: 100px; }
.main-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.logo { display: flex; align-items: center; gap: 15px; }
.logo img { height: 80px; width: auto; transform: scale(2.2); transform-origin: left center; margin-right: 100px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 2.1rem; font-weight: 900; color: var(--primary); letter-spacing: 1.5px; }
.brand-tagline { font-size: 0.9rem; font-weight: 800; color: var(--accent); letter-spacing: 4px; text-transform: uppercase; }

.nav-list { display: flex; gap: 0; }
.nav-list li a { display: block; padding: 28px 18px; color: var(--text-dark); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; position: relative; }
.nav-list li a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; background: var(--accent); transition: all var(--transition); transform: translateX(-50%); }
.nav-list li a:hover, .nav-list li a.active { color: var(--accent); }
.nav-list li a:hover::after, .nav-list li a.active::after { width: 100%; }

.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

/* ===================== HERO SECTION ===================== */
.hero { position: relative; height: 85vh; min-height: 550px; overflow: hidden; color: var(--white); }
.hero-slides { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; visibility: hidden; transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out; z-index: 0; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 15, 30, 0.45) 0%, rgba(0, 5, 10, 0.25) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; transform: translateY(30px); transition: transform 1s cubic-bezier(0.1, 0.76, 0.55, 0.94), opacity 1s ease; opacity: 0; }
.hero-slide.active .hero-content { transform: translateY(0); opacity: 1; transition-delay: 0.3s; }
.hero-title { font-size: 3rem; font-weight: 800; color: var(--white); margin-bottom: 35px; line-height: 1.2; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); }
.hero-buttons { display: flex; gap: 15px; justify-content: center; }

.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.4); color: var(--white); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.hero-arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero-arrow-left { left: 30px; }
.hero-arrow-right { right: 30px; }

.hero-indicators { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.indicator { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--transition); }
.indicator.active { background: var(--white); transform: scale(1.2); }

/* ===================== FLOATING SIDEBAR ===================== */
.floating-sidebar { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 2px; }
.sidebar-btn { display: flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--white); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all var(--transition); white-space: nowrap; overflow: hidden; width: 46px; border-radius: 4px 0 0 4px; }
.sidebar-btn:hover { width: 160px; color: var(--white); }
.sidebar-btn i { font-size: 1rem; min-width: 18px; text-align: center; }
.sidebar-btn span { opacity: 0; transition: opacity 0.2s ease; }
.sidebar-btn:hover span { opacity: 1; }
.sidebar-enquire { background: var(--accent); }
.sidebar-call { background: var(--green); }
.sidebar-whatsapp { background: #25d366; }

/* ===================== SECTION HEADINGS ===================== */
.section-heading { font-size: 1.8rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 40px; position: relative; padding-bottom: 15px; }
.section-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--accent); }
.section-heading.text-center { text-align: center; }
.section-heading.text-center::after { left: 50%; transform: translateX(-50%); }

/* ===================== ABOUT SECTION ===================== */
.about-section { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img { width: 100%; height: 400px; object-fit: cover; }
.play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,51,102,0.3); opacity: 0; transition: opacity var(--transition); cursor: pointer; }
.about-media:hover .play-overlay { opacity: 1; }
.play-circle { width: 70px; height: 70px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; box-shadow: 0 0 0 10px rgba(0,153,204,0.3); transition: transform var(--transition); }
.play-circle:hover { transform: scale(1.1); }
.about-content p { margin-bottom: 25px; font-size: 0.95rem; line-height: 1.8; }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.about-col h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.about-col ul li { padding: 4px 0; font-size: 0.9rem; color: var(--text-body); }

/* ===================== PRODUCTS SECTION ===================== */
.products-section { padding: 80px 0; background: var(--bg-light); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.product-img-wrap { overflow: hidden; height: 220px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-info { padding: 25px; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); }
.product-info p { font-size: 0.85rem; margin-bottom: 18px; line-height: 1.6; }

/* ===================== PRODUCT SHOWCASE SLIDER ===================== */
.products-showcase-section { padding: 80px 0; background: var(--white); overflow: hidden; }
.products-showcase-section .section-header { text-align: center; margin-bottom: 50px; }

.product-slider-container { position: relative; display: flex; align-items: center; width: 100%; margin-bottom: 50px; }

.product-slider-track { display: flex; gap: 30px; overflow-x: auto; scroll-behavior: smooth; padding: 15px 5px; width: 100%; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.product-slider-track::-webkit-scrollbar { display: none; }

.product-slide-card { flex: 0 0 calc(33.333% - 20px); min-width: 280px; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 2px solid transparent; transition: all var(--transition); scroll-snap-align: start; display: flex; flex-direction: column; height: 350px; cursor: pointer; }
.product-slide-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(16, 42, 131, 0.12); border-color: rgba(16, 42, 131, 0.3); }
.product-slide-card.active { border-color: var(--primary); box-shadow: 0 12px 30px rgba(16, 42, 131, 0.18); background: var(--bg-light); }

.card-image-wrap { width: 100%; height: 265px; padding: 20px; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.05); }
.card-image-wrap img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform var(--transition); }
.product-slide-card:hover .card-image-wrap img { transform: scale(1.05); }

.card-title-wrap { padding: 15px 20px; text-align: center; flex-grow: 1; display: flex; align-items: center; justify-content: center; }
.card-title-wrap h3 { font-size: 1.05rem; color: var(--primary); font-weight: 700; margin: 0; letter-spacing: 0.5px; }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: var(--white); border: 1px solid var(--border); color: var(--primary); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: all var(--transition); }
.slider-arrow:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-50%) scale(1.05); }
.slider-arrow.arrow-left { left: -22px; }
.slider-arrow.arrow-right { right: -22px; }

.showcase-content { position: relative; width: 100%; }

.product-detail { display: none; }
.product-detail.active { display: block; animation: fadeInSlideUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

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

.detail-grid { display: grid; grid-template-columns: 1.2fr 1.5fr; gap: 45px; align-items: center; }

.detail-image { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); height: 380px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 20px; position: relative; }
.detail-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(0, 51, 102, 0.03) 100%); pointer-events: none; }
.detail-image img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 6px; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.detail-image:hover img { transform: scale(1.06); }

.detail-info h3 { font-size: 2rem; color: var(--primary); margin-bottom: 18px; font-weight: 800; letter-spacing: 0.5px; position: relative; padding-bottom: 12px; }
.detail-info h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--accent); border-radius: 2px; }

.detail-info p { font-size: 0.95rem; line-height: 1.7; color: var(--text-body); margin-bottom: 22px; }

.detail-features { margin-bottom: 30px; padding-left: 0; display: flex; flex-direction: column; gap: 12px; }
.detail-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text-dark); font-weight: 500; line-height: 1.4; }
.detail-features li i { color: var(--accent); font-size: 1.05rem; margin-top: 2px; }

.detail-info .btn-solid { padding: 12px 35px; border-radius: var(--radius); }

.text-highlight { color: #38A3E7; }

/* ===================== CLIENTS SECTION ===================== */
.clients-section { padding: 0; }
.clients-banner { background: var(--primary); text-align: center; padding: 30px 20px; }
.clients-banner h2 { color: var(--white); font-size: 1.6rem; font-weight: 800; letter-spacing: 3px; margin: 0; }
.clients-logos-wrap { background: var(--bg-light); padding: 50px 0; overflow: hidden; }

.clients-marquee { display: flex; overflow: hidden; width: 100%; }
.clients-track { display: flex; animation: scroll-left 40s linear infinite; width: max-content; }
.clients-track:hover { animation-play-state: paused; }
.clients-group { display: flex; gap: 20px; padding-right: 20px; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-card { background: var(--white); border-radius: 8px; border: 1px solid #e1e8ed; padding: 25px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0, 51, 102, 0.06); transition: all 0.4s ease; height: 140px; width: 260px; flex-shrink: 0; }
.client-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0, 51, 102, 0.15); border-color: var(--accent); }
.client-card img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; mix-blend-mode: multiply; }
.client-card:hover img { transform: scale(1.12); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.testimonial-card { text-align: center; padding: 40px 30px; background: var(--bg-light); border-radius: var(--radius); transition: all var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 15px; border: 3px solid var(--accent); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 1rem; color: var(--primary); margin-bottom: 3px; }
.testimonial-role { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 15px; }
.testimonial-text { font-size: 0.9rem; font-style: italic; color: var(--text-body); line-height: 1.7; }

/* ===================== NEWSLETTER ===================== */
.newsletter-section { padding: 50px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.newsletter-wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.newsletter-text h2 { color: var(--white); font-size: 1.4rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 5px; }
.newsletter-text p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { padding: 14px 20px; border: none; border-radius: 4px 0 0 4px; font-size: 0.9rem; font-family: var(--font); width: 320px; outline: none; }
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button { padding: 14px 30px; background: var(--primary-dark); color: var(--white); border: none; border-radius: 0 4px 4px 0; font-weight: 700; font-size: 0.85rem; font-family: var(--font); cursor: pointer; letter-spacing: 1px; transition: all var(--transition); }
.newsletter-form button:hover { background: #001a33; }

/* ===================== FOOTER ===================== */
.main-footer { background: #1c1c2e; padding: 60px 0 40px; color: #aaa; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--accent); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a i { color: var(--accent); font-size: 0.7rem; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact ul li { margin-bottom: 12px; font-size: 0.85rem; line-height: 1.6; }
.footer-contact ul li strong { color: var(--white); display: block; font-size: 0.8rem; margin-bottom: 2px; }
.footer-about p { font-size: 0.85rem; line-height: 1.8; color: #aaa; }

/* ===================== COPYRIGHT ===================== */
.copyright-bar { background: #141425; padding: 15px 0; text-align: center; }
.copyright-bar p { color: #666; font-size: 0.8rem; margin: 0; }

/* ===================== BACK TO TOP ===================== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 998; width: 45px; height: 45px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: 0 4px 12px rgba(0,153,204,0.3); opacity: 0; visibility: hidden; transition: all var(--transition); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* ===================== ABOUT PAGE HERO ===================== */
.about-hero {
    position: relative;
    height: 35vh;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.breadcrumbs {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}
.breadcrumbs a:hover {
    color: var(--white);
}
.breadcrumbs span {
    color: #38A3E7;
}

/* ===================== ABOUT PAGE CONTENT ===================== */
.about-page-content {
    padding: 80px 0;
}
.about-page-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--primary);
    margin-bottom: 25px;
}
.about-paragraphs p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}
.about-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sidebar-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.sidebar-box h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}
.sidebar-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.sidebar-box ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}
.sidebar-box ul li {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-box ul li i {
    color: var(--accent);
    font-size: 1rem;
}
.segment-box ul li i {
    color: var(--primary);
}

/* ===================== INDUSTRY SEGMENTS ===================== */
.industries-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.industry-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
    cursor: pointer;
}
.industry-image {
    width: 100%;
    height: 100%;
}
.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: all var(--transition);
}
.industry-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    text-align: center;
}
.industry-name h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all var(--transition);
}
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.industry-card:hover .industry-image img {
    transform: scale(1.1);
}
.industry-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
}
.industry-card:hover .industry-name h3 {
    transform: translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    .about-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-title { font-size: 2.2rem; }
    .newsletter-wrap { flex-direction: column; text-align: center; }

    /* Showcase section responsive */
    .product-slide-card { flex: 0 0 calc(50% - 10px); }
    .slider-arrow.arrow-left { left: -10px; }
    .slider-arrow.arrow-right { right: -10px; }
    .detail-grid { grid-template-columns: 1fr; gap: 35px; }
    .detail-image { height: 300px; }
    
    
    /* About page grid responsive */
    .about-page-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* Industry segments responsive */
    .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .main-header .container { height: 65px; }
    .mobile-menu-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
    .main-nav.active { display: block; }
    .nav-list { flex-direction: column; padding: 10px 20px; }
    .nav-list li a { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .nav-list li a::after { display: none; }
    .hero-title { font-size: 1.8rem; }
    .hero-arrow { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .newsletter-form input { width: 100%; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { border-radius: 4px; }
    .newsletter-form button { border-radius: 4px; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .clients-logos { gap: 15px; }
    .product-slide-card { flex: 0 0 100%; }
    .arrow-left { left: 0; }
    .arrow-right { right: 0; }
    
    /* Industry segments mobile */
    .industries-grid { grid-template-columns: 1fr; }
}

/* ===================== WHY CHOOSE US ===================== */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    padding: 0;
}
.why-choose-points li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}
.why-choose-points li:hover {
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: 0 6px 15px rgba(16, 42, 131, 0.08);
}
.why-choose-points .point-icon {
    font-size: 1.3rem;
    color: var(--accent);
    display: flex;
    align-items: center;
}
.why-choose-points .point-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}
.why-choose-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
    position: relative;
}
.why-choose-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 25px;
}
.why-choose-subheading {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}
.why-choose-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
}
.why-choose-body {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* Responsive why-choose */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 40px;
}
.contact-info-column {
    display: flex;
    flex-direction: column;
}
.contact-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 30px;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.contact-info-item .icon-box {
    width: 48px;
    height: 48px;
    background: rgba(16, 42, 131, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.contact-info-item:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}
.info-text h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.info-text p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}
.info-text a {
    color: var(--text-body);
    font-weight: 500;
}
.info-text a:hover {
    color: var(--primary);
}

.contact-form-column {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(16, 42, 131, 0.15);
    background: var(--white);
}
.contact-form button[type="submit"] {
    align-self: flex-start;
    border-radius: var(--radius);
    padding: 12px 35px;
}

/* Success Message */
.form-success-msg {
    text-align: center;
    padding: 40px 20px;
}
.form-success-msg i {
    font-size: 3.5rem;
    color: var(--green);
    margin-bottom: 20px;
}
.form-success-msg h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.form-success-msg p {
    font-size: 0.95rem;
    color: var(--text-body);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-column {
        padding: 25px;
    }
}
