/* ==========================================================================
   Nova Landing Page — WordPress-ready stylesheet
   WP: wp_enqueue_style('nova-landing', get_template_directory_uri() . '/assets/css/style.css')
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');
:root {
  --nova-black: #000;
  --nova-white: #ffffff;
  --nova-lime: #C7FE00;
  --nova-lime-hover: #a8e600;
  --nova-grey-100: #f8f8f8;
  --nova-grey-200: #e8e8e8;
  --nova-grey-400: #999999;
  --nova-grey-600: #767575;
  --nova-grey-800: #333333;
  --nova-font: "Manrope", sans-serif;
  --nova-font-inter: "Inter", sans-serif;
  --nova-container: 1290px;
  --nova-radius: 0;
  --nova-radius-lg: 0;
  --nova-radius-pill: 0;
  --nova-transition: 0.3s ease;
  --nova-header-height: 80px;
}

/* Reset scoped to .nova-landing for WP theme compatibility */
.nova-landing,
.nova-landing *,
.nova-landing *::before,
.nova-landing *::after {
  box-sizing: border-box;
}

.nova-landing {
  margin: 0;
  font-family: var(--nova-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--nova-black);
  background: var(--nova-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.nova-landing img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nova-landing a {
  text-decoration: none;
  color: inherit;
}

.nova-landing ul,
.nova-landing ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nova-landing h1,
.nova-landing h2,
.nova-landing h3,
.nova-landing h4,
.nova-landing p {
  margin: 0;
}

/* Container alias for inner pages */
.container,
.nova-container {
  width: 100%;
  max-width: var(--nova-container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Typography helpers */
.nova-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--nova-lime);
  margin-bottom: 20px;
}

.nova-section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: var(--nova-white);
  margin-bottom: 20px!important;
}

.nova-section-title--light {
  color: var(--nova-white);
}

.nova-section-desc {
  font-size: 20px;
  color: var(--nova-grey-600);
  font-weight: 400;
  max-width: 450px;
  line-height: 30px;
}

.nova-section-desc--light {
  color: #767575;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto!important;
}

.nova-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.nova-section-header span{
  font-family: var(--nova-font-inter);
  color: var(--nova-lime);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  line-height: 16px;
}
/* Buttons */
.nova-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 35px;
  font-family: var(--nova-font);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--nova-transition), color var(--nova-transition), border-color var(--nova-transition), transform 0.2s ease;
  white-space: nowrap;
}

.nova-btn:hover {
  transform: translateY(-1px);
}

.nova-btn--primary {
  background: var(--nova-lime);
  color: #394B00;
  border-color: var(--nova-lime);
}

.nova-btn--primary:hover {
  background: var(--nova-lime-hover);
  border-color: var(--nova-lime-hover);
}

.nova-btn--ghost {
  background: transparent;
  color: var(--nova-white)!important;
  border-color: #767575;
}

.nova-btn--ghost:hover {
  border-color: var(--nova-white);
  background: rgba(255, 255, 255, 0.08);
}

.nova-btn--dark {
  background: var(--nova-black);
  color: var(--nova-white)!important;
  border-color: var(--nova-black);
}

.nova-btn--dark:hover {
  background: var(--nova-grey-800);
}

.nova-btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.nova-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nova-black);
  transition: color var(--nova-transition);
}

.nova-link:hover {
  color: var(--nova-lime-hover);
}

.nova-link--light {
  color: var(--nova-lime);
}

.nova-link--light:hover {
  color: var(--nova-white);
}

/* Tag */
.nova-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--nova-lime);
  color: #415A00;
  font-family: var(--nova-font-inter);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  margin-bottom: 10px;
}

/* Section spacing */
.nova-section {
  padding: 100px 0;
  position: relative;
}

/* Header */
.nova-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nova-header-height);
  transition: background var(--nova-transition), box-shadow var(--nova-transition);
  background: rgba(14, 14, 14, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.nova-header.is-scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nova-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Language switcher (Polylang) */
.nova-lang-switcher ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nova-lang-switcher  a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nova-white);
  opacity: 0.85;
  transition: opacity var(--nova-transition), color var(--nova-transition);
}

.nova-lang-switcher  a:hover,
.nova-lang-switcher .current-lang a {
  opacity: 1;
  color: var(--nova-lime);
}

.nova-lang-switcher  img {
  width: 18px;
  height: auto;
  border-radius: 2px;
}

.nova-nav__list {
  display: flex;
  gap: 36px;
}

.nova-nav__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--nova-white)!important;
  transition: color var(--nova-transition);
  position: relative;
}

.nova-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nova-lime);
  transition: width var(--nova-transition);
}

.nova-nav__link:hover,
.nova-nav__link.is-active {
  color: var(--nova-lime);
}

.nova-nav__link:hover::after,
.nova-nav__link.is-active::after {
  width: 100%;
}

.nova-header__cta {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.nova-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nova-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nova-white);
  transition: transform var(--nova-transition), opacity var(--nova-transition);
}

.nova-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nova-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nova-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mega Menu Base */
.has-mega-menu {
    position: static; /* ضروري لجعل الميجا منيو تأخذ عرض الصفحة بالكامل */
}

.nova-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    z-index: 999;
}
.nova-mega-menu .mega-menu-bg{
  padding: 60px 30px 40px;
  background: #1A1A1A; /* لون داكن كما في الصورة */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0px 25px 50px -12px #00000040;
  border-radius: 0 0 10px 10px;
}
/* إظهار المنيو عند الهوفر */
.has-mega-menu:hover .nova-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Grid Layout */
.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

