@charset "UTF-8";
/* ==============================
   Root Variables (PascalCase)
================================= */
:root {
  /* Colors */
  --ColorText: #444;
  --ColorWhite: #ffffff;
  --ColorLink: #ffffff;
  /* Typography */
  --FontPrimary:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  /* Spacing */
  --SectionPadding: 80px;
  /* Behavior */
  --ScrollBehavior: auto;
  /* Brand */
  --PrimaryGradient: linear-gradient(90deg, #2563eb, #22d3ee);
  /* Radius */
  --RadiusSm: 6px;
  --RadiusMd: 8px;
  --RadiusLg: 12px;
  /* Transition */
  --Transition: 0.3s ease;
  /* Shadows */
  --ShadowSoft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --CardTitleSize: 26px;
}

/* ==============================
   Reset + Base
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: var(--ScrollBehavior);
}

body {
  font-family: var(--FontPrimary);
  color: var(--ColorText);
  overscroll-behavior: none;
  background: #f9fbfd;
}

/* ==============================
   Typography
================================= */
h1,
h2 {
  font-family: var(--FontPrimary);
}

/* ==============================
   Links
================================= */
a {
  font-family: var(--FontPrimary);
  color: var(--ColorLink);
  text-decoration: none;
}

a:hover {
  color: var(--ColorLink);
  text-decoration: none;
}

/* ==============================
   Layout
================================= */
section {
  padding: var(--SectionPadding) 0;
}

.SectionTitle {
  text-align: center;
  margin-bottom: 5rem;
}
.SectionTitle .Title {
  max-width: 900px;
  font-size: 3.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: auto;
  margin-bottom: 10px;
}
.SectionTitle p {
  color: #475569;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.SectionTitle span {
  color: var(--PrimaryGradient);
  background: var(--PrimaryGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.PrimaryButton {
  border: none;
  padding: 14px 26px;
  border-radius: var(--RadiusMd, 10px);
  font-weight: 600;
  background: var(--PrimaryGradient, linear-gradient(90deg, #2563eb, #22d3ee));
  color: var(--ColorWhite);
  transition: var(--Transition, 0.3s ease);
}
.PrimaryButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.25);
  color: var(--ColorWhite);
}

.SecondaryButton {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 26px;
  border-radius: var(--RadiusMd, 10px);
  font-weight: 600;
  color: var(--ColorWhite);
  transition: var(--Transition, 0.3s ease);
  backdrop-filter: blur(6px);
}
.SecondaryButton:hover {
  background: var(--ColorWhite);
  color: #020617;
  border-color: var(--ColorWhite);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.section-header {
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

#PerformanceMarketing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--SectionPadding, 100px) 0;
  color: var(--ColorWhite);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  /* 🎯 EXACT Tailwind Gradient */
  background: linear-gradient(135deg, #020617, #0f1b3d);
  background: linear-gradient(135deg, #020617 0%, #0a1a3a 50%, #020617 100%);
  /* 🔵 TOP RIGHT GLOW (THIS IS THE "SHINE") */
}
#PerformanceMarketing::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -12rem;
  width: 24rem;
  height: 24rem;
  background: #2563eb;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}
#PerformanceMarketing > * {
  position: relative;
  z-index: 2;
}
#PerformanceMarketing .HeroContent {
  max-width: 1100px;
  margin-bottom: 70px;
}
#PerformanceMarketing .Tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--ColorPrimaryLight, #60a5fa);
  margin-bottom: 14px;
  opacity: 0.9;
}
#PerformanceMarketing .HeroTitle {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
#PerformanceMarketing .HeroTitle span {
  background: var(--PrimaryGradient, linear-gradient(to right, #60a5fa, #22d3ee));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#PerformanceMarketing .HeroText {
  font-size: 18px;
  color: var(--ColorTextLight, #c5d3f2);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}
#PerformanceMarketing .HeroButtons {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
#PerformanceMarketing .PrimaryButton {
  background: var(--PrimaryGradient, linear-gradient(90deg, #2563eb, #22d3ee));
  border: none;
  padding: 14px 26px;
  border-radius: var(--RadiusMd, 10px);
  font-weight: 600;
  color: var(--ColorWhite);
  transition: var(--Transition, 0.3s ease);
}
#PerformanceMarketing .PrimaryButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.25);
}
#PerformanceMarketing .SecondaryButton {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 26px;
  border-radius: var(--RadiusMd, 10px);
  font-weight: 600;
  color: var(--ColorWhite);
  transition: var(--Transition, 0.3s ease);
  backdrop-filter: blur(6px);
}
#PerformanceMarketing .SecondaryButton:hover {
  background: var(--ColorWhite);
  color: #020617;
  border-color: var(--ColorWhite);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}
#PerformanceMarketing .StatsSection {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#PerformanceMarketing .StatsSection .StatCard {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--RadiusLg, 12px);
  backdrop-filter: blur(12px);
  transition: var(--Transition, 0.3s ease);
  height: 100%;
}
#PerformanceMarketing .StatsSection .StatCard:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
#PerformanceMarketing .StatsSection .StatCard h2 {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
#PerformanceMarketing .StatsSection .StatCard p {
  font-size: 14px;
  color: var(--ColorMuted, #a9b9da);
  letter-spacing: 0.3px;
}
#PerformanceMarketing {
  /* Tablet */
}
@media (max-width: 992px) {
  #PerformanceMarketing .HeroTitle {
    font-size: 48px;
  }
  #PerformanceMarketing .HeroContent {
    margin-bottom: 50px;
  }
}
#PerformanceMarketing {
  /* Mobile */
}
@media (max-width: 576px) {
  #PerformanceMarketing {
    padding: 80px 0;
  }
  #PerformanceMarketing .HeroTitle {
    font-size: 34px;
  }
  #PerformanceMarketing .HeroText {
    font-size: 16px;
  }
  #PerformanceMarketing .HeroButtons {
    flex-direction: column;
    width: 100%;
  }
  #PerformanceMarketing .HeroButtons .btn {
    width: 100%;
    text-align: center;
  }
  #PerformanceMarketing .StatCard {
    margin-bottom: 18px;
  }
}

