/* =============================================
   GLOBAL PROJECT MANAGEMENT GROUP - Main CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

:root {
  --primary: #1a2b3c;
  --primary-dark: #0f1c2a;
  --accent: #c8a96e;
  --accent-dark: #a88940;
  --white: #ffffff;
  --light: #f4f5f7;
  --mid: #e0e3e8;
  --muted: #6b7a8d;
  --dark: #0d1824;
  --text: #1e2c3a;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---- TOP BAR ---- */
.topbar {
  background: var(--primary-dark);
  color: var(--mid);
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: .04em;
  padding: 8px 0;
}

.topbar a {
  color: var(--mid);
  transition: color .2s;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar .topbar-links a {
  margin-left: 18px;
}

.topbar .topbar-links a:first-child {
  margin-left: 0;
}

/* ---- NAVBAR ---- */
.navbar-main {
  background: var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.brand-logo-circle {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span:first-child {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .12em;
}

.brand-text span:last-child {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  letter-spacing: .05em;
}

.navbar-main .nav-link {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .8) !important;
  padding: 28px 14px !important;
  position: relative;
  transition: color .2s;
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--white) !important;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  transform: scaleX(1);
}

.btn-consult {
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  padding: 10px 20px !important;
  border-radius: 0;
  transition: background .2s, color .2s;
  margin-left: 8px;
  white-space: nowrap;
}

.btn-consult:hover {
  background: var(--white) !important;
  color: var(--primary-dark) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .3) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 20, 34, .85) 45%, rgba(10, 20, 34, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 0;
}

.hero-badge {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  border: 1px solid var(--accent);
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-inner {
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.hero-inner .hero-content {
  padding: 60px 0;
}

.hero-inner .hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ---- SECTION BASICS ---- */
section {
  padding: 90px 0;
}

.section-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 22px;
  line-height: 1.25;
}

.section-title.white {
  color: var(--white);
}

.section-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  display: inline-block;
  transition: background .2s, color .2s, transform .15s;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-custom {
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  padding: 12px 30px;
  display: inline-block;
  transition: all .2s;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  padding: 12px 30px;
  display: inline-block;
  transition: all .2s;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent-link {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s, color .2s;
  padding: 0;
  border: none;
  background: none;
}

.btn-accent-link::after {
  content: '→';
}

.btn-accent-link:hover {
  gap: 10px;
  color: var(--accent-dark);
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border-top: 4px solid var(--accent);
  padding: 36px 30px;
  height: 100%;
  box-shadow: 0 2px 18px rgba(0, 0, 0, .07);
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
  transform: translateY(-4px);
}

.service-card-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.service-card p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 20px;
}

/* ---- STATS ---- */
.stats-section {
  background: var(--primary);
  color: var(--white);
  padding: 70px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.stat-desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
}

/* ---- APPROACH STEPS ---- */
.approach-section {
  background: var(--light);
}

.approach-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 30px;
  background: var(--white);
  margin-bottom: 12px;
  border-left: 4px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}

.approach-step:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.approach-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: .5;
  line-height: 1;
  flex-shrink: 0;
  width: 55px;
}

.approach-step h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.approach-step p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

/* ---- PROJECT CARDS ---- */
.project-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--primary-dark);
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s, opacity .4s;
  opacity: .85;
}

.project-card:hover img {
  transform: scale(1.06);
  opacity: .6;
}

.project-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10, 20, 34, .95) 60%, transparent);
}

.project-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.project-card-body h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 4px;
}

.project-card-body p {
  color: rgba(255, 255, 255, .65);
  font-size: .83rem;
  margin: 0;
}

.project-hover-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  opacity: 0;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  padding: 10px 22px;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}

