/*
Theme Name: Praana Textiles
Theme URI: https://www.praanatextiles.com
Author: Praana Textiles
Author URI: https://www.praanatextiles.com
Description: Custom WordPress theme for Praana Textiles - Clothing Manufacturers & Exporters India. Features a modern, responsive design with sections for hero slider, capabilities, clients, and contact form.
Version: 1.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: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: praana-textiles
Tags: custom-menu, custom-logo, featured-images, theme-options, translation-ready
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --primary: #2196F3;
  --primary-dark: #1976D2;
  --secondary: #2C2D3F;
  --text-body: #888888;
  --text-dark: #333333;
  --text-heading: #2C2D3F;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
  --font-main: 'Rubik', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--secondary);
  padding: 8px 0;
  color: var(--white);
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-contact {
  display: flex;
  gap: 30px;
  align-items: center;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.top-contact a:hover {
  color: var(--primary);
}

.top-contact img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.top-contact .label {
  font-size: 11px;
  opacity: 0.7;
  display: block;
}

.top-contact .value {
  font-size: 13px;
  font-weight: 500;
}

.top-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s;
}

.top-social a:hover {
  background: var(--primary);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-logo {
  flex-shrink: 0;
  max-width: 220px;
}

.site-logo img {
  max-height: 55px;
  width: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.main-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li {
  white-space: nowrap;
}

.main-nav ul li a {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--primary);
}

/* Nav "Ask for Quote" button */
.main-nav ul li a.btn-quote,
.main-nav ul li.btn-quote a {
  padding: 8px 16px;
  font-size: 12px;
  white-space: nowrap;
}

.btn-quote {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary);
  color: var(--white) !important;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-quote:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-heading);
  cursor: pointer;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 550px;
  padding: 80px 0;
  align-items: center;
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%) !important;
}

.hero-slide.active {
  display: flex;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  color: var(--white);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.hero-content .hero-subtext {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
}

.hero-content .btn-quote {
  padding: 14px 35px;
  font-size: 16px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dots span.active {
  background: var(--primary);
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
}

.section-title p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   ABOUT / WHY CHOOSE US
   ============================================ */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-content h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
}

.stat-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--text-body);
}

.stat-item .stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
}

.about-qa {
  margin: 25px 0;
}

.about-qa .qa-item {
  margin-bottom: 10px;
  padding: 10px 15px;
  background: var(--light-bg);
  border-radius: 5px;
  border-left: 3px solid var(--primary);
}

.about-qa .qa-item strong {
  color: var(--text-heading);
}

.cost-savings-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 25px;
}

.cost-savings-bar p {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  color: var(--primary);
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--text-heading);
  color: var(--white);
}

/* Know About Us */
.know-about {
  background: var(--light-bg);
  padding: 60px 0;
}

.know-about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.know-about-inner h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 15px;
}

.know-about-inner p {
  margin-bottom: 15px;
}

.know-about-inner .btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

/* ============================================
   CLIENTS CAROUSEL
   ============================================ */
.clients-section {
  padding: 60px 0;
  background: var(--white);
}

.clients-carousel {
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 40px;
  animation: scrollClients 30s linear infinite;
}

.clients-track img {
  height: 60px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s;
  flex-shrink: 0;
}

.clients-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

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

/* ============================================
   CAPABILITIES
   ============================================ */
.capabilities-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.capabilities-header {
  text-align: center;
  margin-bottom: 50px;
}

.capabilities-header .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.capabilities-header h2 {
  font-size: 40px;
  font-weight: 800;
}

.capabilities-header p {
  max-width: 700px;
  margin: 15px auto 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.capability-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.capability-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.capability-card h4 {
  font-size: 16px;
  font-weight: 600;
}

/* ============================================
   VISION & MISSION
   ============================================ */
.vision-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: var(--white);
  position: relative;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vision-image img {
  border-radius: 10px;
  width: 100%;
}

.vision-content h3 {
  font-size: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.vision-content h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

.vision-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
  line-height: 1.8;
}

.vision-content .tagline {
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0;
}

/* ============================================
   PRIVATE LABEL SECTION
   ============================================ */
.private-label-section {
  padding: 80px 0;
}

.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.pl-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.pl-content p {
  margin-bottom: 15px;
}

.pl-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 15px 0;
}