/* Item Styling */
.mega-item {
    text-decoration: none;
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--nova-transition);
    min-height: 100px;
}

.mega-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mega-num {
    background: var(--nova-lime);
    color: var(--nova-black);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 2px;
}

.mega-title {
    color: var(--nova-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mega-desc {
    color: var(--nova-grey-400);
    font-size: 12px;
    line-height: 1.5;
    margin-left: 36px; /* محاذاة النص تحت العنوان */
}

/* Active / Highlighted State (مثل رقم 01 في الصورة) */
.mega-item.is-active,
.mega-item:hover {
    border-left: 2px solid var(--nova-lime);
    padding-left: 2px;
    border-bottom-color: var(--nova-lime);
}

.mega-item:hover .mega-title {
    color: var(--nova-lime);
}

/* Footer Link */
.mega-menu__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.view-all {
    color: var(--nova-lime)!important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* تحسين للهيدر لتجنب الفجوة عند الهوفر */
.nova-nav__list > li {
    height: var(--nova-header-height);
    display: flex;
    align-items: center;
}

/* Hero */
.wrraper{
  background-position: 95%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.nova-hero {
  background: var(--nova-black);
  padding-top: calc(var(--nova-header-height) + 60px);
  padding-bottom: 100px;
}

.nova-hero__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nova-hero__title {
  font-size: 96px;
  font-weight: 800;
  line-height: 96px;
  letter-spacing: -4.8px;
  color: var(--nova-white);
  margin-bottom: 24px;
}
.nova-hero__sub_title{
  color: var(--nova-lime);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  margin: 15px 0;
}
.nova-hero__desc {
  font-family: var(--nova-font-inter);
  font-size: 18px;
  color: #767575;
  line-height: 30px;
  margin-bottom: 36px!important;
  max-width: 575px;
}

.nova-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nova-hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191, 255, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.nova-hero__visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Platform / Video */
.nova-platform {
  background: var(--nova-black);
}

.nova-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
  background: #111;
  border-radius: var(--nova-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-size: cover;
  background-position: top;
}

/*.nova-video-player::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}*/

.nova-video-player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--nova-lime);
  color: var(--nova-black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--nova-transition), background var(--nova-transition);
  z-index: 1;
  box-shadow: 0px 8.85px 11.06px -6.64px #BBF62B33;
  box-shadow: 0px 22.12px 27.65px -5.53px #BBF62B33;

}

.nova-video-player__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--nova-lime-hover);
}
.video-txt{
  font-weight: 700;
  font-size: 23px;
  line-height: 31px;
  color: var(--nova-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 80px));
}
.nova-platform .nova-hero__actions{
  justify-content: center;
  margin-top: 50px;
}
.nova-platform .nova-hero__actions .sign-up{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9CA3AF;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-family: var(--nova-font-inter);
}

/* Video popup modal */
.nova-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nova-video-modal[hidden] {
  display: none !important;
}

.nova-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.nova-video-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  z-index: 1;
}

.nova-video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--nova-lime);
  color: var(--nova-black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--nova-transition);
}

.nova-video-modal__close:hover {
  opacity: 0.85;
}

.nova-video-modal__content {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--nova-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.nova-video-modal__content iframe,
.nova-video-modal__content video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* About */
.nova-about {
  background: var(--nova-white);
}
.nova-about .nova-section-title{
  color: #111111;
}
.nova-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nova-checklist {
  margin-top: 32px!important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nova-checklist__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--nova-grey-800);
}

.nova-checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--nova-lime);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nova-black);
}

.nova-about__green-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

/* Expertise */
.nova-expertise {
  background: var(--nova-black);
}
.nova-expertise .nova-section-header{
  text-align: left;
}
.nova-expertise .nova-section-desc{
  max-width: 100%;
}
.nova-expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nova-expertise-card {
  position: relative;
  border-radius: var(--nova-radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.nova-expertise-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.nova-expertise-card:hover .nova-expertise-card__bg {
  transform: scale(1.06);
}

.nova-expertise-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.nova-expertise-card__content {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 1;
}

.nova-expertise-card__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--nova-white);
}

/* Why Nova */
.nova-why {
  background: var(--nova-white);
}
.nova-why .nova-why__intro span{
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.nova-why .nova-why__intro .nova-section-title{
  color: var(--nova-black);
  font-size: 56px;
  font-weight: 800;
  line-height: 60px;

}
.nova-why__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.nova-why__intro .nova-btn {
  margin-top: 28px;
}

.nova-why__item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--nova-grey-200);
}

.nova-why__item:first-child {
  padding-top: 0;
}

.nova-why__num {
  font-size: 48px;
  font-weight: 800;
  color: var(--nova-grey-200);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.nova-why__text h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--nova-black);
}

.nova-why__text p {
  font-size: 16;
  font-weight: 400;
  color: var(--nova-grey-600);
  line-height: 24px;
}

/* Strategic Impact */
.nova-impact {
  background: var(--nova-white);
  padding-top: 0;
}
.nova-impact .nova-impact__content .nova-section-title{
  color: var(--nova-black);
  font-size: 56px;
  font-weight: 800;
  line-height: 60px;
}
.nova-impact .nova-impact__content .nova-impact_title p{
    font-size: 12px;
    font-weight: 800;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.nova-impact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nova-impact__list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nova-impact__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.nova-impact__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--nova-lime);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--nova-black);
}

.nova-impact__item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.nova-impact__item p {
  font-size: 0.875rem;
  color: var(--nova-grey-600);
  line-height: 1.6;
}

