/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --ip-navy: #0b1220;
  --ip-navy-2: #111c2e;
  --ip-navy-3: #1a2740;
  --ip-slate: #334155;
  --ip-slate-light: #64748b;
  --ip-bg: #f7f8fa;
  --ip-bg-2: #eef1f5;
  --ip-white: #ffffff;
  --ip-accent: #1d4ed8;
  --ip-accent-dark: #15379c;
  --ip-accent-light: #e8eefd;
  --ip-text: #0f172a;
  --ip-muted: #5b6472;
  --ip-line: #e4e8ee;
  --ip-whatsapp: #25d366;
  --ip-radius-lg: 22px;
  --ip-radius: 16px;
  --ip-radius-sm: 10px;
  --ip-shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.22);
  --ip-shadow-sm: 0 10px 25px -14px rgba(15, 23, 42, 0.2);
  --ip-font-display: "Cairo", "Tajawal", sans-serif;
  --ip-font-body: "Tajawal", "Cairo", sans-serif;
}

/* =============================================
   BASE
============================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  background: var(--ip-white);
  color: var(--ip-text);
  font-family: var(--ip-font-body);
  padding-top: 112px;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 112px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ip-font-display);
  color: var(--ip-text);
  font-weight: 800;
  margin: 0;
}

p {
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ip-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =============================================
   NAVBAR — floating, contained bar
============================================= */
.custom-navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  background: #000000;
  border-radius: 18px;
  padding: 0;
  min-height: 76px;
  z-index: 1030;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
  overflow: hidden;
  align-items: center;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .custom-navbar {
    background: rgba(0, 0, 0, 0.78);
    -webkit-backdrop-filter: blur(18px) saturate(120%) brightness(0.45);
    backdrop-filter: blur(18px) saturate(120%) brightness(0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .custom-navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
  }
}

.custom-navbar.scrolled {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

.custom-navbar > .container {
  max-width: none;
  flex: 1 1 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding-inline-start: 1.25rem;
  padding-inline-end: 0.5rem;
}

@media (min-width: 992px) {
  .custom-navbar > .container {
    flex: 0 0 auto;
    width: auto;
  }

  .custom-navbar .navbar-collapse {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.custom-navbar .navbar-collapse > .container {
  max-width: none;
  width: 100%;
  padding-inline-start: 0.5rem;
  padding-inline-end: 1.25rem;
  flex-wrap: nowrap;
}

.custom-navbar .nav-link,
.btn-cta {
  white-space: nowrap;
}

.custom-navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-inline-end: 0;
  cursor: pointer;
}

.brand-logo {
  height: 54px;
  width: auto;
}

.custom-navbar .navbar-nav {
  gap: 0.15rem;
}

.custom-navbar .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--ip-white);
  background: rgba(29, 78, 216, 0.35);
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-lang:hover {
  border-color: var(--ip-accent);
  color: var(--ip-white);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ip-accent);
  color: var(--ip-white) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background: var(--ip-accent-dark);
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
  box-shadow: none !important;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.navbar-toggler-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  background: none !important;
}

.ip-burger-bar {
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  background: var(--ip-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, top 0.3s ease;
}

.ip-burger-bar:nth-child(1) {
  top: 0;
}

.ip-burger-bar:nth-child(2) {
  top: 7px;
}

.ip-burger-bar:nth-child(3) {
  top: 14px;
}

.navbar-toggler[aria-expanded="true"] .ip-burger-bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .ip-burger-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .ip-burger-bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* =============================================
   BUTTONS
============================================= */
.ip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ip-btn-fill {
  background: var(--ip-accent);
  color: var(--ip-white);
}

.ip-btn-fill:hover {
  background: var(--ip-accent-dark);
  transform: translateY(-2px);
  color: var(--ip-white);
}

.ip-btn-fill-light {
  background: var(--ip-white);
  color: var(--ip-navy);
}

.ip-btn-fill-light:hover {
  background: var(--ip-accent-light);
  transform: translateY(-2px);
}

.ip-btn-line {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ip-white);
}

.ip-btn-line:hover {
  border-color: var(--ip-white);
  transform: translateY(-2px);
  color: var(--ip-white);
}

.ip-btn-block {
  width: 100%;
}

body.ltr .ip-rtl-flip {
  transform: scaleX(-1);
}

/* =============================================
   EYEBROW / HEADINGS
============================================= */
.ip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(60, 110, 240, 0.22);
  color: #6f96ff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.ip-eyebrow-dark {
  background: var(--ip-accent-light);
  color: var(--ip-accent-dark);
}