.project-card:hover .project-hover-link {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 10px;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-band .section-title {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 30px;
}

/* ---- INDUSTRIES ---- */
.industry-card {
  background: var(--white);
  border: 1px solid var(--mid);
  padding: 36px 30px;
  height: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.industry-card h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: .05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.industry-card p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 16px;
}

.industry-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.industry-card ul li {
  font-size: .88rem;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-card ul li::before {
  content: '—';
  color: var(--accent);
  font-weight: 700;
}

/* ---- ABOUT ---- */
.value-card {
  padding: 30px;
  background: var(--light);
  border-bottom: 3px solid var(--accent);
  height: 100%;
}

.value-card h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  height: 100%;
}

.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: .04em;
}

.team-card h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card .role {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--muted);
  font-size: .88rem;
  margin: 0;
}

/* ---- SERVICES PAGE ---- */
.service-full-card {
  background: var(--white);
  border: 1px solid var(--mid);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.service-full-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 36px rgba(0, 0, 0, .1);
}

.service-full-card h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: .05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-full-card p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 20px;
}

.why-card {
  padding: 30px;
  text-align: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
}

.why-card h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

/* ---- CONTACT ---- */
.contact-info-box {
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  height: 100%;
}

.contact-info-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.contact-info-item {
  margin-bottom: 28px;
}

.contact-info-item label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.contact-info-item p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-info-item a {
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.contact-form-box {
  background: var(--white);
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
}

.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 28px;
}

.form-label-custom {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  border: 1px solid var(--mid);
  border-radius: 0;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--light);
  transition: border-color .2s, box-shadow .2s;
  margin-bottom: 20px;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, .15);
  background: var(--white);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}

select.form-control-custom {
  appearance: none;
  cursor: pointer;
}

/* ---- BREADCRUMB ---- */
.breadcrumb-bar {
  background: var(--light);
  padding: 12px 0;
  border-bottom: 1px solid var(--mid);
}

.breadcrumb-custom {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-custom a {
  color: var(--muted);
  transition: color .2s;
}

.breadcrumb-custom a:hover {
  color: var(--accent);
}

.breadcrumb-custom span {
  color: var(--accent);
}

/* ---- DIVIDER ---- */
.divider-accent {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 14px 0 22px;
}

/* ---- FILTER TABS ---- */
.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 9px 20px;
  border: 1px solid var(--mid);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---- ABOUT IMG BLOCK ---- */
.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.years-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

.years-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.years-badge .lbl {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

/* ---- FOOTER ---- */
.footer-main {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 0;
}

.footer-brand .brand-logo-circle {
  background: var(--accent);
}

.footer-brand p {
  font-size: .88rem;
  margin-top: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: background .2s, border-color .2s, color .2s;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}

.footer-col h5 {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
  display: block;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-col address {
  font-style: normal;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

.footer-col address a {
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer-col address a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .35);
  margin-left: 14px;
  transition: color .2s;
  font-size: .8rem;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .navbar-main .nav-link {
    padding: 12px 16px !important;
  }

  .navbar-main .nav-link::after {
    display: none;
  }

  .years-badge {
    bottom: 10px;
    right: 10px;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 70vh;
  }

  .about-img-wrap img {
    height: 280px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 28px 22px;
  }

  .years-badge {
    display: none;
  }
}

/* ============================================================
   INTER FONT – GLOBAL OVERRIDE
   ============================================================ */
:root {
  --font-body: 'Inter', sans-serif;
}

body,
input,
textarea,
select,
button {
  font-family: 'Inter', sans-serif;
}

/* Keep display headings with Playfair for elegance */
.hero-title,
.section-title,
.modal-title,
h1.section-title,
h2.section-title {
  font-family: 'Playfair Display', serif;
}

/* Condensed elements keep Barlow Condensed */
.topbar,
.nav-link,
.btn-consult,
.filter-tab,
.section-label,
.project-tag,
.approach-num,
.stat-label,
.brand-text span,
.footer-col h5,
.form-label-custom,
.breadcrumb-custom,
.btn-primary-custom,
.btn-outline-custom,
.btn-outline-dark,
.btn-accent-link,
.service-card-label,
.service-card h3,
.why-card h4,
.stat-number,
.years-badge .lbl {
  font-family: 'Barlow Condensed', sans-serif;
}

/* ============================================================
   DROPDOWN NAV MENUS
   ============================================================ */
.dropdown-menu-dark-custom {
  background: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  padding: 10px 0;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  margin-top: 0;
}

.dropdown-item-custom {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, .75);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .2s, color .2s, padding-left .2s;
  text-decoration: none;
}

.dropdown-item-custom:hover {
  background: rgba(200, 169, 110, .12);
  color: var(--accent);
  padding-left: 28px;
}

/* ============================================================
   CONSULTATION MODAL
   ============================================================ */
.modal-content-custom {
  background: var(--white);
  border-radius: 0;
  border: none;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
  overflow: hidden;
}

.modal-header-custom {
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-header-custom .modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

.modal-body-custom {
  padding: 32px;
  background: var(--white);
}

.required-star {
  color: var(--accent);
}

.field-error {
  color: #c0392b;
  font-size: 12px;
  font-weight: 500;
  margin-top: -14px;
  margin-bottom: 14px;
  display: none;
}

.field-error.visible {
  display: block;
}

.alert-success-custom {
  background: rgba(39, 174, 96, .1);
  border: 1px solid rgba(39, 174, 96, .4);
  color: #196f3d;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  margin-bottom: 20px;
}

.alert-error-custom {
  background: rgba(192, 57, 43, .1);
  border: 1px solid rgba(192, 57, 43, .4);
  color: #922b21;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  margin-bottom: 20px;
}

.form-control-custom.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

.form-control-custom.is-valid {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, .12);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--primary);
  padding: 60px 0;
  border-top: 4px solid var(--accent);
}

.newsletter-inner {}

.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin: 8px 0 12px;
}