.nova-impact__photo {
  width: 100%;
  border-radius: var(--nova-radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Reports Bento Grid */
.nova-reports {
  background: var(--nova-grey-100);
}

.nova-reports__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.nova-reports .nova-reports__header p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #767575;
}
.nova-reports .nova-reports__header h2{
    color: var(--nova-black);
    font-size: 56px;
    font-weight: 800;
    line-height: 60px;
}
.nova-reports__bento,
.nova-report-card:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.nova-report-card {
  position: relative;
  border-radius: var(--nova-radius-lg);
  overflow: hidden;
  min-height: 260px;
}
.nova-report-card:last-child{
    
}
.nova-report-card--large {
  grid-row: span 2;
  min-height: 540px;
}

.nova-report-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}


.nova-report-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.nova-report-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 1;
}
.nova-report-card__body span{
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--nova-lime);
    text-transform: uppercase;
}
.nova-report-card__body h3,
.nova-report-card__body h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--nova-white);
  line-height: 40px;
  margin: 20px 0;
}
.nova-report-card__body h4{
    font-size: 24px;
    line-height: 32px;
}
.nova-report-card-img .nova-report-card__body p{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--nova-font-inter);
    color: #D1D5DB;
    margin-bottom: 30px;
}
.nova-report-card-img .nova-report-card__body a{
    color: var(--nova-white)!important;
}
.nova-report-card-img .nova-report-card__body a.primary-color{
    color: var(--nova-lime)!important;
}
.nova-report-card--text {
  background: var(--nova-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--nova-grey-200);
}

.nova-report-card--text p {
  font-size: 0.9375rem;
  color: var(--nova-grey-600);
  line-height: 1.7;
}

.nova-report-card--cta {
  background: var(--nova-lime);
  padding: 28px;
  display: flex!important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.nova-report-card--cta p {
  font-size: 24px;
  font-weight: 800;
  color: var(--nova-black);
  line-height: 32px;
}

/* CTA */
.nova-cta {
  background: var(--nova-black);
  padding: 80px 0;
}

.nova-cta__inner {
  text-align: center;
}

.nova-cta__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--nova-white);
  margin-bottom: 40px!important;
}

/* Footer */
.nova-footer {
  background: var(--nova-black);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.nova-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.nova-footer__social {
  gap: 16px;
  color: var(--nova-white)!important;
}
.nova-footer__social .footer-logo{
    margin-bottom: 30px;
}
.nova-footer__social .footer-logo h3{
    color: var(--nova-white);
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    font-family: var(--nova-font-inter);
    margin-bottom: 30px!important;
}
.nova-footer__social .footer-logo p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: var(--nova-font-inter);
    color: #767575;
}
.nova-footer__social .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nova-footer__social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--nova-white);
  text-decoration: none;
  transition: color var(--nova-transition), border-color var(--nova-transition), background-color var(--nova-transition);
}
.nova-footer__social .social-icon:hover {
  color: var(--nova-black);
  background: var(--nova-lime);
  border-color: var(--nova-lime);
}
.nova-footer__social .social-icon svg {
  width: 20px;
  height: 20px;
}
.nova-footer__social-link {
  color: var(--nova-white)!important;
  transition: color var(--nova-transition);
  margin-right: 10px;
}

.nova-footer__social-link:hover {
  color: var(--nova-lime);
}

.nova-footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--nova-white);
  margin-bottom: 20px!important;
  line-height: 20px;
}

.nova-footer__links li {
  margin-bottom: 12px;
}

.nova-footer__links a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--nova-grey-600);
    transition: color var(--nova-transition);
}

.nova-footer__links a:hover {
  color: var(--nova-lime);
}
.contact-us p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--nova-grey-600);
    margin-bottom: 20px;
}
.nova-footer__watermark {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 385px;
  font-weight: 900;
  color: rgba(199, 254, 0, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.nova-footer__bottom {
  position: relative;
  z-index: 1;
  padding: 60px 0 75px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nova-footer__bottom p {
  font-size: 0.8125rem;
  color: var(--nova-grey-400);
}
.nova-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.nova-footer__legal a {
  font-size: 0.8125rem;
  color: var(--nova-grey-400);
  text-decoration: none;
  transition: color var(--nova-transition);
}
.nova-footer__legal a:not(:last-child)::after {
    content: "|";
    margin-inline-start: 10px;
}
.nova-footer__legal a:hover {
  color: var(--nova-lime);
}
/* Scroll Animations */
.nova-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.nova-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nova-animate--delay {
  transition-delay: 0.15s;
}

.nova-animate--delay-2 {
  transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  .nova-hero__grid,
  .nova-about__grid,
  .nova-why__grid,
  .nova-impact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nova-expertise__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nova-reports__bento {
    grid-template-columns: 1fr 1fr;
  }

  .nova-report-card--large {
    grid-row: span 1;
    min-height: 320px;
  }

  .nova-hero__visual {
    height: 360px;
  }

  .nova-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nova-section {
    padding: 64px 0;
  }

  .nova-expertise__grid {
    grid-template-columns: 1fr;
  }

  .nova-expertise-card {
    aspect-ratio: 16 / 10;
  }

  .nova-reports__bento {
    grid-template-columns: 1fr;
  }

  .nova-report-card--large {
    min-height: 280px;
  }

  .nova-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nova-phone-mockup--back {
    right: 20px;
  }

  .nova-phone-mockup--front {
    right: 80px;
  }
}

@media (max-width: 480px) {
  .nova-hero__actions {
    flex-direction: column;
  }

  .nova-hero__actions .nova-btn {
    width: 100%;
  }

  .nova-hero__visual {
    height: 300px;
  }

  .nova-phone-mockup {
    width: 150px;
    height: 300px;
  }
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 0 60px;
    background: var(--nova-black);
}

.hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--nova-white);
    text-transform: uppercase;
}

.hero p {
    color: var(--nova-white);
    font-size: 20px;
    line-height: 33px;
    text-transform: uppercase;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 100px 0;
}

.report-card {
    background-color: var(--nova-black);
    overflow: hidden;
    transition: transform 0.3s;
}

.report-card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.7);
    transition: 0.3s;
}