.ip-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.ip-subhead {
  color: var(--ip-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.8;
}

.ip-subhead-start {
  text-align: start;
  margin: 0 0 2rem;
}

.ip-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.ip-body-text {
  color: var(--ip-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

/* =============================================
   HERO
============================================= */
.ip-hero {
  position: relative;
  background: url("../image/hero.jpeg") center center / cover no-repeat, var(--ip-navy);
  padding: 8rem 0 6rem;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.ip-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(3, 6, 14, 0.94) 0%, rgba(6, 11, 22, 0.85) 55%, rgba(6, 11, 22, 0.55) 100%);
  pointer-events: none;
}

body.ltr .ip-hero-bg {
  background: linear-gradient(to right, rgba(3, 6, 14, 0.94) 0%, rgba(6, 11, 22, 0.85) 55%, rgba(6, 11, 22, 0.55) 100%);
}

.ip-hero .container {
  z-index: 1;
}

.ip-title {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.25;
  color: var(--ip-white);
  margin-bottom: 1.4rem;
}

.ip-title-accent {
  display: block;
  color: var(--ip-accent);
}

.ip-lede {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.ip-hero-actions {
  margin-bottom: 3rem;
}

.ip-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ip-stat strong {
  display: block;
  font-family: var(--ip-font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ip-white);
}

.ip-stat strong span {
  color: var(--ip-accent);
}

.ip-stat span:not(:first-child) {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

/* =============================================
   CLIENTS / TRUST STRIP
============================================= */
.ip-clients {
  background: var(--ip-bg);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--ip-line);
}

.ip-clients-label {
  text-align: center;
  color: var(--ip-muted);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.ip-clients-marquee {
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.ip-clients-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  direction: ltr;
  animation: ip-marquee 26s linear infinite;
}

.ip-clients-marquee:hover .ip-clients-track {
  animation-play-state: paused;
}

@keyframes ip-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

.ip-client-logo {
  background: var(--ip-white);
  border: 1px solid var(--ip-line);
  border-radius: var(--ip-radius-sm);
  width: 190px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ip-client-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--ip-shadow-sm);
}

.ip-client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =============================================
   ABOUT / VISION / MISSION
============================================= */
.ip-about {
  padding: 6rem 0;
  background: var(--ip-white);
}

.ip-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ip-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  color: var(--ip-text);
}

.ip-feature-item i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ip-accent-light);
  color: var(--ip-accent-dark);
  border-radius: 50%;
  font-size: 1.05rem;
}

.ip-vm-card {
  background: var(--ip-bg);
  border: 1px solid var(--ip-line);
  border-radius: var(--ip-radius);
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.ip-vm-card:last-child {
  margin-bottom: 0;
}

.ip-vm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.ip-vm-vision .ip-vm-icon {
  background: var(--ip-navy);
  color: var(--ip-white);
}

.ip-vm-mission .ip-vm-icon {
  background: var(--ip-accent);
  color: var(--ip-white);
}

.ip-vm-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.ip-vm-card p {
  color: var(--ip-muted);
  margin: 0;
  line-height: 1.85;
}

/* =============================================
   PRODUCTS / SERVICES
============================================= */
.ip-products {
  padding: 6rem 0;
  background: var(--ip-bg);
}

.ip-service-card {
  background: var(--ip-white);
  border: 1px solid var(--ip-line);
  border-top: 3px solid var(--ip-accent);
  border-radius: var(--ip-radius);
  padding: 2.25rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ip-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ip-shadow-sm);
}

.ip-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--ip-radius-sm);
  background: var(--ip-navy);
  color: var(--ip-white);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.ip-service-card h5 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.ip-service-card p {
  color: var(--ip-muted);
  margin: 0;
  line-height: 1.8;
}

.ip-product-card {
  position: relative;
  border-radius: var(--ip-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--ip-shadow-sm);
  cursor: default;
}

.ip-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ip-product-card:hover img {
  transform: scale(1.06);
}

.ip-product-scrim {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 18, 32, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.ip-product-scrim span {
  color: var(--ip-white);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.4;
}

/* =============================================
   CTA BAND
============================================= */
.ip-cta {
  padding: 0 0 6rem;
  background: var(--ip-bg);
}

.ip-cta-box {
  background: linear-gradient(135deg, var(--ip-navy) 0%, var(--ip-navy-3) 100%);
  border-radius: var(--ip-radius-lg);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ip-cta-box h3 {
  color: var(--ip-white);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  max-width: 520px;
}

.ip-cta-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 480px;
}

/* =============================================
   CONTACT
============================================= */
.ip-contact {
  padding: 6rem 0;
  background: var(--ip-white);
}

.ip-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ip-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ip-contact-row i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ip-accent-light);
  color: var(--ip-accent-dark);
  border-radius: 50%;
  font-size: 1rem;
}