.newsletter-desc {
  color: rgba(255, 255, 255, .6);
  font-size: .92rem;
  margin: 0;
  line-height: 1.7;
}

.newsletter-form {}

.newsletter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-field-group {
  flex: 1;
  min-width: 160px;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-radius: 0;
  outline: none;
  transition: border-color .2s, background .2s;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.newsletter-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, .15);
}

.newsletter-btn {
  background: var(--accent);
  color: var(--primary-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: #e0bc78;
}

.newsletter-privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============================================================
   SERVICE SUBPAGE STYLES
   ============================================================ */
.service-detail-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&auto=format&fit=crop&q=60') center/cover no-repeat;
  opacity: .1;
}

.service-detail-hero .container {
  position: relative;
  z-index: 1;
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.service-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--mid);
}

.service-benefit-item:last-child {
  border-bottom: none;
}

.service-benefit-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(200, 169, 110, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.service-process-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--light);
  border-left: 4px solid var(--accent);
  margin-bottom: 16px;
}

.service-process-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 50px;
}

/* ============================================================
   PROJECT SUBPAGE STYLES
   ============================================================ */
.project-detail-stat {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--mid);
}

.project-detail-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.project-detail-stat .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
}

.project-gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}

.project-gallery-img:hover {
  transform: scale(1.03);
}

.project-gallery-wrap {
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE ENHANCEMENTS
   ============================================================ */
@media (max-width: 991.98px) {
  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
    padding: 14px;
  }

  .newsletter-field-group {
    min-width: 100%;
  }

  .modal-body-custom {
    padding: 24px 20px;
  }

  .modal-header-custom {
    padding: 22px 24px;
  }
}

@media (max-width: 767.98px) {
  .newsletter-section {
    padding: 44px 0;
  }

  .newsletter-title {
    font-size: 1.3rem;
  }

  .service-detail-hero {
    padding: 50px 0 40px;
  }

  .project-detail-stat .num {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  section {
    padding: 48px 0;
  }

  .modal-dialog {
    margin: 10px;
  }

  .modal-header-custom .modal-title {
    font-size: 1.2rem;
  }
}


/* carrer page */

.gpmg-careers {
  padding: 90px 0
}

.gpmg-section {
  margin-bottom: 100px
}

.gpmg-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c7a76c;
  margin-bottom: 15px
}

.gpmg-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #12263f;
  margin-bottom: 20px
}

.gpmg-text {
  font-size: 16px;
  line-height: 1.9
}