.report-card:hover .card-img {
    filter: grayscale(0%) brightness(1);
}

.card-content {
    padding: 30px;
}

.card-num {
    color: var(--nova-lime);
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}
.blog .card-num{
  background: var(--nova-lime);
  color: var(--nova-black);
  display: inline-block;
  padding: 5px;
}
.card-content h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--nova-white);
}

.card-content p {
    color: var(--nova-grey-600);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--nova-font-inter);
    line-height: 23px;
    margin-bottom: 20px;
    min-height: 40px;
}

.card-content .learn-more {
    color: var(--nova-lime)!important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}
.card-content .learn-more svg{
  margin-left: 10px;
}
.blog .card-content .learn-more{
  color: var(--nova-white)!important;
}
/* Bottom CTA */
.bottom-cta {
    background: var(--nova-black);
    text-align: center;
    padding: 100px 0;
}

.bottom-cta h2 {
    color: var(--nova-white);
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.cta-btn-filled {
    background-color: var(--nova-lime);
    color: var(--nova-black);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    text-decoration: none;
}


/* Hero Section */
.detail-hero {
    color: white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 993px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.top-tag,
.bottom-tag {
  color: var(--nova-lime);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
.bottom-tag{
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
}
.detail-hero h1 {
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -3px;
  margin: 20px 0;
  font-weight: 800;
  color: var(--nova-white);
}
.hero-desc {
  font-family: var(--nova-font-inter);
  color: var(--nova-white);
  max-width: 700px;
  margin: 40px auto !important;
  font-size: 18px;
  line-height: 30px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* الأزرار */
.cta-btn-filled {
  background: var(--nova-lime);
  color: rgba(57, 75, 0, 1);
  font-size: 18;
  font-weight: 800;
  padding: 14px 28px;
  line-height: 28px;
  text-decoration: none;
}
.cta-btn-outline-white {
  border: 1px solid rgba(118, 117, 117, 1);
  color: var(--nova-white);
  font-size: 18;
  font-weight: 800;
  padding: 14px 28px;
  line-height: 28px;
}
.cta-btn-outline-white svg{
  margin-right: 5px;
}
/* أقسام القياس والمميزات */
.white-section {
  padding: 100px 0;
  background: #fff;
}
.measure-section h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 400;
  color: var(--nova-black);
  margin-bottom: 25px;
  letter-spacing: -1px;
}
.measure-section p{
  font-family: var(--nova-font-inter);
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.check-list {
  list-style: none;
  padding: 0;
  margin-top: 30px!important;
}
.check-list li {
  margin-bottom: 20px;
  color: var(--nova-black);
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.check-list li::before {
  content: "✓";
  color: var(--nova-lime);
  background: var(--nova-black);
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 12px;
}

/* How it works */
.gray-section {
  padding: 100px 0 0;
  background: var(--bg-gray);
}
.gray-section h2 {
  margin-bottom: 50px!important;
  font-size: 49px;
  line-height: 49px;
  color: var(--nova-black);
  text-transform: uppercase;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: rgba(243, 244, 245, 1);
  padding: 40px;
  position: relative;
  border-top: 4px solid var(--nova-black);
  transition: 0.3s;
}
.step-card:hover {
  border-top-color: var(--nova-lime);
  transform: translateY(-5px);
}
.step-card .step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  line-height: 60px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
}
.step-card .mini-tag {
  font-family: var(--nova-font-inter);
  background: var(--nova-lime);
  color: var(--nova-black);
  font-size: 10px;
  line-height: 15px;
  font-weight: 900;
  padding: 2px 8px;
}
.step-card h3{
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: var(--nova-black);
  margin: 15px 0!important;
}
.step-card p{
  font-family: var(--nova-font-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--nova-grey-600);
}
/* Black Bar */
.black-bar {
  color: white;
  padding:0 0 60px;
}
.bar-content {
  background: var(--nova-black);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
.bar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.measure-img img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-actions {
  flex-wrap: wrap;
}
.mini-tag-neon {
  color: var(--nova-lime);
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 400;
  display: block;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bar-content h3{
  font-size: 36px;
  line-height: 40px;
  font-weight: 400;
  color: var(--nova-white);
  margin: 20px 0;
}
.bar-content p{
  color: #9CA3AF;
  font-weight: 400;
  font-family: var(--nova-font-inter);
  font-size: 18px;
  line-height: 30px;
}
.tag-pill {
  border: 1px solid #FFFFFF33;
  padding: 5px 15px;
  font-size: 11px;
  margin-right: 10px;
  color: var(--nova-white);
}
.key-advantages .advantages-title{
  text-align: center;
  margin-bottom: 30px;
}
.key-advantages .advantages-title h2{
  font-size: 56px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  color: var(--nova-black);
}
.key-advantages .advantages-title p{
    font-family: var(--nova-font-inter);
    color: var(--nova-grey-600);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
/* Advantage Grid */
.advantage-grid {
  display: grid;
  gap: 15px;
  margin-top: 15px;
}
.white-section .advantage-grid:nth-child(odd) {
  grid-template-columns: 1fr 2fr;
}
.white-section .advantage-grid:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}
.adv-card {
  position: relative;
  background: #fafafa;
  padding: 50px;
}
.adv-card:nth-child(even){
  background: #F3F4F5;
}
.white-section .advantage-grid:nth-child(even) .adv-card:nth-child(even){
  background: #fafafa;
}
.adv-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--nova-lime);
}
.fixed-adv-icon{
  position: absolute;
  right: 50px;
  bottom: 45px;
}
/* Dark Section: Decisions */
.dark-section {
  background: var(--nova-black);
  color: white;
  padding: 100px 0;
}
.dark-section .decision-title h2{
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 50px;
}
.dark-section .list-item {
  border: 1px solid #1F2020;
  border-left: 4px solid var(--nova-lime);
  background: #1F2020;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.dark-section .list-item span{
  font-family: var(--nova-font-inter);
  font-weight: 400;
  color: var(--nova-lime);
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}
.dark-section .list-item h4{
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--nova-white);
  margin:9px 0!important;
}
.dark-section .list-item p{
  font-family: var(--nova-font-inter);
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: var(--nova-grey-600);
}
.dark-section .report-preview{
  max-width: 100%;
}
.dark-section .report-preview img {
  width: 100%;
}
.text-center{
  text-align: center;
}
/* Responsive */
@media (max-width: 768px) {
  .grid-2,
  .step-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .detail-hero h1 {
    font-size: 2.2rem;
  }
}


.integrity-section {
    padding: 60px 20px;
    width: 100%;
    text-align: center;
    background: #0E0E0E;
}
/* العنوان الرئيسي */
.integrity-section .main-title {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--nova-white);
    line-height: 36px;
    text-transform: uppercase;
}

/* حاوية البطاقات */
.integrity-section .cards-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; /* لجعلها متجاوبة على الموبايل */
}

/* تصميم البطاقة */
.integrity-section .card {
    background-color: #191A1A;
    border: 1px solid var(--nova-lime); /* الحدود الفسفورية */
    padding: 40px 30px;
    width: 450px;
    text-align: left; /* المحتوى بالإنجليزية كما في الصورة */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integrity-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 255, 0, 0.1);
}