#ProblemsSolve {
  padding: var(--SectionPadding, 100px) 0;
  background: #f8fafc;
  position: relative;
  /* Glow Effect */
}
#ProblemsSolve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.15), transparent 40%);
  pointer-events: none;
}
#ProblemsSolve .ProblemsList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#ProblemsSolve .ProblemsList .ProblemItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--RadiusMd, 10px);
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: var(--Transition, 0.3s ease);
  position: relative;
  overflow: hidden;
}
#ProblemsSolve .ProblemsList .ProblemItem .Icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-weight: 700;
  font-size: 14px;
}
#ProblemsSolve .ProblemsList .ProblemItem p {
  margin: 0;
  font-weight: 500;
  color: #1e293b;
}
#ProblemsSolve .ProblemsList .ProblemItem:hover {
  transform: translateX(8px);
  border-color: #60a5fa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
#ProblemsSolve .SolutionCard {
  padding: 42px;
  border-radius: var(--RadiusLg, 14px);
  background: linear-gradient(135deg, #020617, #0f1b3d);
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Glow Effect */
}
#ProblemsSolve .SolutionCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.15), transparent 40%);
  pointer-events: none;
}
#ProblemsSolve .SolutionCard h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}
#ProblemsSolve .SolutionCard p {
  color: #cbd5f5;
  margin-bottom: 22px;
  line-height: 1.6;
}
#ProblemsSolve .SolutionCard ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
#ProblemsSolve .SolutionCard ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #e2e8f0;
}
#ProblemsSolve .SolutionCard ul li span {
  color: #22d3ee;
  font-weight: bold;
}
#ProblemsSolve .SolutionCard .SolutionHighlight {
  padding: 16px 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2563eb, #22d3ee);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.25);
}
#ProblemsSolve {
  /* Responsive */
}
@media (max-width: 992px) {
  #ProblemsSolve .SolutionCard {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  #ProblemsSolve .SolutionCard {
    padding: 28px;
  }
}

#infographic-section {
  padding: 60px 0;
  background: #f3f6fb;
}
#infographic-section .section-title {
  text-align: center;
}
#infographic-section .section-title h2 {
  font-size: 46px;
}
#infographic-section .info-item-1 {
  position: relative;
  left: 21px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(188, 187, 187, 0.8901960784);
  border-radius: 70px;
  padding: 16px 30px 10px;
}
#infographic-section .info-item-1 .icon {
  width: 55px;
  height: 55px;
  background: #e6f0ff;
  color: #2f6df6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
#infographic-section .info-item-1 h4 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}
#infographic-section .info-item-1 p {
  font-size: 14px;
  color: #64748b;
  max-width: 320px;
}
#infographic-section .info-item {
  position: relative;
  left: -45px;
  border: 1px solid rgba(188, 187, 187, 0.8901960784);
  border-radius: 70px;
  padding: 16px 30px 10px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}
