/*
Theme Name: Peleceer Group
Theme URI: https://peleceer.co.ke
Author: Peleceer Group
Author URI: https://peleceer.co.ke
Description: Custom WordPress theme for Peleceer Group - Logistics, Training & Innovation
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: peleceer
Tags: logistics, business, corporate, custom-menu, featured-images
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --primary: #00a9e0;
    --primary-dark: #0086b3;
    --primary-light: #e6f7fd;
    --accent: #ff6b35;
    --text-dark: #2c3e50;
    --text-medium: #4a5568;
    --text-light: #718096;
    --grey-50: #f8fafc;
    --grey-100: #f0f4f7;
    --grey-200: #e2e8f0;
    --grey-300: #cbd5e0;
    --grey-600: #6c7a89;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,.15);
    --radius: 8px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--grey-50);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top:10px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all .3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-contact span {
    margin-right: 20px;
}

.header-contact i {
    margin-right: 5px;
}

.header-social a {
    color: #fff;
    margin-left: 12px;
    font-size: 14px;
    transition: all .3s ease;
}

.header-social a:hover {
    opacity: .8;
}

.header-main {
    padding: 10px 0;
    background: #fff;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img,
.custom-logo {
    height: 70px;
    width: auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--primary);
}

.nav-menu,
.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu > li,
.main-nav ul > li {
    position: relative;
}

.nav-menu > li > a,
.main-nav ul > li > a {
    display: block;
    padding: 14px 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: all .3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a,
.main-nav ul > li > a:hover,
.main-nav ul > li.current-menu-item > a {
    background: var(--primary);
    color: #fff;
}

.nav-menu > li > a .nav-arrow {
    font-size: 10px;
    margin-left: 5px;
}

/* Dropdown */
.nav-menu .sub-menu,
.main-nav ul .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 100;
    list-style: none;
    padding: 0;
}

.nav-menu > li:hover > .sub-menu,
.main-nav ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li,
.main-nav .sub-menu li {
    border-bottom: 1px solid var(--grey-100);
}

.nav-menu .sub-menu li:last-child,
.main-nav .sub-menu li:last-child {
    border-bottom: none;
}

.nav-menu .sub-menu a,
.main-nav .sub-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-medium);
    font-size: 13px;
    transition: all .3s ease;
    text-transform: none;
    font-weight: 400;
}

.nav-menu .sub-menu a:hover,
.main-nav .sub-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,169,224,.85) 0%, rgba(0,134,179,.85) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    opacity: .95;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s ease;
    border: 2px solid #fff;
    margin: 0 8px;
}

.btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

.btn-dark {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ============================================================
   SLIDER DOTS
   ============================================================ */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .3s ease;
    border: none;
}

.dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* ============================================================
   INFO BANNER
   ============================================================ */
.info-banner {
    background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.info-banner .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
}

.info-text h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.info-text p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform .3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section {
    background: #fff;
    padding: 60px 0;
}

.content-section:nth-child(even),
.content-section.alt-bg {
    background: var(--grey-50);
}

.section-title {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 12px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

/* ============================================================
   TWO COLUMN LAYOUT
   ============================================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   FEATURES LIST
   ============================================================ */
.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================================
   STATS GRID
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-medium);
    font-size: 16px;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

/* ============================================================
   PROMO BANNER / CTA
   ============================================================ */
.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.promo-banner h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.promo-banner p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: .95;
}

/* ============================================================
   PAGE HEADER / BREADCRUMB
   ============================================================ */
.page-header-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    
    text-align: center;
    color: #fff;
    position: relative;
}

.page-header-banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    opacity: .9;
}

.breadcrumb a {
    color: #fff;
    opacity: .8;
}

.breadcrumb a:hover {
    opacity: 1;
    color: #fff;
}

.breadcrumb span.separator {
    margin: 0 8px;
}

/* ============================================================
   PAGE CONTENT STYLES
   ============================================================ */
.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.page-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 15px 0;
    padding-left: 20px;
    color: var(--text-medium);
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ============================================================
   SERVICE PAGE DETAIL
   ============================================================ */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-sidebar {
    background: var(--grey-50);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.service-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
}

.service-sidebar ul li {
    border-bottom: 1px solid var(--border);
}

.service-sidebar ul li a {
    display: block;
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 14px;
    transition: all .3s ease;
}

.service-sidebar ul li a:hover,
.service-sidebar ul li.active a {
    color: var(--primary);
    padding-left: 10px;
}

/* ============================================================
   TRAINING CARDS
   ============================================================ */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.training-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all .3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.training-card-img {
    height: 200px;
    overflow: hidden;
}

.training-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.training-card:hover .training-card-img img {
    transform: scale(1.05);
}

.training-card-content {
    padding: 25px;
}

.training-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.training-card-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ============================================================
   TRACKING PAGE
   ============================================================ */
.tracking-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.tracking-form-wrap label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.tracking-form-wrap input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color .3s ease;
    font-family: inherit;
}

.tracking-form-wrap input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
}

.tracking-form-wrap button {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    font-family: inherit;
}

.tracking-form-wrap button:hover {
    background: var(--primary-dark);
}

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all .3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-card-content h3 a {
    color: var(--text-dark);
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

/* ============================================================
   CSR PAGE
   ============================================================ */
.csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.csr-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: all .3s ease;
}

.csr-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.csr-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
}

/* ============================================================
   COMPANY CARDS
   ============================================================ */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.company-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all .3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.company-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.company-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

/* ============================================================
   FORMS (GENERAL)
   ============================================================ */
.peleceer-form {
    max-width: 700px;
    margin: 30px auto;
}

.peleceer-form .form-group {
    margin-bottom: 20px;
}

.peleceer-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 14px;
}

.peleceer-form input,
.peleceer-form select,
.peleceer-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color .3s ease;
}

.peleceer-form input:focus,
.peleceer-form select:focus,
.peleceer-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.peleceer-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============================================================
   WIDGETS / SIDEBAR
   ============================================================ */
.widget {
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.widget h3,
.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: var(--text-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #2c3e50;
    color: #a0aec0;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #a0aec0;
    font-size: 14px;
    transition: all .3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact-info i {
    color: var(--primary);
    margin-right: 8px;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--primary);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-medium);
    transition: all .3s ease;
}

.pagination .current,
.pagination a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 13px;
    color: var(--text-light);
    padding: 8px 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu,
    .main-nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu.active,
    .main-nav ul.active {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 12px 20px;
    }

    .nav-menu .sub-menu,
    .main-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        display: none;
        background: var(--grey-50);
    }

    .nav-menu > li:hover > .sub-menu {
        display: block;
    }

    .services-grid,
    .two-col,
    .footer-grid,
    .stats-grid,
    .gallery-grid,
    .service-detail-grid,
    .training-grid,
    .blog-grid,
    .csr-grid,
    .company-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-slider {
        height: 400px;
    }

    .info-banner .container {
        flex-direction: column;
    }

    .logo img,
    .custom-logo {
        height: 45px;
    }

    .page-header-banner h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }
}