/* عنوان البطاقة */
.integrity-section .card-title {
    font-size: 20px;
    color: var(--nova-white);
    line-height: 28px;
    font-weight: var(--nova-font-inter);
    margin-bottom: 20px;
    font-weight: 400;
}

/* نص البطاقة */
.integrity-section .card-text {
  font-family: var(--nova-font-inter);
    color: var(--nova-grey-600);
    font-size: 14px;
    line-height: 23px;
    font-size: 0.95rem;
}

/* تأثيرات الظهور (Animations) */
.integrity-section .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.integrity-section .fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .integrity-section .card {
        width: 100%;
    }
    .integrity-section .main-title {
        font-size: 1.4rem;
    }
}

/* القسم الرئيسي */
.solution .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* التدرج اللوني في الخلفية */
    background: radial-gradient(circle at 80% 20%, rgba(204, 255, 0, 0.08) 0%, rgba(0, 0, 0, 1) 60%),
                linear-gradient(135deg, var(--nova-black) 0%, #0a0a0a 100%);
    padding: 60px 0;
}
.solution .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}
.solution .hero .nova-container,
.solution .hero .hero-inner {
    position: relative;
    z-index: 2;
}
.solution .hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    width: 100%;
}
.solution .hero-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.solution .standard-badge {
    display: inline-block;
    border: 1px solid rgba(204, 255, 0, 0.5);
    color: var(--nova-lime);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.solution .hero-content h1 {
    font-size: 96px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.solution .lime-text {
    color: var(--nova-lime);
}

.solution .description {
    font-size: 20px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 550px;
    text-transform: capitalize;
}

/* الأزرار */
.solution .hero-btns {
    display: flex;
    gap: 15px;
}

.solution .btn {
    padding: 18px 35px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.solution .btn-filled {
    background-color: var(--nova-lime);
    color: var(--nova-black);
}

.solution .btn-outline {
    border: 1px solid #444;
    color: var(--nova-white);
}

.solution .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 255, 0, 0.2);
}

/* إحصائيات الجهة اليمنى */
.solution .hero-stats {
    flex-shrink: 0;
    width: min(100%, 425px);
    border-left: 1px solid #333;
    padding-left: 30px;
    margin-bottom: 10px;
}

.solution .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.solution .stat-row .label {
    color: var(--nova-grey-600);
    font-size: 14px;
    font-family: monospace; /* لجعلها تشبه كود البرمجة كما في الصورة */
}

.solution .stat-row .value {
    color: var(--nova-lime);
    font-size: 22px;
    font-weight: 700;
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 992px) {
    .solution .hero-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .solution .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 3.25rem);
    }
    .solution .hero-stats {
        width: 100%;
        border-left: none;
        border-top: 1px solid #333;
        padding-left: 0;
        padding-top: 30px;
        margin-bottom: 0;
    }
}

.solution .roles-section{
  padding: 100px 0;
  background: #fafafa;
}
.solution .roles-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}
/* Sidebar Styling */
.solution .sub-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark);
  display: block;
  margin-bottom: 20px;
}
.solution .section-title {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 25px;
}
.solution .section-desc {
  color: var(--nova-grey-600);
  line-height: 1.6;
  margin-bottom: 40px;
}

