/*
Theme Name: Skill Innovation
Theme URI: https://skillinnovation.com
Author: Skill Innovation
Author URI: https://skillinnovation.com
Description: Professional WordPress theme for Skill Innovation - India's trusted skill development tender consultancy. Features tender portal, lead capture forms, WhatsApp integration, and full SEO optimization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skillinnovation
Tags: business, consulting, professional, responsive, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --si-blue:        #0F3F7F;
  --si-blue-mid:    #1A5CA8;
  --si-blue-light:  #EBF2FC;
  --si-blue-dark:   #0A2D5E;
  --si-accent:      #F5A623;
  --si-accent-bg:   #FEF3DC;
  --si-teal:        #1A7F3C;
  --si-teal-bg:     #EBF7ED;
  --si-red:         #C53030;
  --si-red-bg:      #FEF0EC;
  --si-white:       #FFFFFF;
  --si-light:       #F8FAFD;
  --si-border:      #D8E4F3;
  --si-text:        #1A1A2E;
  --si-muted:       #5A6272;
  --si-dark:        #1A1A2E;
  --font-heading:   'Raleway', 'Montserrat', sans-serif;
  --font-body:      'Inter', 'Source Sans Pro', sans-serif;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      14px;
  --shadow-sm:      0 2px 8px rgba(15,63,127,0.08);
  --shadow-md:      0 4px 20px rgba(15,63,127,0.12);
  --shadow-lg:      0 8px 40px rgba(15,63,127,0.16);
  --transition:     all 0.25s ease;
  --max-width:      1200px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--si-text);
  background: var(--si-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--si-blue-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--si-blue); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--si-text);
  font-weight: 700;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--si-blue-mid);
  margin-bottom: 10px;
  display: block;
}
.section-tag.light { color: rgba(255,255,255,0.5); }
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--si-text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title.white { color: #fff; }
.section-sub {
  font-size: 16px;
  color: var(--si-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.section-sub.light { color: rgba(255,255,255,0.7); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--si-accent);
  color: var(--si-dark);
  border-color: var(--si-accent);
}
.btn-primary:hover {
  background: #e09420;
  border-color: #e09420;
  color: var(--si-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--si-blue);
  color: #fff;
  border-color: var(--si-blue);
}
.btn-secondary:hover {
  background: var(--si-blue-dark);
  border-color: var(--si-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.btn-outline-blue {
  background: transparent;
  color: var(--si-blue);
  border-color: var(--si-blue);
}
.btn-outline-blue:hover {
  background: var(--si-blue);
  color: #fff;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ============================================================
   NAVIGATION
============================================================ */
#site-header {
  background: var(--si-white);
  border-bottom: 1px solid var(--si-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--si-blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--si-blue);
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--si-accent); }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav ul { display: flex; align-items: center; gap: 28px; }
.site-nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--si-muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.site-nav ul li a:hover,
.site-nav ul li.current-menu-item a {
  color: var(--si-blue);
  border-bottom-color: var(--si-blue);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--si-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  background: linear-gradient(135deg, #0A2D5E 0%, #1A5CA8 60%, #1E6FCC 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--si-accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.hero-h1 {
  font-size: clamp(32px, 5vw, 50px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero-h1 em { font-style: italic; color: var(--si-accent); font-weight: 700; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
}
.hero-stat .num em { color: var(--si-accent); font-style: normal; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-cards { padding-bottom: 40px; }
.tender-preview-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 12px;
  border-left: 3px solid var(--si-accent);
  box-shadow: var(--shadow-md);
}
.tpc-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--si-blue);
  background: var(--si-blue-light);
  padding: 2px 9px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}
.tpc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--si-text);
  line-height: 1.35;
  margin-bottom: 6px;
}
.tpc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--si-muted);
}
.tpc-deadline { color: var(--si-red); font-weight: 700; }
.hero-alert {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 500;
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--si-blue-light);
  padding: 16px 0;
  border-bottom: 1px solid var(--si-border);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-inner::-webkit-scrollbar { display: none; }