#infographic-section .info-item .icon {
  width: 55px;
  height: 55px;
  background: #e6f0ff;
  color: #2f6df6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
#infographic-section .info-item h4 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}
#infographic-section .info-item p {
  font-size: 14px;
  color: #64748b;
  max-width: 320px;
}
#infographic-section .circle-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
  background: conic-gradient(#3b82f6 0deg 60deg, #2563eb 60deg 120deg, #3b82f6 120deg 180deg, #2563eb 180deg 240deg, #3b82f6 240deg 300deg, #2563eb 300deg 360deg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#infographic-section .circle-center {
  width: 278px;
  height: 278px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
#infographic-section .circle-center h5 {
  font-weight: 700;
}
#infographic-section .circle-center span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #94a3b8;
}
#infographic-section .step {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#infographic-section .step1 {
  top: 10px;
  left: 9px;
}
#infographic-section .step2 {
  top: 113px;
  left: -52px;
}
#infographic-section .step3 {
  top: 224px;
  left: -57px;
}
#infographic-section .step4 {
  bottom: 36px;
  left: -12px;
}

#MarketingServices {
  padding: 80px 0;
  background: #fff;
}
#MarketingServices .SectionTitle {
  max-width: 920px;
  margin: 0 auto 60px;
}
#MarketingServices .SectionTitle p {
  color: #64748b;
  line-height: 1.6;
}
#MarketingServices .ServicesWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
#MarketingServices .ServiceBox {
  background-color: #eff6ff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  transition: 0.25s ease;
  width: 32%;
  height: auto;
}
#MarketingServices .ServiceBox:hover {
  transform: translateY(-4px);
  border-color: #60a5fa;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1019607843), 0 8px 10px -6px rgba(0, 0, 0, 0.1019607843);
}
#MarketingServices .ServiceBox .Icon {
  width: 72px;
  height: 72px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
}
#MarketingServices .ServiceBox .Icon img {
  width: 36px;
  height: 36px;
}
#MarketingServices .ServiceBox h4 {
  font-size: var(--CardTitleSize);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}
#MarketingServices .ServiceBox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#MarketingServices .ServiceBox ul li {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
#MarketingServices .ServiceBox ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 18px;
}
#MarketingServices .HeroButton {
  text-align: center;
  margin-top: 50px;
}
#MarketingServices {
  /* RESPONSIVE */
}
@media (max-width: 992px) {
  #MarketingServices .ServicesWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  #MarketingServices .ServicesWrapper {
    grid-template-columns: 1fr;
  }
  #MarketingServices .SectionHeader h2 {
    font-size: 32px;
  }
}

#PerformanceFramework {
  background: linear-gradient(135deg, #020617, #0f1b3d);
}
#PerformanceFramework .FrameworkWrap {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
#PerformanceFramework {
  /* LEFT SIDE */
}
#PerformanceFramework .FrameworkLeft {
  width: 50%;
  position: sticky;
  top: 120px;
}
#PerformanceFramework .FrameworkLeft .Title {
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}
#PerformanceFramework .FrameworkLeft p {
  color: #bfdbfe;
  margin-bottom: 40px;
  text-align: left;
}
#PerformanceFramework {
  /* PROGRESS BAR */
  /* RIGHT SIDE */
}
#PerformanceFramework .FrameworkRight {
  width: 50%;
}
#PerformanceFramework .StepItem {
  margin-bottom: 20px;
  transform: translateY(40px);
  transition: all 0.5s ease;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #ecfeff 100%);
  padding: 1rem 2rem;
  border-radius: var(--RadiusLg);
}
#PerformanceFramework .StepItem.active {
  opacity: 1;
  transform: translateY(0);
}
#PerformanceFramework .StepItem h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
#PerformanceFramework .StepItem p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  max-width: 500px;
}
#PerformanceFramework .StepIndex {
  display: none !important;
  font-size: 64px;
  font-weight: 800;
  color: rgba(37, 100, 235, 0.205);
  display: block;
  margin-bottom: 10px;
}
#PerformanceFramework .PerformanceContent {
  position: relative;
  padding-left: 20px;
}
#PerformanceFramework .PerformanceContent p {
  margin-bottom: 12px;
}
#PerformanceFramework .PerformanceContent .ProgressBar {
  width: 4px;
  height: 100%;
  background: #e2e8f0;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
