/*!
Theme Name: Zydus Infra
Theme URI: https://zydusinfrastructure.com/
Author: Zydus Infrastructure Private Limited
Author URI: https://zydusinfrastructure.com/
Description: Official WordPress theme for PHARMEZ – Zydus Infrastructure Private Limited.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: zydus-infra
Tags: pharmaceutical, corporate, custom-logo, custom-menu, responsive-layout
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
   #110E43  --navy    nav / dark sections
   #009DA2  --teal    accents / CTA / links
   #007b7f  --teal2   hover state
   #B35CA1  --pink    heading italic colour
   #615E5E  --body    body copy
   #A8A7A5  --muted   secondary text
   #131313  --dark    dark bg
   #F5F5F5  --light   off-white bg
═══════════════════════════════════════════════ */
:root {
    --navy: #110E43;
    --teal: #009DA2;
    --teal2: #007b7f;
    --pink: #B35CA1;
    --body: #615E5E;
    --muted: #A8A7A5;
    --dark: #131313;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --border: rgba(0, 157, 162, 0.18);
    --radius: 14px;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.07);
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.13);
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

.sec {
    padding: 100px 0;
}

.tc {
    text-align: center;
}

.sec-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sec-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--teal);
}

.sec-tag.center {
    justify-content: center;
}

.sec-tag.center::after {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--teal);
}

.sec-tag.light {
    color: rgba(255, 255, 255, .45);
}

.sec-tag.light::before,
.sec-tag.light::after {
    background: rgba(255, 255, 255, .3);
}

.sec-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--navy);
}

.sec-h em {
    font-style: italic;
    color: var(--pink);
}

.sec-h.light {
    color: #fff;
}

.sec-h.light em {
    color: var(--teal);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: #fff;
    padding: 13px 30px;
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 2px solid var(--teal);
    cursor: pointer;
    transition: background .2s, transform .2s, color .2s, border-color .2s;
}

.btn:hover {
    background: var(--teal2);
    border-color: var(--teal2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--teal);
}

.btn-ghost:hover {
    background: var(--teal);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

/* ── Pills & Tags ── */
.pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(0, 157, 162, .1);
    color: var(--teal);
    border: 1px solid rgba(0, 157, 162, .25);
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.tag-production {
    background: rgba(0, 157, 162, .1);
    color: var(--teal);
}

.tag-service {
    background: rgba(179, 92, 161, .1);
    color: var(--pink);
}

.tag-construction {
    background: rgba(232, 160, 32, .12);
    color: #a07800;
}

/* ── Callout Box ── */
.callout-box {
    margin-top: 24px;
    padding: 20px 24px;
    background: rgba(0, 157, 162, .07);
    border-left: 3px solid var(--teal);
    border-radius: 0 10px 10px 0;
    font-size: 14px;
    color: var(--teal);
    line-height: 1.7;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.callout-box .ti {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.callout-box strong {
    font-weight: 600;
}

/* ── Scroll Reveal ── */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.rv.in {
    opacity: 1;
    transform: none;
}

/* ── Page Masthead ── */
.page-masthead {
    height: 380px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.masthead-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.masthead-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 14, 67, .88), rgba(17, 14, 67, .52));
}

.masthead-content {
    position: relative;
    z-index: 2;
}

.masthead-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 400;
    color: #fff;
}

.masthead-content h1 em {
    font-style: italic;
    color: var(--teal);
}

.breadcrumb {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
}

.breadcrumb span {
    color: var(--teal);
}

.breadcrumb a {
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--teal);
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    height: 72px;
    padding: 0 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 24px rgba(17, 14, 67, .4);
}

.nav-logo img {
    height: 44px;
}

.nav-links .main-menu-ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .7);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: color .2s, background .2s;
}

.nav-links a:hover,
.nav-links li.current-menu-item > a,
.nav-links a.active {
    color: #fff;
    background: rgba(0, 157, 162, .2);
}

.nav-links li.current-menu-item > a,
.nav-links a.active {
    color: var(--teal);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

/* Page top offset for fixed nav */
.page-wrap {
    padding-top: 72px;
}

/* ════════════════════════════════════════
   SHARED FOOTER
════════════════════════════════════════ */
.site-footer {
    background: var(--dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo-img {
    height: 44px;
    margin-bottom: 18px;
    filter: brightness(1.2);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.f-social {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    transition: background .2s, color .2s;
}

.f-social:hover {
    background: var(--teal);
    color: #fff !important;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 18px;
}

.footer-links li+li,
.site-footer .widget_nav_menu ul li + li {
    margin-top: 10px;
}

.footer-links a,
.site-footer .widget_nav_menu a {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: color .2s;
}

.footer-links a:hover,
.site-footer .widget_nav_menu a:hover{
    color: var(--teal);
}
.footer-social .site-footer .widget_block a:hover {
    color: #fff !important; 
}
.site-footer .widget_block a:hover {
    color: var(--teal); 
}
.site-footer .widget_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer .widget_block li {
    margin-bottom: 10px;
}
.site-footer .widget_block a {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}
.footer-contact-row  a{
    color: var(--teal) !important;
}
.footer-contact-row a:hover{
    color: #009da2ad !important;
}
.site-footer .widget_text p,
.site-footer .widget_block p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.65;
}


.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-row .ti {
    font-size: 16px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-row p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.65;
}

.footer-contact-row a {
    color: var(--teal);
}

.footer-bottom {
    padding: 20px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, .22);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .22);
}

.footer-bottom-right .ti {
    font-size: 14px;
    color: var(--teal);
}

/* ════════════════════════════════════════
   LIGHTBOX  (shared across pages)
════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 14, 30, .95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lb-inner {
    position: relative;
    max-width: 900px;
    width: 92%;
    transform: scale(.94);
    transition: transform .3s;
}

.lightbox.open .lb-inner {
    transform: scale(1);
}

.lb-img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 12px;
}

.lb-caption {
    margin-top: 14px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, .7);
}

.lb-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    z-index: 2;
}

.lb-close .ti {
    font-size: 20px;
}

.lb-close:hover {
    background: var(--teal2);
    transform: rotate(90deg);
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.lb-nav .ti {
    font-size: 22px;
}

.lb-nav:hover {
    background: var(--teal);
}

.lb-prev {
    left: -68px;
}

.lb-next {
    right: -68px;
}

/* ════════════════════════════════════════
   RESPONSIVE — GLOBAL
════════════════════════════════════════ */
@media (max-width: 1024px) {
    .wrap {
        padding: 0 28px;
    }

    .site-nav {
        padding: 0 28px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        padding: 20px 28px;
    }
    .main-menu-ul li{
        display: flex;
        justify-content: center;
    }
    .lb-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .sec {
        padding: 64px 0;
    }
    .main-menu-ul li{
        display: flex;
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom{
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
}