.gpmg-card,
.gpmg-skill,
.gpmg-feature,
.gpmg-note {
  background: #f7f8fa;
  border: 1px solid #e8edf2;
  padding: 30px;
  height: 100%;
  transition: .35s ease;
}

.gpmg-card:hover,
.gpmg-skill:hover,
.gpmg-feature:hover {
  transform: translateY(-5px);
  border-color: #c7a76c;
  box-shadow: 0 15px 40px rgba(15, 39, 67, .08)
}

.gpmg-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #12263f;
  margin-bottom: 12px
}

.gpmg-skill {
  text-align: center;
  font-weight: 600;
  color: #12263f;
  display: flex;
  align-items: center;
  justify-content: center
}

.gpmg-highlight {
  background: linear-gradient(135deg, #0f2743, #173857);
  color: #fff;
  padding: 50px;
  height: 100%
}

.gpmg-highlight h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 15px
}

.gpmg-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.gpmg-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  line-height: 1.8
}

.gpmg-list li:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7a76c;
  position: absolute;
  left: 0;
  top: 11px
}

/* Job cards */
.gpmg-job-card {
  position: relative;
  display: block;
  min-height: 380px;
  text-decoration: none;
  color: #fff;
  overflow: hidden
}

.gpmg-job-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: .5s ease
}

.gpmg-job-card:hover img {
  transform: scale(1.06)
}

.gpmg-job-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0, 0, 0), rgb(0, 0, 0))
}

.gpmg-job-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  z-index: 2
}

.gpmg-job-content h4 {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #232323;
  margin-bottom: 8px
}

.gpmg-job-content p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .85)
}

.gpmg-job-content span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #c7a76c
}


/* Card Container */
.gpmg-job-card {
  position: relative;
  display: block;
  min-height: 480px;
  overflow: hidden;
  border-radius: 24px;
  isolation: isolate;
}

/* Background Image */
.gpmg-job-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* Professional Dark Gradient Overlay */
.gpmg-job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.20) 25%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.92) 100%);
  transition: opacity 0.4s ease;
}

/* Optional Gold Accent Overlay */
.gpmg-job-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at bottom left,
      rgba(201, 157, 84, 0.20) 0%,
      transparent 45%);
  pointer-events: none;
}

/* Hover Zoom */
.gpmg-job-card:hover img {
  transform: scale(1.08);
}

/* Content Area */
.gpmg-job-content {
  position: absolute;
  left: 0px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  color: #ffffff;
}

/* Title */
.gpmg-job-content h4 {
  margin: 0 0 12px;
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Location */
.gpmg-job-content p {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

/* CTA */
.gpmg-job-content span {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c99d54;
}

/* Hover Effects */
.gpmg-job-card:hover::before {
  opacity: 0.95;
}

.gpmg-job-card:hover .gpmg-job-content span {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {
  .gpmg-job-card {
    min-height: 400px;
  }

  .gpmg-job-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .gpmg-job-content h4 {
    font-size: 1.75rem;
  }

  .gpmg-job-content p {
    font-size: 1.05rem;
  }
}

/* Modal fix */
.modal-dialog.modal-xl {
  max-width: 1200px;
}

.modal-content {
  border: none;
}

.modal-body {
  padding: 0;
}

.gpmg-modal-scroll {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.gpmg-modal-header {
  background: linear-gradient(135deg, #0f2743, #173857);
  color: #fff;
  padding: 60px;
  position: relative;
}

.gpmg-modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gpmg-modal-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.gpmg-meta-box {
  background: rgba(255, 255, 255, .08);
  padding: 18px 26px;
}

.gpmg-meta-box strong {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c7a76c;
  margin-bottom: 6px;
}

.gpmg-modal-content {
  padding: 60px;
}

.gpmg-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #12263f;
  margin-bottom: 20px;
}

.gpmg-modal-section {
  margin-bottom: 45px
}

.gpmg-cta {
  background: #f7f8fa;
  border-top: 1px solid #e8edf2;
  padding: 60px;
  text-align: center;
}

.gpmg-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #12263f;
}

.gpmg-btn {
  display: inline-block;
  margin-top: 20px;
  background: #c7a76c;
  color: #12263f;
  padding: 15px 34px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.gpmg-btn:hover {
  background: #12263f;
  color: #fff
}

.gpmg-note {
  text-align: center;
  font-style: italic
}

@media(max-width:767px) {
  .gpmg-title {
    font-size: 32px
  }

  .gpmg-modal-header,
  .gpmg-modal-content,
  .gpmg-cta {
    padding: 30px 22px
  }

  .gpmg-modal-header h2 {
    font-size: 30px
  }

  .gpmg-modal-content h3 {
    font-size: 24px
  }

  .gpmg-cta h3 {
    font-size: 28px
  }

  .gpmg-job-content h4 {
    font-size: 22px
  }
}

/* Privacy Policy */

.gpm-privacy-section {
  padding: 80px 0;
}

.gpm-privacy-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.gpm-privacy-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.gpm-privacy-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 40px;
}

.gpm-policy-block {
  margin-bottom: 40px;
}

.gpm-policy-block h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d1b2a;
}

.gpm-policy-block h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #1b263b;
}

.gpm-policy-block p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #4b5563;
}