#PerformanceFramework .PerformanceContent .ProgressBar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #2563eb, #22d3ee);
  border-radius: 10px;
  transition: height 0.3s ease;
}
#PerformanceFramework {
  /* MOBILE */
}
@media (max-width: 768px) {
  #PerformanceFramework .FrameworkWrap {
    flex-direction: column;
  }
  #PerformanceFramework .FrameworkLeft {
    position: relative;
    width: 100%;
    top: 0;
  }
  #PerformanceFramework .FrameworkRight {
    width: 100%;
  }
  #PerformanceFramework .StepItem {
    margin-bottom: 60px;
    opacity: 1;
    transform: none;
  }
  #PerformanceFramework .ProgressBar {
    display: none;
  }
}

#performance-framework {
  padding: 80px 0;
}
#performance-framework .framework-image img {
  width: 100%;
  border-radius: 12px;
}
#performance-framework .section-tag {
  color: #6c63ff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
#performance-framework .section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}
#performance-framework .timeline {
  position: relative;
  padding-left: 70px;
}
#performance-framework .timeline::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e5e5e5;
}
#performance-framework .timeline-item {
  position: relative;
  margin-bottom: 35px;
  display: flex;
  padding-left: 20px;
  align-items: flex-start;
}
#performance-framework .timeline-icon {
  position: absolute;
  left: -50px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #020617, #3f548e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
#performance-framework .timeline-icon img {
  max-width: 30px;
}
#performance-framework .timeline-content span {
  font-size: 12px;
  color: #6c63ff;
  font-weight: 600;
}
#performance-framework .timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0;
}
#performance-framework .timeline-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

#CaseStudy {
  background: #f2f7ff;
  display: none;
}
#CaseStudy .ViewMoreBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  font-size: 17px;
  font-weight: 600;
  color: #1d4ed8;
  background: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
#CaseStudy .ViewMoreBtn i {
  transition: transform 0.3s ease;
  margin-bottom: -2px;
}
#CaseStudy .ViewMoreBtn:hover {
  color: #0a1a3a;
}
#CaseStudy .ViewMoreBtn:hover i {
  transform: translateX(6px);
}
#CaseStudy .SectionTitle .Title {
  max-width: 100%;
}
#CaseStudy {
  /* CARD */
}
#CaseStudy .ServiceFeatureCard {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.25s ease;
}
#CaseStudy .ServiceFeatureCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1019607843), 0 8px 10px -6px rgba(0, 0, 0, 0.1019607843);
}
#CaseStudy .ServiceImage {
  border-radius: 14px;
  overflow: hidden;
}
#CaseStudy .ServiceImage img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  filter: brightness(100%) contrast(100%) saturate(80%) blur(0px) hue-rotate(0deg);
  border-radius: 16px 16px 16px 16px;
}
#CaseStudy .ServiceContent h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1d4ed8;
}
#CaseStudy .ServiceContent p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
#CaseStudy {
  /* RESPONSIVE */
}
@media (max-width: 991px) {
  #CaseStudy .ServicesMainTitle {
    font-size: 32px;
  }
  #CaseStudy .ServiceImage img {
    height: 200px;
  }
}
@media (max-width: 575px) {
  #CaseStudy .ServicesMainTitle {
    font-size: 26px;
  }
}

#IndustriesWeServe {
  padding: 80px 0;
  background: #f8fafc;
  background: linear-gradient(135deg, #020617, #0f1b3d);
}
#IndustriesWeServe .SectionTitle {
  max-width: 700px;
  margin: auto;
}
#IndustriesWeServe .SectionTitle .Title {
  color: #fff;
}
#IndustriesWeServe .SectionTitle p {
  color: #a9b9da;
}
#IndustriesWeServe .IndustryGrid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #ecfeff 100%);
  padding: 20px;
  border-radius: 32px;
  border: 2px solid #fff;
}
#IndustriesWeServe .IndustryItem {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}
#IndustriesWeServe .IndustryItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
#IndustriesWeServe .IndustryItem .Overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#IndustriesWeServe .IndustryItem .Overlay h4 {
  color: #fff;
  font-size: var(--CardTitleSize);
  font-weight: 700;
  margin-bottom: 0;
}
#IndustriesWeServe .IndustryItem .Overlay p {
  color: #cbd5f5;
  font-size: 16px;
  margin-top: 4px;
}
#IndustriesWeServe .IndustryItem:hover img {
  transform: scale(1.08);
}
#IndustriesWeServe {
  /* RESPONSIVE */
}
@media (max-width: 992px) {
  #IndustriesWeServe .IndustryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  #IndustriesWeServe .IndustryGrid {
    grid-template-columns: 1fr;
  }
  #IndustriesWeServe .SectionTitle .Title {
    font-size: 32px;
  }
}

