:root { --pgm-primary: #e31e24; --pgm-primary-dark: #b3161b; --pgm-primary-light: #ff6b6b;  --pgm-text-dark: #1a1a1a; --pgm-text-medium: #444; --pgm-text-light: #666; --pgm-text-white: #ffffff;  --pgm-bg-white: #ffffff; --pgm-bg-dark: #0a0a0a; --pgm-bg-dark-alt: #1a1a1a;  --pgm-overlay-strong: rgba(10, 10, 10, 0.92);
--pgm-overlay-medium: rgba(15, 15, 15, 0.88); --pgm-border-light: rgba(255, 255, 255, 0.12);
--pgm-border-subtle: rgba(255, 255, 255, 0.08);
}   #vibe-coding-page {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
max-width: 100vw;
box-sizing: border-box;
}   .pgm-hero-slider {
position: relative;
width: 100%;
height: 35vh;
min-height: 500px;
max-height: 650px;
overflow: hidden;
background: var(--pgm-bg-dark);
} .pgm-hero-slider.is-loading .pgm-slide.is-active .pgm-slide-bg {
transform: scale(1) !important;
}
.pgm-hero-slider.is-loading .pgm-slide.is-active .pgm-slide-title,
.pgm-hero-slider.is-loading .pgm-slide.is-active .pgm-slide-subtitle-wrap,
.pgm-hero-slider.is-loading .pgm-slide.is-active .pgm-slide-btn {
opacity: 1;
transform: none;
transition: none;
} .pgm-slider-track {
position: relative;
width: 100%;
height: 100%;
} .pgm-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
z-index: 1;
}
.pgm-slide.is-active {
opacity: 1;
visibility: visible;
z-index: 2;
} .pgm-slide-bg {
position: absolute;
inset: 0;
overflow: hidden;
background-repeat: no-repeat;
transform: scale(1);
transition: transform 8s cubic-bezier(0.2, 0, 0.2, 1);
will-change: transform;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.pgm-slide-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
pointer-events: none;
}
.pgm-about-section img,
.pgm-whyus-image img,
.pgm-blog-thumb img {
height: auto;
}
.pgm-slide.is-active .pgm-slide-bg {
transform: scale(1.08);
}
.pgm-slide-bg--placeholder {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
} .pgm-slide-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg,
rgba(0, 0, 0, 0.2) 0%,
rgba(0, 0, 0, 0.1) 30%,
rgba(0, 0, 0, 0.4) 70%,
rgba(0, 0, 0, 0.7) 100%);
z-index: 2;
} .pgm-slide-content {
position: absolute;
z-index: 3;
left: 0;
right: 0;
top: 50%; transform: translateY(-50%); padding: 0 5%; display: flex;
flex-direction: column;
align-items: center;
text-align: center;
color: var(--pgm-text-white);
} .pgm-slide-title {
font-size: clamp(1.45rem, 5.5vw, 3.5rem); line-height: 1.1;
color: var(--pgm-text-white);
letter-spacing: 2px;
margin: 0 0 25px 0;
text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
padding: 25px 50px;
border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
display: inline-block;
max-width: 90%;
transform: translateY(60px);
opacity: 0;
transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.pgm-slide.is-active .pgm-slide-title {
transform: translateY(0);
opacity: 1;
} .pgm-slide-subtitle-wrap {
transform: translateY(30px);
opacity: 0;
transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s,
opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.pgm-slide.is-active .pgm-slide-subtitle-wrap {
transform: translateY(0);
opacity: 1;
}
.pgm-slide-subtitle {
display: inline-block;
background: var(--pgm-primary);
color: var(--pgm-text-white);
padding: 10px 30px;
font-weight: 600;
letter-spacing: 2px;
position: relative;
clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
} .pgm-slide-btn {
display: inline-flex;
align-items: center;
gap: 10px;
margin-top: 30px;
padding: 14px 35px;
background: transparent;
border: 2px solid rgba(255, 255, 255, 0.8);
color: var(--pgm-text-white);
text-decoration: none;
font-weight: 600;
letter-spacing: 1.5px;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
transform: translateY(30px);
opacity: 0;
}
.pgm-slide.is-active .pgm-slide-btn {
transform: translateY(0);
opacity: 1;
transition-delay: 0.7s;
}
.pgm-slide-btn:hover {
background: var(--pgm-primary);
border-color: var(--pgm-primary);
color: var(--pgm-text-white);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(227, 30, 36, 0.4);
}
.pgm-slide-btn-arrow {
transition: transform 0.3s ease;
}
.pgm-slide-btn:hover .pgm-slide-btn-arrow {
transform: translateX(4px);
} .pgm-slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
width: 52px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1) !important;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2) !important;
color: var(--pgm-text-white) !important;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 50%;
padding: 0 !important;
}
.pgm-slider-arrow svg {
stroke: var(--pgm-text-white) !important;
width: 24px !important;
height: 24px !important;
display: block;
}
.pgm-slider-arrow--prev {
left: 30px;
}
.pgm-slider-arrow--next {
right: 30px;
}
.pgm-slider-arrow:hover {
background: rgba(227, 30, 36, 0.9) !important;
border-color: var(--pgm-primary) !important;
transform: translateY(-50%) scale(1.1);
}
.pgm-slider-arrow:focus-visible,
.pgm-slider-dot:focus-visible,
.pgm-blog-arrow:focus-visible {
outline: 3px solid rgba(255, 255, 255, 0.95);
outline-offset: 3px;
} .pgm-slider-dots {
position: absolute;
bottom: 35px;
left: 50%;
transform: translateX(-50%);
z-index: 10;
display: flex;
gap: 12px;
align-items: center;
}
.pgm-slider-dot {
width: 28px;
height: 28px;
border-radius: 50%;
background: transparent;
border: 0;
cursor: pointer;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
padding: 0;
}
.pgm-slider-dot::before {
content: '';
position: absolute;
inset: 8px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
border: 2px solid rgba(255, 255, 255, 0.5);
transition: all 0.4s ease;
}
.pgm-slider-dot.is-active {
width: 28px;
}
.pgm-slider-dot.is-active::before {
background: var(--pgm-primary);
border-color: var(--pgm-primary);
}
.pgm-dot-progress {
display: none; }
.pgm-slider-dot.is-active .pgm-dot-progress {
animation: none;
}
@keyframes pgm-dot-fill {
from {
width: 0;
}
to {
width: 100%;
}
} .pgm-slider-progress {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: rgba(255, 255, 255, 0.1);
z-index: 10;
}
.pgm-slider-progress-bar {
height: 100%;
width: 0;
background: linear-gradient(90deg, var(--pgm-primary), var(--pgm-primary-light));
transition: none;
}
.pgm-slider-progress-bar.is-animating {
animation: pgm-progress-fill var(--slider-speed, 5000ms) linear forwards;
}
@keyframes pgm-progress-fill {
from {
width: 0;
}
to {
width: 100%;
}
}   .pgm-about-section {
padding: 80px 0;
background-color: var(--pgm-bg-white);
}
.pgm-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.pgm-row {
display: flex;
align-items: center;
gap: 60px;
flex-wrap: wrap;
} .pgm-image-col {
flex: 1;
min-width: 350px;
}
.pgm-img-wrapper {
position: relative;
width: 100%;
border-radius: 20px;
overflow: hidden; box-shadow: 0 35px 75px -15px rgba(0, 0, 0, 0.15);
background: var(--pgm-bg-white);
transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pgm-img-wrapper img {
width: 100%;
height: auto;
display: block;
transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
backface-visibility: hidden;
}
.pgm-img-wrapper:hover {
transform: translateY(-8px);
box-shadow: 0 55px 100px -20px rgba(0, 0, 0, 0.25);
}
.pgm-img-wrapper:hover img {
transform: scale(1.04);
} .pgm-content-col {
flex: 1.2;
min-width: 350px;
} @media (max-width: 992px) {
.pgm-image-col {
order: 2; }
.pgm-content-col {
order: 1; }
}
.pgm-accent-line {
width: 50px;
height: 5px;
background-color: var(--pgm-primary);
margin-bottom: 20px;
}
.pgm-title {
font-weight: 700;
color: var(--pgm-text-dark);
margin: 0 0 10px 0;
letter-spacing: -1px;
}
.pgm-subtitle {
font-weight: 600;
color: var(--pgm-text-light);
margin-bottom: 30px;
letter-spacing: 1px;
}
.pgm-description p {
line-height: 1.8;
color: var(--pgm-text-medium);
margin-bottom: 20px;
} .pgm-button {
display: inline-flex;
align-items: center;
background-color: var(--pgm-primary);
color: var(--pgm-text-white);
padding: 12px 25px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border-radius: 2px;
margin-top: 10px;
}
.pgm-button:hover {
background-color: var(--pgm-primary-dark);
transform: translateY(-2px);
}
.btn-icon {
margin-right: 10px;
}   .pgm-services-section {
position: relative;
width: 100%;
padding: 40px 0;
overflow: hidden;
} .pgm-services-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 1;
}
.pgm-services-bg img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.pgm-services-bg--fallback {
background: linear-gradient(135deg, var(--pgm-bg-dark-alt) 0%, #2d2d2d 50%, var(--pgm-bg-dark-alt) 100%);
} .pgm-services-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg,
var(--pgm-overlay-strong) 0%,
var(--pgm-overlay-medium) 50%,
var(--pgm-overlay-strong) 100%);
z-index: 2;
} .pgm-services-grid {
position: relative;
z-index: 3;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 60px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
box-sizing: border-box;
} .pgm-service-card {
padding: 30px 15px;
text-align: center;
position: relative;
transition: background 0.4s ease;
} .pgm-service-card:not(:last-child)::after {
content: '';
position: absolute;
right: 0;
top: 15%;
height: 70%;
width: 1px;
background: linear-gradient(180deg,
transparent 0%,
var(--pgm-border-light) 30%,
var(--pgm-border-light) 70%,
transparent 100%);
}
.pgm-service-card:hover {
background: rgba(227, 30, 36, 0.08);
} .pgm-service-number {
display: block;
color: var(--pgm-primary);
font-weight: 800;
letter-spacing: 2px;
margin-bottom: 10px;
} .pgm-service-line {
width: 30px;
height: 2px;
background: var(--pgm-primary);
margin: 0 auto 15px auto;
transition: width 0.4s ease;
}
.pgm-service-card:hover .pgm-service-line {
width: 60px;
} .pgm-service-title {
color: var(--pgm-text-white) !important;
font-weight: 700;
letter-spacing: 0.5px;
margin: 0 0 15px 0;
line-height: 1.2;
} .pgm-service-desc {
color: rgba(255, 255, 255, 0.65);
line-height: 1.6;
margin: 0;
} .pgm-service-link {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 20px;
color: var(--pgm-primary);
text-decoration: none;
font-weight: 600;
letter-spacing: 0.5px;
opacity: 0;
transform: translateY(10px);
transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.pgm-service-card:hover .pgm-service-link {
opacity: 1;
transform: translateY(0);
}
.pgm-service-link:hover {
color: var(--pgm-primary-light);
}
.pgm-service-link svg {
transition: transform 0.3s ease;
stroke: currentColor !important;
}
.pgm-service-link:hover svg {
transform: translateX(4px);
}   .pgm-whyus-section {
padding: 80px 0;
background-color: var(--pgm-bg-white);
}
.pgm-whyus-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 30px;
display: flex;
align-items: center;
gap: 60px;
} .pgm-whyus-content {
flex: 1;
min-width: 0;
} .pgm-whyus-badge {
display: inline-block;
background: rgba(227, 30, 36, 0.08);
color: var(--pgm-primary);
padding: 6px 18px;
border-radius: 30px;
font-weight: 600;
letter-spacing: 0.5px;
margin-bottom: 20px;
} .pgm-whyus-title {
color: var(--pgm-text-dark);
font-weight: 700;
line-height: 1.25;
margin: 0 0 15px 0;
}
.pgm-whyus-highlight {
color: var(--pgm-primary);
display: block;
} .pgm-whyus-desc {
color: var(--pgm-text-light);
line-height: 1.7;
margin: 0 0 30px 0;
} .pgm-whyus-list {
list-style: none;
padding: 0;
margin: 0 0 30px 0;
display: flex;
flex-direction: column;
gap: 14px;
}
.pgm-whyus-item {
display: flex;
align-items: flex-start;
gap: 12px;
}
.pgm-whyus-check {
color: var(--pgm-primary);
flex-shrink: 0;
margin-top: 2px;
}
.pgm-whyus-item strong {
color: var(--pgm-text-dark);
}
.pgm-whyus-item-desc {
color: var(--pgm-text-light);
} .pgm-whyus-buttons {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.pgm-whyus-btn-primary {
display: inline-block;
background: var(--pgm-primary);
color: var(--pgm-text-white) !important;
padding: 12px 30px;
border-radius: 4px;
text-decoration: none;
font-weight: 600;
letter-spacing: 0.5px;
transition: all 0.3s ease;
}
.pgm-whyus-btn-primary:hover {
background: var(--pgm-primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}
.pgm-whyus-btn-text {
color: var(--pgm-primary);
text-decoration: none;
font-weight: 600;
letter-spacing: 0.5px;
transition: color 0.3s ease;
position: relative;
}
.pgm-whyus-btn-text::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: var(--pgm-primary);
transition: width 0.3s ease;
}
.pgm-whyus-btn-text:hover::after {
width: 100%;
} .pgm-whyus-image {
flex: 1;
min-width: 0;
}
.pgm-whyus-image img {
width: 100%;
height: auto;
display: block;
border-radius: 16px;
object-fit: cover;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
transition: transform 0.5s ease;
}
.pgm-whyus-image img:hover {
transform: scale(1.02);
}
.pgm-whyus-img-placeholder {
width: 100%;
padding-bottom: 70%;
border-radius: 16px;
background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}   .pgm-cta-section {
position: relative;
padding: 140px 0;
background-color: #111111; background-size: cover;
background-position: center;
background-attachment: scroll; text-align: center;
overflow: hidden; z-index: 1;
}
.pgm-cta-bg {
position: absolute;
inset: 0;
z-index: 1;
}
.pgm-cta-bg img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .pgm-cta-section::before,
.pgm-cta-section::after {
content: '';
position: absolute;
left: -20%;
right: -20%;
height: 140px;
background-color: var(--pgm-bg-white); border-radius: 50%;
z-index: 3;
pointer-events: none;
}
.pgm-cta-section::before {
top: -80px; }
.pgm-cta-section::after {
bottom: -80px; } .pgm-cta-overlay {
position: absolute;
inset: 0;
background: rgba(10, 10, 10, 0.85); z-index: 2;
}
.pgm-cta-container {
position: relative;
z-index: 4; max-width: 1000px;
margin: 0 auto;
padding: 0 40px;
} .pgm-cta-title {
color: var(--pgm-text-white);
font-weight: 700;
letter-spacing: -1px;
margin: 0 0 25px 0;
} .pgm-cta-highlight {
color: var(--pgm-primary); text-shadow: 0 0 20px rgba(227, 30, 36, 0.5); } .pgm-cta-separator {
display: inline-block;
color: rgba(255, 255, 255, 0.3);
margin: 0 15px;
font-weight: 300;
} .pgm-cta-desc {
color: rgba(255, 255, 255, 0.7);
line-height: 1.6;
margin: 0 auto 40px auto;
max-width: 600px;
} .pgm-cta-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.pgm-cta-btn-primary {
display: inline-block;
background: var(--pgm-primary);
color: var(--pgm-text-white) !important;
padding: 14px 34px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 1px solid var(--pgm-primary);
}
.pgm-cta-btn-primary:hover {
box-shadow: 0 0 25px rgba(227, 30, 36, 0.6);
background: var(--pgm-primary-dark);
transform: translateY(-2px);
}
.pgm-cta-btn-outline {
display: inline-block;
background: transparent;
color: var(--pgm-text-white) !important;
padding: 14px 34px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.3);
}
.pgm-cta-btn-outline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.7);
transform: translateY(-2px);
}   .pgm-blog-section {
padding: 100px 0;
background-color: var(--pgm-bg-white);
overflow: hidden;
}
.pgm-blog-header {
text-align: center;
margin-bottom: 70px;
padding: 0 20px;
} .pgm-blog-top-line,
.pgm-blog-bottom-line {
width: 60px;
height: 3px;
background-color: var(--pgm-primary);
margin: 0 auto;
}
.pgm-blog-top-line {
margin-bottom: 20px;
}
.pgm-blog-bottom-line {
margin-top: 20px;
} .pgm-blog-title {
color: var(--pgm-text-dark);
font-weight: 400; margin: 0 0 10px 0;
letter-spacing: -0.5px;
}
.pgm-blog-subtitle {
color: var(--pgm-text-light);
font-weight: 600;
margin: 0;
letter-spacing: 0.5px;
} .pgm-blog-slider-wrap {
max-width: 1200px;
margin: 0 auto;
position: relative;
padding: 0 20px;
} .pgm-blog-arrow {
position: absolute;
top: 45%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background: #fff;
border: 1px solid #ebebeb;
border-radius: 50%;
color: var(--pgm-primary);
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
padding: 0;
}
.pgm-blog-arrow:hover {
background: var(--pgm-primary);
color: #fff;
border-color: var(--pgm-primary);
transform: translateY(-50%) scale(1.05); }
.pgm-blog-arrow--prev {
left: -15px; }
.pgm-blog-arrow--next {
right: -15px;
} @media (max-width: 991px) {
.pgm-blog-arrow {
display: none !important;
}
}
.pgm-blog-slider {
display: flex;
flex-wrap: nowrap; overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
gap: 30px;
padding-bottom: 40px;
cursor: grab;  scrollbar-width: none;
}
.pgm-blog-slider::-webkit-scrollbar {
display: none;
} .pgm-blog-card {
scroll-snap-align: start;
flex: 0 0 calc(33.333% - 20px);
background: #fff;
display: flex;
flex-direction: column;
} .pgm-blog-thumb {
width: 100%;
aspect-ratio: 16/10;
overflow: hidden;
position: relative;
}
.pgm-blog-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.pgm-blog-card:hover .pgm-blog-thumb img {
transform: scale(1.05); }
.pgm-blog-thumb-placeholder {
width: 100%;
height: 100%;
background: #f5f5f5;
} .pgm-blog-content {
padding: 25px 0;
display: flex;
flex-direction: column;
}
.pgm-blog-item-title {
margin: 0 0 15px 0;
font-weight: 700;
line-height: 1.4;
font-size: clamp(1.15rem, 3vw, 1.3rem);
}
.pgm-blog-item-title a {
color: var(--pgm-text-dark);
text-decoration: none;
transition: color 0.3s;
}
.pgm-blog-item-title a:hover {
color: var(--pgm-primary);
} .pgm-blog-meta {
display: flex;
flex-wrap: wrap;
gap: 15px;
color: var(--pgm-text-light);
margin-bottom: 20px;
font-weight: 600;
}
.pgm-meta-item {
display: flex;
align-items: center;
gap: 6px;
}
.pgm-meta-item svg {
color: var(--pgm-text-medium);
} .pgm-blog-divider {
width: 45px;
height: 4px;
background-color: var(--pgm-primary);
margin-bottom: 20px;
} .pgm-blog-excerpt {
color: var(--pgm-text-light);
line-height: 1.6;
} .pgm-blog-scrollbar {
width: 100%;
max-width: 250px; height: 6px; background: #e0e0e0;
margin: 15px auto 0 auto;
position: relative;
border-radius: 4px;
overflow: hidden;
cursor: pointer; }
.pgm-blog-scrollbar-thumb {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 30px; background: var(--pgm-primary);
border-radius: 3px;
transition: transform 0.1s linear;
}    @media (max-width: 1024px) {
.pgm-hero-slider {
height: 60vh;
min-height: 400px;
max-height: 550px;
}
.pgm-slide-content {
padding: 0 6% 90px;
}
.pgm-slider-arrow {
width: 44px;
height: 44px;
}
.pgm-slider-arrow--prev {
left: 15px;
}
.pgm-slider-arrow--next {
right: 15px;
} .pgm-services-grid {
grid-template-columns: repeat(2, 1fr);
}
.pgm-service-card:nth-child(2n)::after {
display: none;
}
.pgm-service-card:nth-child(1),
.pgm-service-card:nth-child(2) {
border-bottom: 1px solid var(--pgm-border-subtle);
} .pgm-blog-card {
flex: 0 0 calc(50% - 15px);
}
} @media (max-width: 768px) {
.pgm-hero-slider {
height: 55vh;
min-height: 350px;
max-height: 500px;
}
.pgm-slide-content {
padding: 0 5% 80px;
}
.pgm-slide-title {
letter-spacing: 1px;
padding: 15px 25px;
background: rgba(0, 0, 0, 0.45);
max-width: 95%;
}
.pgm-slide-subtitle {
padding: 8px 20px;
letter-spacing: 1px;
}
.pgm-slider-arrow {
width: 38px;
height: 38px;
}
.pgm-slider-arrow--prev {
left: 10px;
}
.pgm-slider-arrow--next {
right: 10px;
}
.pgm-slider-arrow svg {
width: 18px;
height: 18px;
}
.pgm-slider-dots {
bottom: 25px;
gap: 8px;
}
.pgm-slider-dot {
width: 10px;
height: 10px;
}
.pgm-slider-dot.is-active {
width: 32px;
}
.pgm-slide-btn {
padding: 10px 24px;
} .pgm-row {
flex-direction: column;
text-align: center;
}
.pgm-accent-line {
margin: 0 auto 20px auto;
}
.pgm-image-col,
.pgm-content-col {
min-width: 100%;
} .pgm-services-section {
padding: 50px 0;
}
.pgm-services-grid {
grid-template-columns: 1fr;
padding: 0 20px;
}
.pgm-service-card::after {
display: none !important;
}
.pgm-service-card {
padding: 35px 20px;
border-bottom: 1px solid var(--pgm-border-subtle);
}
.pgm-service-card:last-child {
border-bottom: none;
}
.pgm-service-link {
opacity: 1;
transform: translateY(0);
} .pgm-whyus-container {
flex-direction: column;
gap: 40px;
text-align: center;
}
.pgm-whyus-image {
order: -1;
}
.pgm-whyus-list {
align-items: center;
}
.pgm-whyus-buttons {
justify-content: center;
} .pgm-blog-card {
flex: 0 0 100%;
}
} @media (max-width: 480px) {
.pgm-hero-slider {
height: 25vh;
min-height: 300px;
max-height: 450px;
}
.pgm-slide-content {
padding: 0 4% 70px;
}
.pgm-slide-subtitle {
padding: 6px 16px;
}
.pgm-slider-arrow {
display: none;
}
.pgm-slide-btn {
padding: 10px 20px;
margin-top: 20px;
}
}
@media (prefers-reduced-motion: reduce) {
.pgm-slide,
.pgm-slide-bg,
.pgm-slide-title,
.pgm-slide-subtitle-wrap,
.pgm-slide-btn,
.pgm-blog-thumb img,
.pgm-img-wrapper,
.pgm-img-wrapper img,
.pgm-whyus-image img,
.pgm-service-link,
.pgm-service-line,
.pgm-blog-arrow,
.pgm-blog-scrollbar-thumb {
animation: none !important;
transition: none !important;
}
}