.gpm-policy-block ul {
  padding-left: 20px;
}

.gpm-policy-block ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #4b5563;
}

.gpm-contact-box {
  background: #f8fafc;
  border-left: 5px solid #0d6efd;
  padding: 25px;
  border-radius: 12px;
}

@media(max-width:768px) {

  .gpm-privacy-section {
    padding: 40px 0;
  }

  .gpm-privacy-card {
    padding: 25px;
  }

  .gpm-privacy-title {
    font-size: 30px;
  }

  .gpm-policy-block h2 {
    font-size: 24px;
  }

  .gpm-policy-block h3 {
    font-size: 20px;
  }
}

/* Terms of use */
.gpm-terms-section {
  padding: 80px 0;
}

.gpm-terms-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.gpm-terms-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.gpm-terms-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 40px;
}

.gpm-terms-block {
  margin-bottom: 40px;
}

.gpm-terms-block h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d1b2a;
}

.gpm-terms-block p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #4b5563;
}

.gpm-terms-block ul {
  padding-left: 20px;
}

.gpm-terms-block ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #4b5563;
}

.gpm-contact-box {
  background: #f8fafc;
  border-left: 5px solid #0d6efd;
  padding: 25px;
  border-radius: 12px;
}

@media(max-width:768px) {

  .gpm-terms-section {
    padding: 40px 0;
  }

  .gpm-terms-card {
    padding: 25px;
  }

  .gpm-terms-title {
    font-size: 30px;
  }

  .gpm-terms-block h2 {
    font-size: 24px;
  }
}

/* News */
.gpm-news-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 100px 0 80px;
  color: #fff;
}

.gpm-news-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gpm-news-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #d6dce5;
  max-width: 950px;
}

.gpm-news-section {
  padding: 80px 0;
}

.gpm-news-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gpm-news-card:hover {
  transform: translateY(-8px);
}

.gpm-news-card-body {
  padding: 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gpm-news-category {
  display: inline-block;
  background: #e9f2ff;
  color: #0d6efd;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.gpm-news-date {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}

.gpm-news-heading {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

.gpm-news-excerpt {
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 30px;
  flex-grow: 1;
}

.gpm-news-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.gpm-news-btn:hover {
  background: #0b5ed7;
}

.gpm-modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
}

.gpm-modal-header {
  background: #0f172a;
  padding: 35px;
  border: none;
}

.gpm-modal-title {
  color: #fff;
  font-size: 34px;
  line-height: 1.5;
  font-weight: 700;
}

.gpm-modal-body {
  padding: 40px;
  max-height: 75vh;
  overflow-y: auto;
}

.gpm-modal-body p {
  font-size: 17px;
  line-height: 2;
  color: #4b5563;
  margin-bottom: 24px;
}

.gpm-modal-body h3 {
  font-size: 26px;
  color: #0f172a;
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 700;
}

.gpm-modal-body ul {
  padding-left: 22px;
  margin-bottom: 25px;
}

.gpm-modal-body ul li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 12px;
  color: #4b5563;
}

@media(max-width:768px) {

  .gpm-news-title {
    font-size: 40px;
  }

  .gpm-news-heading {
    font-size: 24px;
  }

  .gpm-news-card-body {
    padding: 25px;
  }

  .gpm-modal-header {
    padding: 25px;
  }

  .gpm-modal-title {
    font-size: 24px;
  }

  .gpm-modal-body {
    padding: 25px;
  }

}

/* Client Protal */
.gpm-portal-hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
  overflow: hidden;
}