#industries-we-serve {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b0b3c, #140a4d);
  color: #fff;
}
#industries-we-serve .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}
#industries-we-serve .section-subtitle {
  color: #cfcfe6;
  max-width: 600px;
  margin: 10px auto 40px;
}
#industries-we-serve {
  /* OUTER BOX (like screenshot) */
}
#industries-we-serve .industry-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 10px;
}
#industries-we-serve .industry-box {
  text-align: center;
  padding: 25px 15px;
  transition: 0.3s;
}
#industries-we-serve .industry-box .icon {
  margin-bottom: 10px;
}
#industries-we-serve .industry-box .icon img {
  width: 60px;
}
#industries-we-serve .industry-box h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
#industries-we-serve .industry-box:hover {
  transform: translateY(-5px);
}
#industries-we-serve .industry-box:hover .icon {
  color: #ffa94d;
}

#FaqInsane {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
#FaqInsane .FaqWrap {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}
#FaqInsane {
  /* OPTIONAL DIVIDER */
}
#FaqInsane .FaqWrap::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}
#FaqInsane {
  /* LEFT */
}
#FaqInsane .FaqLeft {
  position: sticky;
  top: 100px;
}
#FaqInsane .FaqLeft .Title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
#FaqInsane .FaqLeft .Subtitle {
  color: #64748b;
  margin-bottom: 30px;
}
#FaqInsane .FaqList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#FaqInsane .FaqQuestion {
  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
  position: relative;
}
#FaqInsane .FaqQuestion:hover {
  transform: translateX(5px);
}
#FaqInsane .FaqQuestion.active {
  color: #2563eb;
  border-color: #bfdbfe;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}
#FaqInsane .FaqQuestion::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 3px;
  background: linear-gradient(180deg, #2563eb, #22d3ee);
  opacity: 0;
}
#FaqInsane .FaqQuestion.active::before {
  opacity: 1;
}
#FaqInsane {
  /* RIGHT */
}
#FaqInsane .FaqRight {
  display: flex;
  align-items: flex-start;
  margin: auto 0;
}
#FaqInsane .FaqAnswer {
  display: none;
  font-size: 18px;
  line-height: 1.7;
  color: #0f172a;
  max-width: 500px;
  animation: fadeUp 0.4s ease;
}
#FaqInsane .FaqAnswer img {
  width: 100%;
  border-radius: var(--RadiusLg);
  margin-top: 24px;
}
#FaqInsane .FaqAnswer.active {
  display: block;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#FaqInsane {
  /* MOBILE */
}
@media (max-width: 768px) {
  #FaqInsane .FaqWrap {
    grid-template-columns: 1fr;
  }
  #FaqInsane .FaqLeft {
    position: relative;
  }
  #FaqInsane .FaqWrap::after {
    display: none;
  }
}

#newsletter-section {
  padding: 60px 0;
  background: #f8f9fc;
  /* light beige like screenshot */
}
#newsletter-section .newsletter-box {
  background: radial-gradient(50% 105.96% at 100% 1.28%, rgba(37, 99, 235, 0.5) 3.94%, rgba(2, 6, 23, 0.5) 100%), linear-gradient(94.35deg, rgba(2, 6, 23, 0.2) -0.7%, rgba(37, 99, 235, 0.2) 33.09%, rgba(2, 6, 23, 0.2) 66.44%), linear-gradient(0deg, #020617, #020617);
  /* 🔥 UPDATED */
  border-radius: 24px;
  padding: 60px 50px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#newsletter-section .newsletter-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
#newsletter-section .newsletter-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  max-width: 450px;
}
#newsletter-section .newsletter-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}
#newsletter-section .newsletter-form .input-group {
  display: flex;
  background: #fff;
  /* soft cream input bg */
  border-radius: 50px;
  overflow: hidden;
}
#newsletter-section .newsletter-form .input-group input {
  border: none;
  padding: 14px 18px;
  flex: 1;
  outline: none;
  font-size: 14px;
  background: transparent;
}
#newsletter-section .newsletter-form .input-group button {
  background: var(--PrimaryGradient, linear-gradient(90deg, #2563eb, #22d3ee));
  /* dark brown button like SS */
  color: #fff;
  border: none;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
}
#newsletter-section .newsletter-form .privacy-text {
  font-size: 12px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}
#newsletter-section .newsletter-form .privacy-text a {
  color: #fff;
  text-decoration: underline;
}

