/* ============================
   Brady & Morris - Main Styles
   ============================ */

:root {
    --red: #c0392b;
    --dark-red: #a93226;
    --dark: #1a1a1a;
    --light-gray: #f5f5f5;
    --mid-gray: #888;
    --text: #333;
    --border: #ddd;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); font-size: 15px; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- Top Bar ---- */
.topbar {
    background: var(--red);
    color: #fff;
    font-size: 13px;
    padding: 7px 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.topbar-inner span { display: flex; align-items: center; gap: 6px; }
.topbar i { font-size: 13px; }

/* ---- Header ---- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.logo-img { height: 60px; width: auto; }

/* ---- Navigation ---- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-left: auto;
}
.main-nav > a, .nav-dropdown > .dropdown-toggle-link {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 3px;
    transition: color .2s;
    display: inline-block;
}
.main-nav > a:hover, .nav-dropdown > .dropdown-toggle-link:hover,
.main-nav > a.active, .nav-dropdown > .dropdown-toggle-link.active {
    color: var(--red);
}
.main-nav > a.active { font-weight: 700; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle-link { cursor: pointer; }
.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-top: 3px solid var(--red);
    z-index: 999;
}
.nav-dropdown:hover .dropdown-menu-custom { display: block; }
.dropdown-menu-custom a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background .15s, color .15s;
}
.dropdown-menu-custom a:hover { background: var(--red); color: #fff; }

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}

/* ---- Page Banner ---- */
.page-banner {
    background: linear-gradient(135deg, #b8bec7 0%, #8a9096 50%, #6c7077 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpolygon points='0,0 80,0 80,80' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
}
.page-banner .container { position: relative; }
.breadcrumb-nav { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.breadcrumb-nav a { color: rgba(255,255,255,0.8); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-sep { margin: 0 6px; }
.page-banner h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.page-banner .underline {
    width: 50px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
}

/* ---- Section Title ---- */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title .label {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-title .bar {
    width: 50px;
    height: 3px;
    background: var(--red);
    margin: 0 auto;
    border-radius: 2px;
}

/* ---- Hero Slider ---- */
.hero-slider { position: relative; background: #1a1a1a; overflow: hidden; }
.swiper-hero { width: 100%; }
.hero-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}
.hero-slide-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-slide-content p {
    font-size: 18px;
    opacity: .9;
    margin-bottom: 24px;
}
.btn-hero {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 3px;
    transition: background .2s;
}
.btn-hero:hover { background: var(--dark-red); color: #fff; }
.swiper-pagination-bullet-active { background: var(--red) !important; }

/* ---- Why Choose Us ---- */
.why-us-section { padding: 70px 0; background: #f5f5f5; }
.why-section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.why-section-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.why-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.why-card {
    background: #fff;
    padding: 38px 32px 32px 36px;
    border-top: 4px solid var(--red);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}
.why-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.why-icon-wrap {
    margin-bottom: 20px;
}
.why-icon-main {
    font-size: 51px;
    color: #ff636a;
    display: block;
}
.why-card-body { flex: 1; display: flex; flex-direction: column; }
.why-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.why-card-body p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    flex: 1;
    margin-bottom: 18px;
}
.why-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: color 0.2s;
}
.why-read-more:hover { color: var(--dark-red); }
.why-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -15px;
    font-size: 130px;
    color: var(--red);
    opacity: 0.05;
    pointer-events: none;
    line-height: 1;
}

/* ---- SEO Links Strip ---- */
.seo-links-strip {
    background: var(--red);
    padding: 18px 0;
}
.seo-links-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.seo-links-inner a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    opacity: 0.92;
    transition: opacity 0.2s;
}
.seo-links-inner a:hover { opacity: 1; text-decoration: underline; }

/* ---- Testimonials ---- */
.testimonials-section { padding: 70px 0; background: var(--red); }
.testimonials-section .section-title .label { color: rgba(255,255,255,0.8); }
.testimonials-section .section-title h2 { color: #fff; }
.testimonials-section .section-title .bar { background: rgba(255,255,255,0.5); }
.testimonial-item {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 30px;
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
}
.testimonial-item::before {
    content: '\201C';
    font-size: 80px;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-item p { margin-bottom: 16px; }
.testimonial-author {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    font-weight: 600;
    font-size: 14px;
}
.testimonial-author span { display: block; font-weight: 400; font-size: 12px; opacity: .8; }
.swiper-pagination-bullet-active { background: #fff !important; }

/* ---- Products ---- */
.products-section { padding: 60px 0; }
.product-cat-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.product-cat-bar {
    width: 40px;
    height: 3px;
    background: var(--red);
    margin: 0 auto 30px;
    border-radius: 2px;
}
.product-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-3px); }
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.product-card-body p { font-size: 13px; color: #555; flex: 1; line-height: 1.7; }
.product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.btn-brochure, .btn-readmore {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    transition: all .2s;
}
.btn-brochure { border: 1px solid var(--red); color: var(--red); }
.btn-brochure:hover { background: var(--red); color: #fff; }
.btn-readmore { background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-readmore:hover { background: var(--dark-red); color: #fff; }

/* ---- Services ---- */
.service-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card-body { padding: 16px; }
.service-card-body h4 { font-weight: 700; font-size: 16px; }

/* ---- Clients page styles are in the blade @push('styles') ---- */
/* Home page client carousel strip (kept for home page) */
.clients-dots { text-align: center; margin-top: 8px; }
.clients-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    margin: 0 3px;
}
.clients-dots span.active { background: var(--red); }

/* ---- Infrastructure ---- */
.infra-section { padding: 60px 0; }
.infra-img-card {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}
.infra-img-card img { width: 100%; height: 220px; object-fit: cover; }
.infra-img-caption {
    text-align: center;
    font-size: 13px;
    color: #555;
    margin-top: 6px;
}

/* ---- Investor Relations ---- */
.investor-section { padding: 60px 0; }
.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--border);
    margin-bottom: 4px;
    border-radius: 3px;
    transition: background .15s;
}
.download-item:hover { background: var(--light-gray); }
.download-item span { font-size: 14px; color: var(--text); flex: 1; padding-right: 12px; }
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    white-space: nowrap;
    transition: background .2s;
}
.btn-download:hover { background: var(--dark-red); color: #fff; }

/* ---- About / Board ---- */
.about-section { padding: 60px 0; }
.about-text-block { font-size: 15px; line-height: 1.85; color: #444; margin-bottom: 20px; text-align: justify; }
.board-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 16px;
}
.board-card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.board-card p { font-size: 14px; color: #555; line-height: 1.8; }

/* ---- Careers ---- */
.careers-section { padding: 60px 0; }
.careers-text { font-size: 15px; line-height: 1.85; color: #444; margin-bottom: 20px; text-align: justify; }

/* ---- Contact ---- */
.contact-section { padding: 60px 0; }
.contact-form-wrap { background: #fff; padding: 30px; border: 1px solid var(--border); border-radius: 4px; }
.form-label { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.form-control { border: 1px solid #ccc; border-radius: 3px; font-size: 14px; padding: 10px 12px; }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(192,57,43,0.15); }
.btn-submit {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}
.btn-submit:hover { background: var(--dark-red); }
.contact-info-box { background: var(--light-gray); padding: 24px; border-radius: 4px; margin-bottom: 20px; }
.contact-info-box h5 { font-size: 16px; font-weight: 700; margin-bottom: 6px; text-decoration: underline; }
.contact-info-box address { font-size: 14px; color: #444; line-height: 1.8; font-style: normal; }
.contact-info-box a { color: var(--red); }

/* ---- India Map Contact ---- */
.india-map-wrap { position: relative; }
.india-map-wrap img { width: 100%; border-radius: 4px; }

/* ---- Footer ---- */
.site-footer { background: #111; color: #ccc; padding: 50px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 { color: var(--red); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: disc; padding-left: 18px; }
.footer-col ul li { margin-bottom: 6px; font-size: 14px; color: #aaa; }
.footer-col address { font-size: 14px; color: #aaa; line-height: 1.9; font-style: normal; }
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: opacity .2s;
}
.social-icon:hover { opacity: .8; }
.social-icon.email { background: var(--red); }
.social-icon.linkedin { background: #0077b5; }
.iso-img { max-width: 130px; border-radius: 4px; }
.footer-bottom {
    background: #0a0a0a;
    text-align: center;
    padding: 14px 0;
    margin-top: 40px;
    font-size: 13px;
    color: #666;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #ccc; }

/* ---- Corporate Announcements Table ---- */
.announcements-section { padding: 60px 0; }
.ann-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid var(--border);
    margin-bottom: 4px;
    border-radius: 3px;
    background: #fff;
}
.ann-item:nth-child(even) { background: var(--light-gray); }
.ann-item span { font-size: 13px; flex: 1; padding-right: 10px; }

/* ---- Corporate Policies ---- */
.policies-section { padding: 60px 0; }
.policy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.policy-item span { font-size: 14px; }

/* Famil table */
.famil-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.famil-table th, .famil-table td { border: 1px solid var(--border); padding: 8px 10px; }
.famil-table th { background: #f0f0f0; font-weight: 700; }

/* ---- Notices ---- */
.notices-section { padding: 60px 0; }
.notice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid var(--border);
    margin-bottom: 4px;
    border-radius: 3px;
}
.notice-item span { font-size: 13px; flex: 1; padding-right: 10px; }

/* ---- Investors Info ---- */
.investors-section { padding: 60px 0; background: #f5f5f5; }

/* Card shell */
.inv-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
}
.inv-card-header {
    background: var(--red);
    color: #fff;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.inv-card-body { padding: 24px; }
.inv-card-body.p-0 { padding: 0; }

/* Basic info table */
.basic-info-table { width: 100%; border-collapse: collapse; }
.basic-info-table tr { border-bottom: 1px solid #f0f0f0; }
.basic-info-table tr:last-child { border-bottom: none; }
.basic-info-table th {
    padding: 11px 14px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    background: #fafafa;
    width: 42%;
    white-space: nowrap;
}
.basic-info-table td { padding: 11px 14px; font-size: 13.5px; color: #555; }
.inv-note { font-size: 13px; color: #666; background: #fef9f9; border-left: 3px solid var(--red); padding: 10px 14px; border-radius: 2px; }

/* Committee boxes */
.committee-box {
    border: 1px solid #eee;
    border-top: 3px solid var(--red);
    border-radius: 3px;
    padding: 16px;
    height: 100%;
}
.committee-box-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}
.committee-list { list-style: none; padding: 0; margin: 0; }
.committee-list li { font-size: 13.5px; color: #444; padding: 4px 0; }
.committee-list li::before { content: '› '; color: var(--red); font-weight: 700; }

/* Legacy selectors (kept for other pages) */
.info-block { margin-bottom: 30px; }
.info-block h4 { font-size: 16px; font-weight: 700; color: var(--red); margin-bottom: 12px; text-align: center; text-transform: uppercase; letter-spacing: 1px; }
.info-block-bar { width: 40px; height: 3px; background: var(--red); margin: 0 auto 20px; border-radius: 2px; }
.info-text { font-size: 14px; line-height: 1.8; color: #444; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 0;
        background: #fff;
        border-top: 1px solid var(--border);
    }
    .main-nav.open { display: flex; }
    .why-card-grid { grid-template-columns: 1fr; }
    .seo-links-inner { flex-direction: column; gap: 14px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-slide-content h1 { font-size: 24px; }
    .hero-slide { height: 350px; }
    .nav-dropdown { width: 100%; }
    .dropdown-menu-custom { position: static; box-shadow: none; border: none; border-left: 3px solid var(--red); padding-left: 10px; display: none; }
    .nav-dropdown.open .dropdown-menu-custom { display: block; }
}
@media (max-width: 576px) {
    .topbar-inner { gap: 10px; justify-content: flex-start; }
    .hero-slide { height: 280px; }
    .page-banner h1 { font-size: 24px; }
}