.trust-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--si-blue);
  white-space: nowrap;
  margin-right: 8px;
  flex-shrink: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--si-blue-mid);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-check {
  width: 16px; height: 16px;
  background: var(--si-blue-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-divider { color: var(--si-border); font-size: 16px; flex-shrink: 0; }

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.service-card {
  background: var(--si-white);
  border: 1px solid var(--si-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--si-blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card.featured {
  background: var(--si-blue-light);
  border: 1.5px dashed var(--si-blue-mid);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--si-blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card.featured .service-icon { background: #fff; }
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--si-text);
  margin-bottom: 8px;
}
.service-card p { font-size: 13px; color: var(--si-muted); line-height: 1.65; margin: 0; }
.service-learn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--si-blue-mid);
  margin-top: 12px;
  text-decoration: none;
  transition: var(--transition);
}
.service-learn:hover { color: var(--si-blue); gap: 6px; }

/* ============================================================
   TENDER UPDATES SECTION
============================================================ */
.tender-section { background: var(--si-light); }
.tender-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--si-border);
  background: #fff;
  color: var(--si-muted);
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--si-blue);
  color: #fff;
  border-color: var(--si-blue);
}
.tender-list { display: flex; flex-direction: column; gap: 10px; }
.tender-item {
  background: #fff;
  border: 1px solid var(--si-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.tender-item:hover {
  border-color: var(--si-blue-mid);
  box-shadow: var(--shadow-sm);
}
.tender-badge {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.badge-hot { background: var(--si-red-bg); color: var(--si-red); }
.badge-new { background: var(--si-teal-bg); color: var(--si-teal); }
.badge-open { background: var(--si-blue-light); color: var(--si-blue); }
.tender-info { flex: 1; min-width: 0; }
.tender-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--si-text);
  line-height: 1.4;
  margin-bottom: 4px;
}
.tender-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--si-muted);
  flex-wrap: wrap;
}
.tender-state {
  background: var(--si-accent-bg);
  color: #7A5000;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
}
.tender-deadline { color: var(--si-red); font-weight: 700; font-size: 12px; white-space: nowrap; flex-shrink: 0; }
.view-all-wrap { margin-top: 20px; text-align: center; }
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--si-blue-mid);
  text-decoration: none;
  border-bottom: 2px solid var(--si-blue-light);
  padding-bottom: 2px;
  transition: var(--transition);
}
.view-all-link:hover { color: var(--si-blue); border-bottom-color: var(--si-blue); }