.solution .roles-menu {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #eee;
  border: 1px solid #eee;
}
.solution .role-item {
  background: #fff;
  padding: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
}
.solution .role-item.active {
  background: var(--nova-lime);
}
.solution .role-item:hover:not(.active) {
  background: #f5f5f5;
}
/* إخفاء كل البطاقات افتراضياً */
.solution .role-panel {
    display: none;
    background: #fff;
    border: 1px solid #eee;
    padding: 60px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

/* إظهار البطاقة النشطة فقط */
.solution .role-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* تعديل بسيط لضمان تنسيق الـ Wrapper */
.solution .content-wrapper {
    flex: 1;
}

@media (max-width: 992px) {
    .solution .role-panel { padding: 30px; }
}
/* Content Card Styling */
.solution .content-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.solution .user-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.solution .user-info p {
  font-size: 11px;
  color: var(--nova-grey-600);
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.solution .quote {
  font-size: 28px;
  line-height: 1.4;
  color: var(--nova-grey-600);
  border-left: 4px solid var(--nova-lime);
  padding-left: 30px;
  margin-bottom: 50px;
  margin-left: 0;
}

.solution .challenge-box h4 {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.solution .challenge-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--nova-grey-600);
  margin-bottom: 30px;
}

.solution .highlight-bar {
  background: var(--nova-lime);
  padding: 15px 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}

.solution .details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.solution .detail-col {
  background: #f5f5f5;
  padding: 30px;
}
.solution .detail-col h5 {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  margin-top: 0;
}
.solution .detail-col p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--nova-grey-600);
}

/* Responsive */
@media (max-width: 992px) {
  .solution .roles-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solution .content-card {
    padding: 30px;
  }
  .solution .details-grid {
    grid-template-columns: 1fr;
  }
}


.solution .process-section {
    padding: 100px 20px;
    overflow: hidden;
}

.solution .main-heading {
  text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* حاوية البطاقات */
.solution .steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

/* تصميم البطاقة */
.solution .steps-card {
    background-color: #F5F5F5;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* البطاقة الوسطى المنخفضة */
.solution .steps-card.offset-down {
    margin-top: 50px;
}

/* رقم الخطوة الخلفي */
.solution .steps-card .step-number {
    font-size: 60px;
    font-weight: 700;
    color: #ddd;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.solution .steps-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.solution .steps-card p {
    font-size: 14px;
    color: var(--nova-grey-600);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 70px; /* لتوحيد الارتفاع */
}

/* الملصق الفسفوري */
.solution .badge {
    background-color: var(--nova-lime);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 10px;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* الخط المنقط الواصل */
.solution .steps-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px; /* المسافة بين البطاقات */
    width: 30px;
    border-top: 2px dashed #ddd;
    z-index: 0;
}

/* تعديل وضع الخط للبطاقة المزيحة لأسفل */
.solution .steps-card.offset-down::after {
    top: 30%;
}

/* التجاوب مع الجوال */
@media (max-width: 992px) {
    .solution .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .solution .offset-down {
        margin-top: 0;
    }

    .solution .steps-card {
        width: 100%;
        max-width: 400px;
    }

    .solution .steps-card:not(:last-child)::after {
        display: none; /* إخفاء الخطوط في وضع الجوال */
    }
}

.competency-section {
  padding: 100px 0;
  background: var(--nova-black);
}
.competency-section .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/* Text Content Styling */
.competency-section .text-content{
  color: var(--nova-white);
}
.competency-section .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}
.competency-section .text-content p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 50px;
}

.competency-section .features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.competency-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.competency-section .feature-item .icon {
  fill: var(--nova-lime);
}
.competency-section .feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.competency-section .feature-item p {
  font-size: 13px;
  color: var(--nova-grey-600);
  margin-bottom: 0;
  max-width: 100%;
}

/* Mockup Styling */
.competency-section .mockup-container {
  width: 550px;
}
.competency-section .mockup-screen {
  background: var(--nova-black);
  border: 5px solid #48484833;
  color: var(--nova-white);
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.competency-section .screen-header {
  position: relative;
  background: #1F2020;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid #4848481A;
}
.competency-section .dots {
  display: flex;
  gap: 6px;
  position: absolute;
  left: 30px;
  top: 15px;
}
.competency-section .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.competency-section .dot.red {
  background: #ff605c;
}
.competency-section .dot.yellow {
  background: #ffbd2e;
}
.competency-section .dot.green {
  background: #27c93f;
}
.competency-section .header-title {
  font-size: 12px;
  color: var(--nova-grey-600);
}

.competency-section .screen-body {
  padding: 30px;
}
.competency-section .section-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 25px;
  color: var(--nova-grey-600);
}
.competency-section .section-label {
  color: var(--nova-white);
  font-weight: 700;
}
.competency-section .timer {
  color: var(--nova-lime);
  font-weight: 600;
}

.competency-section .question {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
}

.competency-section .options-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.competency-section .option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--nova-black);
  border: 1px solid #48484833;
  cursor: pointer;
  transition: 0.3s;
}
.competency-section .option:hover {
  background: var(--nova-black);
}
.competency-section .option.selected {
  border-color: var(--nova-lime);
  background: rgba(204, 255, 0, 0.15);
}
.competency-section .custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid var(--nova-grey-600);
  cursor: pointer;
  accent-color: var(--nova-lime); /* لتغيير لون المربع المحدد */
}
.competency-section .option label {
  cursor: pointer;
  flex-grow: 1;
}