.pl-content ul li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.pl-contact {
  margin-top: 20px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pl-contact .phone-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   BANNER MIDDLE / CTA
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 50px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 25px;
}

.cta-banner .btn-white {
  display: inline-block;
  padding: 12px 35px;
  background: var(--white);
  color: var(--primary);
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.cta-banner .btn-white:hover {
  background: var(--text-heading);
  color: var(--white);
}

/* ============================================
   APPAREL / WHY CHOOSE
   ============================================ */
.apparel-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.apparel-content {
  max-width: 900px;
  margin: 0 auto;
}

.apparel-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.apparel-content p {
  margin-bottom: 15px;
}

.apparel-content a {
  color: var(--primary);
  font-weight: 600;
}

.why-choose-box {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-choose-box h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* ============================================
   SEARCHED LINKS
   ============================================ */
.searched-links {
  padding: 50px 0;
  background: var(--white);
}

.searched-links h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.links-grid a {
  display: inline-block;
  padding: 8px 18px;
  background: var(--light-bg);
  border-radius: 25px;
  font-size: 13px;
  color: var(--text-heading);
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.links-grid a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.contact-form-inner h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.contact-form-inner > p {
  margin-bottom: 25px;
  color: var(--text-body);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .footer-logo {
  max-height: 50px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-about .gstin {
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-about .gstin strong {
  color: var(--white);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

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

.footer-contact-item img {
  width: 20px;
  filter: brightness(0) invert(1);
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--primary);
}

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero .breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb a {
  color: var(--primary);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page-content {
  padding: 80px 0;
}

.about-page-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Prevent oversized user content images from blowing out layout */
.about-page-content img,
.about-page-content .wp-block-image img,
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-page-content .wp-block-image,
.about-page-content figure {
  max-width: 100%;
  overflow: hidden;
}

/* Sidebar category link hover */
.sidebar-cat-link:hover {
  background: var(--light-bg) !important;
  color: var(--primary) !important;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 20px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 8px;
}

.contact-info-card img {
  width: 40px;
  height: 40px;
}

.contact-info-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-body);
}

/* ============================================
   PRODUCT FILTER TABS
   ============================================ */
.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.filter-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-heading);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================
   PRODUCT CATEGORY TAGS
   ============================================ */
.product-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.product-cat-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(33, 150, 243, 0.08);
  color: var(--primary);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   PRODUCT META INFO
   ============================================ */
.product-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-body);
}

.product-meta-info i {
  color: var(--primary);
  margin-right: 3px;
}

/* ============================================
   SINGLE PRODUCT
   ============================================ */
.product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table th,
.specs-table td {
  padding: 12px 15px;
  text-align: left;
  font-size: 14px;
}

.specs-table th {
  color: var(--text-heading);
  font-weight: 600;
  width: 40%;
  background: var(--light-bg);
}

/* ============================================
   BLOG / ARTICLES
   ============================================ */
.blog-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-card h2 a:hover {
  color: var(--primary);
}

/* ============================================
   JOB CARDS
   ============================================ */
.job-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.job-card h3 a:hover {
  color: var(--primary) !important;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 8px 15px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 14px;
  color: var(--text-heading);
  transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .top-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li a {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-slide {
    min-height: 400px;
  }

  .hero-slider {
    min-height: 400px;
  }

  .about-grid,
  .vision-grid,
  .pl-grid,
  .contact-grid,
  .product-single-grid {
    grid-template-columns: 1fr;
  }

  .blog-layout {
    grid-template-columns: 1fr !important;
  }

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

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 28px;
  }

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

@media (max-width: 768px) {
  /* Product sidebar layout */
  .section > .container > div[style*="grid-template-columns: 280px"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact page 2-col layouts */
  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Nearby landmarks */
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* About page know-about grid */
  .know-about-inner {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content h1 {
    font-size: 26px;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
  }
}