/* ============================================================
   WHY US SECTION
============================================================ */
.why-section { background: var(--si-blue); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px;
}
.why-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--si-accent);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1;
}
.why-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.65; margin: 0; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--si-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.stars { color: var(--si-accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 13px;
  color: var(--si-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--si-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.tc-name { font-size: 14px; font-weight: 700; color: var(--si-text); }
.tc-org { font-size: 12px; color: var(--si-muted); }

/* ============================================================
   LEAD MAGNET
============================================================ */
.lead-magnet-section { background: var(--si-light); }
.lead-magnet-box {
  background: linear-gradient(135deg, var(--si-accent-bg), #fff);
  border: 1.5px solid var(--si-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.lm-icon { font-size: 40px; margin-bottom: 12px; }
.lm-title { font-size: 22px; font-weight: 800; color: var(--si-text); margin-bottom: 8px; }
.lm-sub { font-size: 14px; color: var(--si-muted); line-height: 1.65; margin-bottom: 24px; }
.lm-form {
  display: flex;
  gap: 10px;
}
.lm-input {
  flex: 1;
  border: 1px solid var(--si-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  background: #fff;
}
.lm-input:focus { border-color: var(--si-blue-mid); box-shadow: 0 0 0 3px rgba(26,92,168,0.1); }
.lm-fine { font-size: 11px; color: var(--si-muted); margin-top: 10px; }

/* ============================================================
   TENDER PORTAL PAGE
============================================================ */
.page-hero {
  background: var(--si-blue);
  padding: 60px 0;
  text-align: center;
}
.portal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
  padding: 48px 0;
}
.portal-sidebar {}
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--si-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-widget h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--si-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--si-blue-light);
}
.sidebar-widget label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--si-muted);
  margin-bottom: 8px;
  cursor: pointer;
}
.sidebar-widget select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--si-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--si-text);
  outline: none;
  background: #fff;
}
.portal-main {}
.portal-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.portal-count { font-size: 13px; color: var(--si-muted); }
.portal-count strong { color: var(--si-text); }
.tender-full-item {
  background: #fff;
  border: 1px solid var(--si-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: var(--transition);
}
.tender-full-item:hover {
  border-color: var(--si-blue-mid);
  box-shadow: var(--shadow-sm);
}
.tfi-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 10px; }
.tfi-info { flex: 1; }
.tfi-title { font-size: 15px; font-weight: 700; color: var(--si-text); margin-bottom: 5px; line-height: 1.4; }
.tfi-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.tfi-scheme {
  background: var(--si-blue-light);
  color: var(--si-blue);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.tfi-state {
  background: var(--si-accent-bg);
  color: #7A5000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.tfi-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--si-border);
  margin-top: 10px;
}
.tfi-dates { font-size: 12px; color: var(--si-muted); }
.tfi-deadline-val { color: var(--si-red); font-weight: 700; }
.tfi-actions { display: flex; gap: 8px; }

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-list { max-width: 780px; }
.faq-item {
  border: 1px solid var(--si-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--si-text);
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--si-blue-light); color: var(--si-blue); }
.faq-question.active { background: var(--si-blue); color: #fff; }
.faq-icon {
  width: 24px; height: 24px;
  background: var(--si-blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: var(--transition);
}
.faq-question.active .faq-icon { background: rgba(255,255,255,0.2); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--si-muted);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.ci-icon {
  width: 40px; height: 40px;
  background: var(--si-blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-label { font-size: 11px; font-weight: 800; color: var(--si-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.ci-value { font-size: 14px; font-weight: 600; color: var(--si-text); }
.contact-form-box {
  background: #fff;
  border: 1px solid var(--si-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 18px; }
.cf-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--si-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  border: 1px solid var(--si-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--si-text);
  outline: none;
  transition: var(--transition);
  background: #fff;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--si-blue-mid);
  box-shadow: 0 0 0 3px rgba(26,92,168,0.08);
}
.cf-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--si-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-top: 12px; max-width: 240px; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: var(--si-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================
   UTILITIES
============================================================ */
.bg-light { background: var(--si-light); }
.bg-blue { background: var(--si-blue); }
.bg-white { background: var(--si-white); }
.text-center { text-align: center; }
.center-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mt-0{margin-top:0} .mt-1{margin-top:8px} .mt-2{margin-top:16px} .mt-3{margin-top:24px} .mt-4{margin-top:32px}
.mb-0{margin-bottom:0} .mb-1{margin-bottom:8px} .mb-2{margin-bottom:16px} .mb-3{margin-bottom:24px} .mb-4{margin-bottom:32px}
.info-box {
  background: var(--si-blue-light);
  border-left: 4px solid var(--si-blue-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.success-box {
  background: var(--si-teal-bg);
  border-left: 4px solid var(--si-teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.alert-box {
  background: var(--si-accent-bg);
  border-left: 4px solid var(--si-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portal-layout { grid-template-columns: 1fr; }
  .portal-sidebar { display: none; }
}
@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .section-pad { padding: 56px 0; }
  .site-nav ul, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .lm-form { flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .tender-item { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-section { padding: 48px 0 0; }
  .contact-form-box { padding: 20px; }
  .lead-magnet-box { padding: 24px; }
}
.tender-preview-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.tender-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
/* ============================================================
   MOBILE NAV
============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--si-border);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; gap: 0; }
.mobile-nav ul li { border-bottom: 1px solid var(--si-border); }
.mobile-nav ul li:last-child { border-bottom: none; }
.mobile-nav ul li a { display: block; padding: 12px 0; font-size: 15px; font-weight: 600; color: var(--si-text); }
.mobile-nav .btn { margin-top: 14px; width: 100%; justify-content: center; }

/* ============================================================
   PRINT
============================================================ */
@media print {
  .whatsapp-float, #site-header, #site-footer { display: none; }
}
/*
=============================================================
SKILL INNOVATIONS — CORRIGENDUM / DATE EXTENDED FEATURE
=============================================================
ADD THIS TO YOUR THEME'S style.css (at the very bottom)
=============================================================
*/

/* ── Corrigendum / Extended Badge ── */
.badge-corrigendum {
    background: #FFF3CD;
    color: #856404;
    border: 1px solid #FFCA2C;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 5px;
    white-space: nowrap;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    animation: blink-border 2s ease-in-out infinite;
}
.badge-extended {
    background: #D1ECF1;
    color: #0C5460;
    border: 1px solid #BEE5EB;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 5px;
    white-space: nowrap;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
@keyframes blink-border {
    0%, 100% { border-color: #FFCA2C; box-shadow: none; }
    50%       { border-color: #e6a800; box-shadow: 0 0 0 2px rgba(255,193,7,0.25); }
}

/* ── Corrigendum Notice Box (inside tender card) ── */
.corrigendum-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFFBEA;
    border: 1px solid #FFCA2C;
    border-left: 4px solid #F5A623;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 12px;
    color: #5a4000;
    line-height: 1.55;
}
.corrigendum-notice .cn-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}
.corrigendum-notice .cn-label {
    font-weight: 800;
    color: #856404;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 2px;
}
.corrigendum-notice .cn-text {
    color: #5a4000;
}
.cn-new-date {
    display: inline-block;
    background: #fff3cd;
    border: 1px solid #FFCA2C;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    color: #856404;
    font-size: 11px;
    margin-top: 4px;
}
.cn-original-date {
    text-decoration: line-through;
    color: #999;
    font-size: 11px;
    margin-left: 4px;
}

/* ── Alert/Urgent Strip (for closing-soon alerts) ── */
.tender-alert-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff3cd, #fffbea);
    border: 1px solid #FFCA2C;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #856404;
    margin-top: 8px;
}
.tender-alert-strip .alert-icon {
    font-size: 15px;
    animation: shake 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%  { transform: rotate(-8deg); }
    20%, 40%  { transform: rotate(8deg); }
    50%       { transform: rotate(0deg); }
}

/* ── Extended Date display ── */
.date-extended-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.date-original-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 11px;
}
.date-new-value {
    color: #0C5460;
    font-weight: 800;
    font-size: 12px;
}
