/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1778236007
Updated: 2026-05-08 15:56:47

*/

   /*
         Theme Name: GeneratePress Child
         Template: generatepress
        */

/* ===== IMPORT FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&family=Baloo+2:wght@700;800&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --blue: #1a3c8f;
  --blue-dark: #0f2560;
  --blue-light: #2a56c6;
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --red-light: #ef5350;
  --gold: #f59e0b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --green: #16a34a;
  --purple: #7c3aed;
}

/* ===== GLOBAL RESET ===== */
* { box-sizing: border-box; }
body { 
  font-family: 'Noto Sans', sans-serif !important; 
  background: var(--gray-50) !important; 
  color: var(--gray-800) !important;
  overflow-x: hidden;
}

/* ===== HIDE DEFAULT GP HEADER ===== */
.site-header { display: none !important; }

/* ===== CUSTOM HEADER ===== */
.sr-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.sr-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.sr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sr-logo-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800; font-size: 20px; color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.sr-logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 22px; font-weight: 800; color: white; line-height: 1;
}
.sr-logo-sub {
  font-size: 10px; color: rgba(255,255,255,0.7);
  font-weight: 400; display: block;
}
.sr-nav { display: flex; gap: 2px; }
.sr-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 13.5px; font-weight: 600;
  padding: 6px 13px; border-radius: 6px;
  text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
}
.sr-nav a:hover,
.sr-nav a.active {
  background: rgba(255,255,255,0.15); color: white;
}
.sr-nav a.active {
  border-bottom: 2px solid var(--gold);
}

/* ===== ALERT / BREAKING BAR ===== */
.sr-alert-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  color: white; padding: 7px 0; overflow: hidden;
  display: flex; align-items: center;
}
.sr-alert-label {
  background: var(--gold); color: #1a1a1a;
  font-weight: 800; font-size: 11px;
  padding: 3px 10px; white-space: nowrap;
  margin-right: 14px; letter-spacing: 0.5px;
  border-radius: 3px; flex-shrink: 0; margin-left: 12px;
}
.sr-alert-marquee { flex: 1; overflow: hidden; position: relative; }
.sr-alert-track {
  display: inline-block;
  animation: srMarquee 28s linear infinite;
  white-space: nowrap; font-size: 13px; font-weight: 500;
}
.sr-alert-track span { margin-right: 60px; }
.sr-alert-track span::before { content: "🔴 "; }
@keyframes srMarquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ===== MAIN CONTAINER ===== */
.sr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Remove GP default container padding */
.site-main .container,
.entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.page .content-area { padding: 0 !important; }
.site-content { padding: 0 !important; }
.entry-content > * { margin: 0 !important; }

/* ===== HERO SECTION ===== */
.sr-hero { padding: 20px 0 16px; }
.sr-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

/* Featured Card */
.sr-featured-card {
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.sr-featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.sr-featured-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #1e4db7 100%);
  position: relative; display: flex; align-items: flex-end; padding: 16px;
}
.sr-featured-img-content { position: relative; z-index: 1; }
.sr-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.sr-featured-title-img {
  font-size: 18px; font-weight: 800; color: white;
  margin-top: 8px; line-height: 1.3;
}
.sr-featured-body { padding: 14px 16px; }
.sr-featured-meta {
  display: flex; gap: 16px;
  font-size: 12px; color: var(--gray-600); margin-bottom: 10px;
}
.sr-featured-desc {
  font-size: 13.5px; color: var(--gray-600);
  line-height: 1.6; margin-bottom: 12px;
}
.sr-btn-row { display: flex; gap: 10px; }
.sr-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; border: none; text-decoration: none; transition: all 0.2s;
}
.sr-btn-primary { background: var(--blue); color: white !important; }
.sr-btn-primary:hover { background: var(--blue-dark); }
.sr-btn-outline {
  background: transparent; color: var(--blue) !important;
  border: 2px solid var(--blue);
  font-size: 12px; padding: 5px 12px;
}

/* Side Cards */
.sr-side-cards { display: flex; flex-direction: column; gap: 10px; }
.sr-side-card {
  background: white; border-radius: 10px; padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07); cursor: pointer;
  border-left: 4px solid var(--blue); transition: all 0.2s;
  display: flex; gap: 12px; align-items: flex-start;
}
.sr-side-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.sr-side-card.red { border-left-color: var(--red); }
.sr-side-card.green { border-left-color: var(--green); }
.sr-side-card.gold { border-left-color: var(--gold); }
.sr-side-card-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; background: var(--gray-100);
}
.sr-side-card-title {
  font-size: 13px; font-weight: 700; color: var(--gray-800);
  margin-bottom: 3px; line-height: 1.3;
}
.sr-side-card-meta { font-size: 11px; color: var(--gray-600); }
.sr-sc-btn {
  margin-top: 7px; border-radius: 6px; padding: 4px 12px;
  font-size: 11px; border: none; cursor: pointer; font-weight: 700; color: white;
}