.ip-contact-row div {
  display: flex;
  flex-direction: column;
}

.ip-contact-label {
  font-size: 0.8rem;
  color: var(--ip-slate-light);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.ip-contact-row a {
  font-weight: 700;
  color: var(--ip-text);
}

.ip-contact-row a:hover {
  color: var(--ip-accent);
}

.ip-form-card {
  background: var(--ip-bg);
  border: 1px solid var(--ip-line);
  border-radius: var(--ip-radius-lg);
  padding: 2.25rem;
}

.ip-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--ip-text);
}

.ip-input {
  width: 100%;
  border: 1px solid var(--ip-line);
  background: var(--ip-white);
  border-radius: var(--ip-radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ip-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ip-input:focus {
  outline: none;
  border-color: var(--ip-accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.ip-textarea {
  resize: vertical;
  min-height: 130px;
}

.ip-alert {
  border-radius: var(--ip-radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.ip-alert-success {
  background: #e9f9ee;
  color: #17803d;
  border: 1px solid #b8ecc7;
}

.ip-alert-danger {
  background: #fdecec;
  color: #b42318;
  border: 1px solid #f7c3c0;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--ip-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem;
}

.footer-logo {
  height: 38px;
  width: auto;
}

.footer-text {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
}

.footer-title {
  color: var(--ip-white);
  font-size: 1.05rem;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--ip-accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-contact i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--ip-accent);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--ip-white);
}

.footer-bottom p {
  margin: 0;
}

/* =============================================
   FLOATING ACTION BUTTONS
============================================= */
.ip-float-actions {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 0;
  display: flex;
  flex-direction: column;
  z-index: 1040;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ip-shadow-sm);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .ip-float-actions {
    -webkit-backdrop-filter: blur(14px) saturate(120%) brightness(0.6);
    backdrop-filter: blur(14px) saturate(120%) brightness(0.6);
  }
}

.ip-float-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ip-white);
  transition: background-color 0.2s ease;
}

.ip-float-btn + .ip-float-btn {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ip-float-btn:hover {
  color: var(--ip-white);
  background: rgba(255, 255, 255, 0.12);
}

.ip-float-call,
.ip-float-wa,
.ip-float-mail {
  color: var(--ip-white);
}

/* =============================================
   404 PAGE
============================================= */
.ip-404 {
  padding: 7rem 0;
  background: var(--ip-bg);
}

.ip-404-num {
  font-family: var(--ip-font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--ip-navy);
  line-height: 1;
  margin-bottom: 1rem;
}

.ip-404-num span:nth-child(2) {
  color: var(--ip-accent);
}

.ip-404-title {
  color: var(--ip-text);
  margin-bottom: 1.25rem;
}

.ip-404-lede {
  color: var(--ip-muted);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.85;
}

.ip-404-actions {
  margin-bottom: 2.5rem;
}

.ip-404-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  color: var(--ip-muted);
  font-weight: 600;
}

.ip-404-links a {
  color: var(--ip-slate);
}

.ip-404-links a:hover {
  color: var(--ip-accent);
}

/* =============================================
   SECTION REVEAL
============================================= */
.ip-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ip-reveal.ip-revealed {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991.98px) {
  body {
    padding-top: 94px;
  }

  html {
    scroll-padding-top: 106px;
  }

  section {
    scroll-margin-top: 106px;
  }

  .custom-navbar {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 66px;
  }

  .custom-navbar > .container {
    min-height: 66px;
    padding-inline: 1rem;
  }

  .custom-navbar .navbar-collapse > .container {
    padding-inline: 1rem;
  }

  .brand-logo {
    height: 40px;
  }

  .custom-navbar .navbar-collapse {
    padding: 0.25rem 0.25rem 1.25rem;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .custom-navbar .navbar-nav {
    gap: 0.35rem;
  }

  .custom-navbar .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 1rem;
  }

  .ip-hero {
    padding: 3.5rem 0 3.5rem;
    min-height: auto;
  }

  .ip-hero .container {
    padding-inline-end: 4.5rem;
  }

  .ip-cta-box {
    padding: 2rem;
    text-align: center;
    justify-content: center;
  }

  .ip-cta-box h3,
  .ip-cta-box p {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .custom-navbar {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 14px;
  }

  .ip-client-logo {
    width: 150px;
    height: 96px;
    padding: 1rem;
  }
}