#WhyChooseUs {
  background: #f8fafc;
  /* 🔥 MAIN OUTER BOX (MATCH SCREENSHOT) */
}
#WhyChooseUs .CompareWrapper {
  margin-top: 50px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 60px 40px;
  max-width: 1480px;
  margin: auto;
}
#WhyChooseUs .ComparisonGrid {
  margin: 0;
}
#WhyChooseUs {
  /* INNER CARDS */
}
#WhyChooseUs .CompareCard {
  border-radius: 14px;
  padding: 40px 40px;
  height: 100%;
  margin: 0 10px;
}
#WhyChooseUs .CompareCard h3 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
  margin-bottom: 36px;
}
#WhyChooseUs .CompareCard ul {
  list-style: none;
  padding: 0;
}
#WhyChooseUs .CompareCard ul li {
  font-size: 19px;
  margin-bottom: 16px;
  padding-left: 26px;
  position: relative;
  font-weight: 600;
}
#WhyChooseUs {
  /* 🔵 OUR COMPANY */
}
#WhyChooseUs .CompareCard.Primary {
  background: #eef4fb;
  border-left: 4px solid #60a5fa;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #ecfeff 100%);
}
#WhyChooseUs .CompareCard.Primary h3 {
  color: #1d4ed8;
}
#WhyChooseUs .CompareCard.Primary li {
  color: #0f172a;
}
#WhyChooseUs .CompareCard.Primary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}
#WhyChooseUs {
  /* ⚪ TYPICAL */
}
#WhyChooseUs .CompareCard.Secondary {
  background: #f8fafc;
}
#WhyChooseUs .CompareCard.Secondary h3 {
  color: #475569;
}
#WhyChooseUs .CompareCard.Secondary li {
  color: #64748b;
}
#WhyChooseUs .CompareCard.Secondary li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: red;
  font-weight: 600;
}
#WhyChooseUs {
  /* BENEFITS */
}
#WhyChooseUs .Benefits {
  margin-top: 60px;
}
#WhyChooseUs .Benefits .BenefitItem {
  padding: 1.2rem;
  background: #fff;
  border: 2px solid #bfdbfe;
  border-radius: 0.75rem;
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
}
#WhyChooseUs .Benefits .BenefitItem .Icon {
  background: #dbeafe;
  /* blue-100 */
  padding: 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
#WhyChooseUs .Benefits .BenefitItem {
  /* SVG inside */
}
#WhyChooseUs .Benefits .BenefitItem .Icon svg {
  width: 28px;
  height: 28px;
  color: #2563eb;
  /* blue-600 */
}
#WhyChooseUs .Benefits .BenefitItem h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
#WhyChooseUs .Benefits .BenefitItem p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}
#WhyChooseUs {
  /* MOBILE */
}
@media (max-width: 992px) {
  #WhyChooseUs .CompareWrapper {
    padding: 25px;
  }
  #WhyChooseUs .CompareCard {
    margin-bottom: 20px;
  }
}

#faq-section {
  padding: 80px 0;
  background: #f8f9fc;
}
#faq-section .faq-title {
  font-size: 36px;
  font-weight: 700;
}
#faq-section .faq-subtitle {
  color: #666;
}
#faq-section .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}
#faq-section .accordion-button {
  background: #fff;
  font-weight: 600;
  font-size: 16px;
  box-shadow: none;
}
#faq-section {
  /* ACTIVE (OPEN) STYLE */
}
#faq-section .accordion-button:not(.collapsed) {
  background: radial-gradient(50% 105.96% at 100% 1.28%, rgba(37, 99, 235, 0.5) 3.94%, rgba(2, 6, 23, 0.5) 100%), linear-gradient(94.35deg, rgba(2, 6, 23, 0.2) -0.7%, rgba(37, 99, 235, 0.2) 33.09%, rgba(2, 6, 23, 0.2) 66.44%), linear-gradient(0deg, #020617, #020617);
  color: #fff;
  border: 1px solid rgba(207, 207, 230, 0.2196078431);
}
#faq-section .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#faq-section .accordion-body {
  background: radial-gradient(50% 105.96% at 100% 1.28%, rgba(37, 99, 235, 0.5) 3.94%, rgba(2, 6, 23, 0.5) 100%), linear-gradient(94.35deg, rgba(2, 6, 23, 0.2) -0.7%, rgba(37, 99, 235, 0.2) 33.09%, rgba(2, 6, 23, 0.2) 66.44%), linear-gradient(0deg, #020617, #020617);
  color: #fff;
  border-top: none;
}
#faq-section .faq-btn {
  background: #0b0b3c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