/* ===== AD PLACEHOLDER ===== */
.sr-ad {
  background: var(--gray-100); border: 2px dashed var(--gray-200);
  border-radius: 8px; padding: 16px; text-align: center;
  color: var(--gray-600); font-size: 12px; margin: 8px 0;
}

/* ===== SECTION TITLES ===== */
.sr-section { padding: 16px 0; }
.sr-section-title {
  font-family: 'Baloo 2', cursive;
  font-size: 20px; font-weight: 700; color: var(--blue-dark);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.sr-section-title::after {
  content: ''; flex: 1; height: 2px;
  background: linear-gradient(to right, var(--blue-light), transparent);
}

/* ===== QUICK LINKS ===== */
.sr-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.sr-quick-card {
  border-radius: 12px; padding: 20px 14px;
  text-align: center; cursor: pointer;
  transition: all 0.22s; text-decoration: none !important;
  display: block; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.sr-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.sr-qc-icon { font-size: 28px; margin-bottom: 8px; }
.sr-qc-label { font-size: 13px; font-weight: 800; color: white !important; }
.sr-qc-1 { background: linear-gradient(135deg, #1a3c8f, #2a56c6); }
.sr-qc-2 { background: linear-gradient(135deg, #b71c1c, #ef5350); }
.sr-qc-3 { background: linear-gradient(135deg, #15803d, #22c55e); }
.sr-qc-4 { background: linear-gradient(135deg, #92400e, #f59e0b); }
.sr-qc-5 { background: linear-gradient(135deg, #6d28d9, #a78bfa); }

/* ===== UPDATES LIST ===== */
.sr-updates-list {
  background: white; border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07); overflow: hidden;
}
.sr-update-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s; cursor: pointer;
}
.sr-update-item:last-child { border-bottom: none; }
.sr-update-item:hover { background: var(--gray-50); }
.sr-update-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0; background: var(--blue);
}
.sr-update-dot.red { background: var(--red); }
.sr-update-dot.green { background: var(--green); }
.sr-update-title {
  flex: 1; font-size: 13.5px; font-weight: 600;
  color: var(--gray-800); line-height: 1.3;
}
.sr-new-tag {
  background: var(--red); color: white;
  font-size: 9px; font-weight: 800;
  padding: 1px 6px; border-radius: 3px;
  margin-left: 6px; vertical-align: middle;
  text-transform: uppercase;
  animation: srPulse 1.5s ease-in-out infinite;
}
@keyframes srPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.sr-update-date { font-size: 11px; color: var(--gray-600); white-space: nowrap; }
.sr-upd-btn {
  padding: 4px 12px; font-size: 11px; font-weight: 700;
  border: none; border-radius: 6px; cursor: pointer; color: white;
  flex-shrink: 0;
}
.sr-upd-btn.blue { background: var(--blue); }
.sr-upd-btn.red { background: var(--red); }
.sr-upd-btn.green { background: transparent; color: var(--green) !important; border: 2px solid var(--green); }

/* ===== MAIN + SIDEBAR LAYOUT ===== */
.sr-main-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px; align-items: start;
}
.sr-sidebar { display: flex; flex-direction: column; gap: 14px; }
.sr-sidebar-widget {
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.sr-widget-title {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: white; padding: 10px 14px;
  font-size: 13px; font-weight: 800;
  font-family: 'Baloo 2', cursive;
  display: flex; align-items: center; gap: 6px;
}
.sr-search-box { padding: 12px; }
.sr-search-input {
  width: 100%; padding: 9px 12px;
  border: 2px solid var(--gray-200); border-radius: 8px;
  font-size: 13px; outline: none; transition: border-color 0.2s;
}
.sr-search-input:focus { border-color: var(--blue); }
.sr-search-btn {
  width: 100%; margin-top: 8px; padding: 8px;
  background: var(--blue); color: white !important;
  border: none; border-radius: 8px;
  font-size: 13px; font-weight: 700; cursor: pointer;
}
.sr-cat-list { padding: 8px 0; }
.sr-cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; border-bottom: 1px solid var(--gray-100);
  cursor: pointer; transition: background 0.15s; font-size: 13px;
}
.sr-cat-item:hover { background: var(--gray-50); }
.sr-cat-count {
  background: var(--blue); color: white;
  font-size: 10px; padding: 2px 7px;
  border-radius: 10px; font-weight: 700;
}
.sr-popular-item {
  display: flex; gap: 10px; padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer; transition: background 0.15s;
}
.sr-popular-item:hover { background: var(--gray-50); }
.sr-popular-num {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--blue); color: white;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sr-popular-num.red { background: var(--red); }
.sr-popular-num.gold { background: var(--gold); color: #1a1a1a; }
.sr-popular-text {
  font-size: 12.5px; font-weight: 600;
  color: var(--gray-800); line-height: 1.4;
}
.sr-tg-btn {
  margin: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #0088cc, #229ED9);
  color: white !important; padding: 12px; border-radius: 10px;
  font-size: 14px; font-weight: 800; cursor: pointer; border: none;
  width: calc(100% - 24px); transition: all 0.2s;
}
.sr-tg-btn:hover { transform: scale(1.02); }

/* ===== 3 COLUMN ===== */
.sr-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sr-col-card {
  background: white; border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07); overflow: hidden;
}
.sr-col-header {
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.sr-col-header.blue {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: white;
}
.sr-col-header.red {
  background: linear-gradient(135deg, var(--red-dark), var(--red-light));
  color: white;
}
.sr-col-header.gold {
  background: linear-gradient(135deg, #92400e, #d97706);
  color: white;
}
.sr-col-header-title {
  font-size: 15px; font-weight: 800;
  font-family: 'Baloo 2', cursive;
}
.sr-col-item {
  padding: 9px 16px; border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: background 0.15s;
}
.sr-col-item:hover { background: var(--gray-50); }
.sr-col-item:last-child { border-bottom: none; }
.sr-col-item-text {
  font-size: 12.5px; color: var(--gray-800);
  flex: 1; line-height: 1.3; font-weight: 500;
}

/* ===== TECH CAREERS ===== */
.sr-tech-bg {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e3a6e 40%, #0f2560 100%);
  border-radius: 16px; padding: 24px; margin: 4px 0;
  position: relative; overflow: hidden;
}
.sr-tech-title {
  font-family: 'Baloo 2', cursive;
  font-size: 22px; font-weight: 800; color: white; margin-bottom: 4px;
}
.sr-tech-sub {
  color: rgba(255,255,255,0.65); font-size: 13px; margin-bottom: 20px;
}
.sr-tech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; position: relative; z-index: 1;
}
.sr-tech-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 18px 16px; cursor: pointer;
  transition: all 0.22s;
}
.sr-tech-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.sr-tech-tag {
  display: inline-block; background: var(--gold); color: #1a1a1a;
  font-size: 10px; font-weight: 800; padding: 2px 8px;
  border-radius: 4px; margin-bottom: 10px; text-transform: uppercase;
}
.sr-tech-tag.net { background: var(--blue-light); color: white; }
.sr-tech-tag.ang { background: var(--red); color: white; }
.sr-tech-card-title {
  font-size: 14px; font-weight: 700; color: white;
  margin-bottom: 6px; line-height: 1.3;
}
.sr-tech-card-meta {
  font-size: 11.5px; color: rgba(255,255,255,0.55); margin-bottom: 12px;
}
.sr-tech-card-link {
  color: var(--gold) !important; font-size: 12px; font-weight: 700; text-decoration: none;
}

/* ===== CTA ===== */
.sr-cta {
  background: linear-gradient(135deg, #0f2560, var(--blue), var(--blue-light));
  border-radius: 16px; padding: 32px; text-align: center;
  margin: 8px 0; position: relative; overflow: hidden;
}
.sr-cta::before {
  content: '📢'; position: absolute;
  right: 30px; top: 50%; transform: translateY(-50%);
  font-size: 80px; opacity: 0.1;
}
.sr-cta-title {
  font-family: 'Baloo 2', cursive;
  font-size: 24px; font-weight: 800; color: white; margin-bottom: 8px;
}
.sr-cta-sub { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 20px; }
.sr-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #229ED9; color: white !important;
  padding: 12px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 800; cursor: pointer; border: none;
  transition: all 0.2s; text-decoration: none;
}
.sr-cta-btn:hover { transform: scale(1.04); }

/* ===== FOOTER ===== */
.site-footer { display: none !important; }
.sr-footer {
  background: linear-gradient(135deg, var(--blue-dark), #0a1a40);
  color: rgba(255,255,255,0.8); margin-top: 24px;
}
.sr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px; padding: 32px 0 20px;
}
.sr-footer-desc { font-size: 13px; line-height: 1.7; opacity: 0.7; margin-top: 10px; }
.sr-footer-col-title {
  font-size: 14px; font-weight: 800; color: white; margin-bottom: 12px;
}
.sr-footer-links { list-style: none; padding: 0; margin: 0; }
.sr-footer-links li { margin-bottom: 8px; }
.sr-footer-links a {
  color: rgba(255,255,255,0.65) !important;
  font-size: 13px; text-decoration: none; transition: color 0.2s;
}
.sr-footer-links a:hover { color: var(--gold) !important; }
.sr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.sr-footer-bottom a { color: var(--gold) !important; text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sr-header-inner { height: auto; padding: 10px 16px; flex-direction: column; gap: 10px; }
  .sr-nav { flex-wrap: wrap; justify-content: center; }
  .sr-hero-grid { grid-template-columns: 1fr; }
  .sr-quick-grid { grid-template-columns: repeat(3, 1fr); }
  .sr-main-sidebar { grid-template-columns: 1fr; }
  .sr-three-col { grid-template-columns: 1fr; }
  .sr-tech-grid { grid-template-columns: 1fr; }
  .sr-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sr-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .sr-footer-grid { grid-template-columns: 1fr; }
}