.gpm-portal-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(13, 110, 253, 0.15);
  border-radius: 50%;
  top: -200px;
  right: -120px;
  filter: blur(40px);
}

.gpm-portal-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -180px;
  left: -120px;
  filter: blur(40px);
}

.gpm-portal-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.gpm-portal-text {
  font-size: 18px;
  line-height: 2;
  color: #d1d5db;
  max-width: 900px;
}

.gpm-login-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

.gpm-login-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.gpm-login-subtitle {
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 30px;
}

.gpm-input-group {
  margin-bottom: 22px;
}

.gpm-input-group label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
  display: block;
}

.gpm-input-group input {
  width: 100%;
  height: 58px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  padding: 0 18px;
  font-size: 15px;
  transition: 0.3s ease;
}

.gpm-input-group input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
  outline: none;
}

.gpm-access-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 14px;
  background: #0d6efd;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.gpm-access-btn:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

.gpm-small-note {
  font-size: 14px;
  color: #6b7280;
  margin-top: 18px;
  line-height: 1.8;
}

.gpm-section {
  padding: 90px 0;
}

.gpm-section-title {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.4;
}

.gpm-section-text {
  font-size: 17px;
  line-height: 2;
  color: #4b5563;
}

.gpm-feature-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gpm-feature-card:hover {
  transform: translateY(-10px);
}

.gpm-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0d6efd, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 25px;
}

.gpm-feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.gpm-feature-text {
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
}

.gpm-list-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.gpm-list-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.gpm-list-icon {
  min-width: 55px;
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #eff6ff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.gpm-list-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.gpm-list-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.9;
  margin: 0;
}

.gpm-collaboration-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 28px;
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.gpm-collaboration-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  right: -100px;
  top: -100px;
}

.gpm-collaboration-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.gpm-collaboration-text {
  color: #d1d5db;
  font-size: 17px;
  line-height: 2;
}

.gpm-cta-section {
  padding: 100px 0;
}

.gpm-cta-card {
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.gpm-cta-card h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 25px;
}

.gpm-cta-card p {
  font-size: 18px;
  line-height: 2;
  color: #4b5563;
  max-width: 900px;
  margin: auto;
}

.gpm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #0d6efd;
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  margin-top: 35px;
  transition: 0.3s ease;
}

.gpm-cta-btn:hover {
  background: #0b5ed7;
  color: #fff;
  transform: translateY(-3px);
}

.gpm-side-image {
  position: relative;
}

.gpm-side-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

@media(max-width:991px) {

  .gpm-portal-title {
    font-size: 46px;
  }

  .gpm-section-title {
    font-size: 34px;
  }

  .gpm-collaboration-box {
    padding: 40px 30px;
  }

  .gpm-cta-card {
    padding: 40px 25px;
  }

  .gpm-cta-card h2 {
    font-size: 34px;
  }

}

@media(max-width:768px) {

  .gpm-portal-hero {
    padding: 90px 0 70px;
  }

  .gpm-portal-title {
    font-size: 38px;
  }

  .gpm-login-card {
    margin-top: 40px;
    padding: 30px 25px;
  }

  .gpm-section {
    padding: 70px 0;
  }

  .gpm-section-title {
    font-size: 30px;
  }

  .gpm-collaboration-title {
    font-size: 30px;
  }

}