#IntegrationSection {
  padding: 80px 0 0;
  display: flex;
  justify-content: center;
}
#IntegrationSection .IntegrationContainer {
  width: 100%;
  text-align: center;
  padding: 60px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2f6bdc 0%, #1f7fa3 50%, #2b56c5 100%);
  color: #fff;
}
#IntegrationSection .IntegrationTitle {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}
#IntegrationSection .IntegrationDescription {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 750px;
  margin: 0 auto 40px;
}
#IntegrationSection .IntegrationBadge {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #1e5bbf, #2b6cd6);
  color: #ffd84d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
#IntegrationSection {
  /* Responsive */
}
@media (max-width: 768px) {
  #IntegrationSection .IntegrationTitle {
    font-size: 32px;
  }
  #IntegrationSection .IntegrationDescription {
    font-size: 16px;
  }
  #IntegrationSection .IntegrationBadge {
    font-size: 22px;
    padding: 12px 24px;
  }
}

#CaseStudySection {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#CaseStudySection .CaseStudyCard {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  background: #fff;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}
#CaseStudySection .CaseStudyCard:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
  /* optional lift */
  border-color: #60a5fa;
}
#CaseStudySection .CaseStudyLeft {
  flex: 1;
}
#CaseStudySection .CaseStudyTag {
  display: inline-block;
  background: #e0e7ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}
#CaseStudySection .CaseStudyTitle {
  font-size: 32px;
  font-weight: 800;
  margin: 16px 0 24px;
  color: #0f172a;
}
#CaseStudySection .CaseStudyBlock {
  margin-bottom: 20px;
}
#CaseStudySection .CaseStudyBlock h4 {
  font-size: 12px;
  color: #2563eb;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
#CaseStudySection .CaseStudyBlock p {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}
#CaseStudySection .CaseStudyRight {
  flex: 0.9;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #ecfeff 100%);
  padding: 30px;
  border-radius: 14px;
  border-left: 4px solid #3b82f6;
}
#CaseStudySection .ResultsTitle {
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
#CaseStudySection .ResultItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
#CaseStudySection .ResultItem span {
  font-size: 12px;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}
#CaseStudySection .ResultItem h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}
#CaseStudySection .ResultBadge {
  background: #dbeafe;
  color: #2563eb !important;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
}
#CaseStudySection {
  /* Responsive */
}
@media (max-width: 768px) {
  #CaseStudySection .CaseStudyCard {
    flex-direction: column;
  }
  #CaseStudySection .CaseStudyRight {
    width: 100%;
  }
}

#CtaSection {
  min-height: 90vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020617 0%, #0a1a3a 50%, #020617 100%);
  /* 🔵 TOP RIGHT GLOW (THIS IS THE "SHINE") */
}
#CtaSection::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -12rem;
  width: 24rem;
  height: 24rem;
  background: #2563eb;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}
#CtaSection {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
#CtaSection .CtaContainer {
  max-width: 900px;
  width: 100%;
}
#CtaSection .Title {
  color: #fff;
  margin-bottom: 20px;
}
#CtaSection .CtaDescription {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}
#CtaSection .CtaButtons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
#CtaSection .CtaButtons .btn {
  min-width: 230px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}
#CtaSection .CtaButtons .PrimaryButton {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  color: #fff;
}
#CtaSection .CtaButtons .PrimaryButton:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.35);
}
#CtaSection .CtaButtons .SecondaryButton {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
#CtaSection .CtaButtons .SecondaryButton:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #3b82f6;
}
#CtaSection .CtaDivider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 50px auto;
  max-width: 600px;
}
#CtaSection {
  /* 🔥 GRADIENT BULLETS */
}
#CtaSection .CtaPoints {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
#CtaSection .CtaPoints span {
  position: relative;
  padding-left: 18px;
}
#CtaSection .CtaPoints span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
}
#CtaSection {
  /* Responsive */
}
@media (max-width: 768px) {
  #CtaSection .CtaButtons {
    flex-direction: column;
    align-items: center;
  }
  #CtaSection .CtaPoints {
    flex-direction: column;
    gap: 12px;
  }
}