.competency-section .screen-footer {
  padding: 15px;
  text-align: right;
}
.competency-section .btn-next {
  font-family: var(--nova-font-inter);
  background: #1F2020;
  border: 1px solid #4848481A;
  color: var(--nova-white);
  font-weight: 700;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.competency-section .btn-next:hover {
  background: #b8e600;
}

/* Responsive */
@media (max-width: 992px) {
  .competency-section .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .competency-section .text-content {
    margin-bottom: 50px;
  }
  .competency-section .mockup-container {
    width: 100%;
    max-width: 500px;
  }
  .competency-section .section-title {
    font-size: 36px;
  }
  .competency-section .text-content p {
    margin-bottom: 30px;
  }
  .competency-section .features {
    align-items: center;
  }
}


.roles-grid-section {
    padding: 100px 20px;
    background: #fafafa;
}

.roles-grid-section .main-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* التنسيق الأيسر */
.roles-grid-section .text-side {
    flex: 1;
    max-width: 450px;
}

.roles-grid-section .text-side .title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.roles-grid-section .text-side .description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--nova-grey-600);
    margin-bottom: 50px;
}

/* خطوات الترقيم (01, 02, 03) */
.roles-grid-section .feature-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roles-grid-section .f-step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.roles-grid-section .f-num {
    background: var(--nova-black);
    color: var(--nova-lime);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.roles-grid-section .f-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* التنسيق الأيمن (الشبكة) */
.roles-grid-section .cards-side {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.roles-grid-section .role-card {
    background: var(--nova-white);
    padding: 40px 30px;
    border: 1px solid #f0f0f0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.roles-grid-section .role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.roles-grid-section .role-card .icon {
    font-size: 32px;
    margin-bottom: 25px;
}

.roles-grid-section .role-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.roles-grid-section .role-card p {
    font-size: 13px;
    color: var(--nova-grey-600);
    line-height: 1.5;
}

/* البطاقة السوداء المميزة */
.roles-grid-section .black-card {
    background: var(--nova-black);
    color: #fff;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
}

.roles-grid-section .black-card .plus-text {
    color: var(--nova-lime);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.roles-grid-section .black-card p {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 11px;
}

/* متجاوب مع الموبايل */
@media (max-width: 1100px) {
    .roles-grid-section .main-wrapper {
        flex-direction: column;
    }
    .roles-grid-section .cards-side {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

@media (max-width: 600px) {
    .roles-grid-section .cards-side {
        grid-template-columns: 1fr;
    }
    .roles-grid-section .text-side .title {
        font-size: 36px;
    }
}


.development-section {
  padding: 100px 0;
  background-color: #FAFAFA;
  font-family: var(--nova-font);
}


.development-section .dev-flex {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* بطاقة التقرير (اليسار) */
.development-section .report-card-wrapper {
  flex: 1;
  min-width: min(100%, 450px);
}

.development-section .report-card {
  border: 4px solid var(--nova-black);
  padding: 50px;
  background: var(--nova-white);
  position: relative;
  box-shadow: 20px 20px 0px var(--nova-grey-100); /* ظل صلب لجمالية التصميم */
}

.development-section .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.development-section .user-info h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.development-section .user-info p {
  font-size: 12px;
  font-weight: 500;
  color: var(--nova-grey-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.development-section .overall-score {
  text-align: right;
}

.development-section .score-num {
  display: block;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.development-section .score-label {
  font-size: 9px;
  color: var(--nova-grey-400);
  font-weight: 700;
}

/* المهارات */
.development-section .skills-container {
  margin-bottom: 40px;
}

.development-section .skill-item {
  margin-bottom: 25px;
}

.development-section .skill-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--nova-black);
}

.development-section .progress-bar {
  height: 8px;
  background: var(--nova-grey-100);
}

.development-section .progress-fill {
  height: 100%;
  background: var(--nova-lime);
}

/* صندوق التوصية */
.development-section .recommendation-box {
  background: var(--nova-grey-100);
  padding: 30px;
}

.development-section .rec-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #1a5a3a; /* لون أخضر داكن للنص الصغير */
  margin-bottom: 10px;
}

.development-section .recommendation-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--nova-grey-800);
}

/* جهة المحتوى (اليمين) */
.development-section .content-side {
  flex: 1;
  min-width: min(100%, 400px);
}

.development-section .sub-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.development-section .main-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.development-section .description {
  font-size: 18px;
  color: var(--nova-grey-600);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* المميزات */
.development-section .features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.development-section .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.development-section .feature-icon {
  background: var(--nova-lime);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.development-section .feature-text h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.development-section .feature-text p {
  font-size: 13px;
  color: var(--nova-grey-600);
}

/* الجوال */
@media (max-width: 992px) {
  .development-section .dev-flex { gap: 40px; }
  .development-section .report-card { padding: 30px; }
  .development-section .main-title { font-size: 36px; }
}

.features-section {
  background-color: var(--nova-black);
  padding: 120px 0;
  color: var(--nova-white);
  font-family: var(--nova-font);
}


.features-section .section-title {
  text-align: center;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 100px;
  letter-spacing: -1px;
}

.features-section .nova-lime-text {
  color: var(--nova-lime);
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-section .feature-card {
  background-color: #0E0E0E;
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease;
  border: 1px solid transparent;
}

/* تأثير عند تمرير الماوس */
.features-section .feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(199, 254, 0, 0.2);
}

.features-section .feature-icon {
  color: var(--nova-lime);
  width: 42px;
  height: 42px;
  margin-bottom: 35px;
}

.features-section .feature-icon svg {
  width: 100%;
  height: 100%;
}

.features-section .feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.features-section .feature-card p {
  color: var(--nova-grey-400);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive - التوافق مع الشاشات */
@media (max-width: 1100px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-section .section-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
  .features-section .nova-container {
    padding: 0 20px;
  }
  .features-section .feature-card {
    padding: 40px 30px;
  }
}

.sector-coverage-section {
  background-color: var(--nova-lime);
  padding: 120px 0;
  font-family: var(--nova-font);
  color: var(--nova-black);
}

/* التنسيق العلوي */
.sector-coverage-section .sector-header {
  margin-bottom: 40px;
}

.sector-coverage-section .sector-main-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.sector-coverage-section .sector-subtitle {
  font-size: 20px;
  max-width: 600px;
  line-height: 1.4;
  font-weight: 400;
}

/* تصميم الشبكة (Grid) */
.sector-coverage-section .sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* ٥ أعمدة */
  background-color: rgba(255, 255, 255, 0.15); /* لون الخطوط الفاصلة */
  gap: 1px; /* الفراغ الذي يظهر كخط فاصل */
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sector-coverage-section .sector-card {
  background-color: var(--nova-black);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* تأثير عند تمرير الماوس */
.sector-coverage-section .sector-card:hover {
  background-color: #0a0a0a;
}

.sector-coverage-section .role-count {
  color: var(--nova-lime);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.sector-coverage-section .sector-name {
  color: var(--nova-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sector-coverage-section .sub-roles {
  color: var(--nova-grey-400);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* التجاوب مع الجوال والشاشات المتوسطة */
@media (max-width: 1200px) {
  .sector-coverage-section .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .sector-coverage-section .sector-main-title { font-size: 48px; }
  .sector-coverage-section .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sector-coverage-section .sectors-grid {
    grid-template-columns: 1fr;
  }
  .sector-coverage-section .sector-main-title { font-size: 36px; }
}

.quality-section {
  background-color: var(--nova-black);
  padding: 100px 0;
  color: var(--nova-white);
  font-family: var(--nova-font);
}

.quality-section .quality-main-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.quality-section .quality-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* توزيع المساحة بين اليسار واليمين */
  gap: 10px;
  align-items: start;
}

/* بطاقات الحالة (اليسار) */
.quality-section .status-cards-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quality-section .status-card {
  background-color: #191A1A;
  padding: 28px;
  border-left: 3px solid var(--nova-lime); /* الخط الفسفوري الجانبي */
  transition: transform 0.3s ease;
}

.quality-section .status-card:hover {
  transform: translateX(5px);
}

.quality-section .status-label {
  display: block;
  color: var(--nova-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.quality-section .status-desc {
  font-size: 15px;
  color: var(--nova-grey-400);
  line-height: 1.5;
}

/* صندوق القائمة المرجعية (اليمين) */
.quality-section .checklist-box {
  background-color: #191A1A;
  padding: 40px;
}

.quality-section .checklist-title {
  color: var(--nova-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.quality-section .check-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.quality-section .check-item:last-child {
  margin-bottom: 0;
}

.quality-section .check-icon {
  color: var(--nova-lime);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.quality-section .check-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quality-section .check-text p {
  font-size: 14px;
  color: var(--nova-grey-400);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .quality-section .quality-grid {
    grid-template-columns: 1fr;
  }
  .quality-section .quality-main-title {
    font-size: 36px;
  }
  .quality-section .checklist-box {
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .quality-section .status-card {
    padding: 25px;
  }
}

/* Contact Page */
.contact-section {
  padding: 80px 0 120px;
  background: var(--nova-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 640px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-info-side {
  background: var(--nova-black);
  color: var(--nova-white);
  padding: 60px 50px;
  display: flex;
  align-items: flex-start;
}

.contact-info-side .info-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--nova-white);
}

.contact-info-side .address-box {
  margin-bottom: 40px;
}

.contact-info-side .company-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--nova-white);
}

.contact-info-side .address-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--nova-grey-600);
  font-family: var(--nova-font-inter);
}

.contact-info-side .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-info-side .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--nova-white);
  transition: color var(--nova-transition), border-color var(--nova-transition), background-color var(--nova-transition);
}

.contact-info-side .social-icon:hover {
  color: var(--nova-black);
  background: var(--nova-lime);
  border-color: var(--nova-lime);
}

.contact-info-side .social-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form-side {
  background: var(--nova-white);
  padding: 60px 50px;
}

.contact-form-side .form-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--nova-black);
}

.contact-form-side .form-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--nova-grey-600);
  font-family: var(--nova-font-inter);
  margin-bottom: 32px;
}

.nova-form--cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nova-form--cf7 .wpcf7-form p {
  margin: 0;
}

.nova-form--cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-bottom: 15px!important;
}

.nova-form--cf7 input[type="text"],
.nova-form--cf7 input[type="email"],
.nova-form--cf7 input[type="tel"],
.nova-form--cf7 input[type="url"],
.nova-form--cf7 textarea,
.nova-form--cf7 select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--nova-black);
  background: var(--nova-white);
  font-family: var(--nova-font-inter);
}

.nova-form--cf7 input::placeholder,
.nova-form--cf7 textarea::placeholder {
  color: #767575;
}

.nova-form--cf7 input:focus,
.nova-form--cf7 textarea:focus,
.nova-form--cf7 select:focus {
  outline: none;
  border-color: var(--nova-black);
}

.nova-form--cf7 .wpcf7-submit,
.nova-form--cf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 180px;
  padding: 16px 32px;
  border: 0;
  background: var(--nova-lime);
  color: var(--nova-black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--nova-transition);
}

.nova-form--cf7 .wpcf7-submit:hover,
.nova-form--cf7 input[type="submit"]:hover {
  opacity: 0.9;
}

.nova-form--cf7 .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 13px;
  margin-top: 6px;
}

.nova-form--cf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
}

.nova-form__placeholder {
  color: var(--nova-grey-600);
  font-family: var(--nova-font-inter);
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-side,
  .contact-form-side {
    padding: 40px 28px;
  }
}