.floating-cta-section {
  position: relative;
  padding: 20px 0;
}
.floating-cta-section .floating-cta {
  position: fixed;
  right: 0px;
  bottom: 0px;
  transform: translateY(-30%);
  z-index: 999;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.floating-cta-section .floating-cta .cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.floating-cta-section .floating-cta .cta-btn i {
  font-size: 16px;
}
.floating-cta-section .floating-cta .cta-btn span {
  white-space: nowrap;
}
.floating-cta-section .floating-cta .cta-btn:hover {
  transform: translateX(-5px);
}
.floating-cta-section .floating-cta .call {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  color: #fff;
  display: none;
}
.floating-cta-section .floating-cta .email {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  color: #fff;
  display: none;
}
.floating-cta-section .floating-cta .meeting {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  color: #fff;
}
.floating-cta-section .floating-cta .meeting {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  color: #fff;
  animation: blinkPulse 1.8s infinite;
}
.floating-cta-section .floating-cta {
  /* Smooth blinking + pulse effect */
}
@keyframes blinkPulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.6);
  }
  50% {
    opacity: 0.75;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.6);
  }
}

#BlogSection {
  padding: 60px 20px 0;
}
#BlogSection .BlogSidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#BlogSection .SidebarCard {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  transition: 0.3s;
}
#BlogSection .SidebarCard:hover {
  border-color: #60a5fa;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
}
#BlogSection .SidebarTitle {
  font-size: 36px;
  font-weight: 700;
  color: #0a1a3a;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
#BlogSection .SidebarInput {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  outline: none;
  font-size: 14px;
}
#BlogSection .SidebarInput:focus {
  border-color: #2563eb;
}
#BlogSection .SidebarList {
  list-style: none;
  padding: 0;
  margin: 0;
}
#BlogSection .SidebarList li {
  margin-bottom: 10px;
}
#BlogSection .SidebarList li a {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 20px;
  text-decoration: none;
  color: #0f172a;
  font-size: 19px;
  transition: 0.2s;
  display: block;
  font-weight: 600;
}
#BlogSection .SidebarList li a:hover {
  color: #2563eb;
}
#BlogSection .RecentPost {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0 0 14px;
  border-bottom: 2px solid #e2e8f0;
  align-items: center;
}
#BlogSection .RecentPost img {
  width: 160px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
#BlogSection .RecentPost p {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}
#BlogSection .RecentPost span {
  font-size: 14px;
  color: #64748b;
}
#BlogSection {
  /* Responsive */
}
@media (max-width: 992px) {
  #BlogSection .BlogSidebar {
    position: static;
    margin-top: 30px;
  }
}
#BlogSection .BlogRow {
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  background: #fff;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  align-items: center;
}
#BlogSection .BlogRow:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
  border-color: #60a5fa;
}
#BlogSection .BlogLeft {
  flex: 1;
}
#BlogSection .BlogTag {
  display: inline-block;
  background: #e0e7ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}
#BlogSection .BlogTitle {
  font-size: 30px;
  font-weight: 800;
  margin: 16px 0 20px;
  color: #0f172a;
}
#BlogSection .BlogBlock {
  margin-bottom: 18px;
}
#BlogSection .BlogBlock h4 {
  font-size: 12px;
  color: #2563eb;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
#BlogSection .BlogBlock p {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}
#BlogSection .BlogCTA {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}
#BlogSection .BlogCTA:hover {
  text-decoration: underline;
}
#BlogSection .BlogRight {
  flex: 0.9;
}
#BlogSection .BlogRight img {
  width: 100%;
  height: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}
#BlogSection {
  /* Alternate layout (like zig-zag) */
}
#BlogSection .BlogRow:nth-child(even) {
  flex-direction: row-reverse;
}
#BlogSection {
  /* Responsive */
}
@media (max-width: 768px) {
  #BlogSection .BlogRow {
    flex-direction: column !important;
  }
}

.BlogDetailPage section {
  padding: 0;
}
.BlogDetailPage .BlogDetailRow {
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  background: #fff;
}
.BlogDetailPage .BlogMeta {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}
.BlogDetailPage .BlogImage {
  margin-bottom: 20px;
}
.BlogDetailPage .BlogImage img {
  width: 100%;
  border-radius: 12px;
}
.BlogDetailPage .BlogContent {
  line-height: 1.8;
  font-size: 16px;
}
.BlogDetailPage .BlogContent h2,
.BlogDetailPage .BlogContent h3 {
  margin-top: 25px;
  margin-bottom: 10px;
}
.BlogDetailPage .BlogContent p {
  margin-bottom: 15px;
}

.SearchPage .NoResults {
  padding: 40px;
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
  text-align: center;
}
.SearchPage .NoResults h3 {
  margin-bottom: 10px;
}
.SearchPage .NoResults p {
  color: #777;
}
.SearchPage .BlogTitle a {
  color: inherit;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */