/* ==========================================================================
   Base & Design Tokens
   ========================================================================== */
@import url('https://fonts.cdnfonts.com/css/glacial-indifference');

:root {
    --color-primary: #f5634b;
    --color-primary-dark: #e04e36;
    --color-accent-green: #486937;
    --color-accent-lightgreen: #82bd59;
    --color-dark: #181b31;
    --color-body-text: #6b6e82;
    --color-heading: #181b31;
    --color-white: #ffffff;
    --color-light-bg: #f5f7f9;
    --color-light-gray: #e6e8ec;
    --color-footer-bg: #2d323d;
    --color-footer-text: #a1a3ab;
    --color-footer-sub: #070811;

    --font-main: 'Glacial Indifference', 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-pro: 'Glacial Indifference', 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-stats: 'Teko', sans-serif;
    --font-serif: 'Amiri', Georgia, serif;

    --transition-fast: 0.25s ease;
    --transition-medium: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 15px 35px rgba(24, 27, 49, 0.07);
}

/* ==========================================================================
   Reset & Global Elements
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 85px;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

section[id], footer[id] {
    scroll-margin-top: 85px;
}

body {
    font-family: var(--font-main);
    color: var(--color-body-text);
    background-color: #ffffff;
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Site Header / Sticky Navbar with PSG Logo
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.35s ease;
    background: transparent;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
}

/* Brand Logo (PSG Logo) */
.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1001;
    line-height: 1;
}

.logo-img {
    height: 50px;
    width: auto;
    max-height: 76px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.site-header.scrolled .logo-img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.brand-logo:hover .logo-img {
    transform: scale(1.03);
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-lightgreen);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-lightgreen);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.site-header.scrolled .nav-link {
    color: var(--color-dark);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--color-accent-lightgreen);
}

.mobile-nav-header,
.mobile-nav-footer,
.nav-backdrop {
    display: none;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1002;
}

.mobile-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.site-header.scrolled .mobile-toggle .bar {
    background-color: var(--color-dark);
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #ffffff;
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #ffffff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 960px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(42px, 7vw, 100px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 28px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 400;
    line-height: 1.55;
    color: #ffffff;
    max-width: 780px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #ffffff;
    font-size: 20px;
    animation: bounce 2s infinite;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -12px);
    }
    60% {
        transform: translate(-50%, -6px);
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 60px 0 50px;
    background-color: #ffffff;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.about-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.highlight-orange {
    color: var(--color-primary);
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 22px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-body-text);
    margin-bottom: 18px;
    text-align: justify;
}

.about-bold-statement {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    margin-bottom: 22px !important;
    text-align: left !important;
}

.about-btn-wrap {
    margin-top: 22px;
}

/* Green Pill Button */
.btn-pill-green {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 34px;
    border: 1.5px solid var(--color-accent-green);
    border-radius: 50px;
    color: var(--color-accent-green);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.35s ease;
}

.btn-pill-green .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-pill-green:hover {
    background-color: var(--color-accent-lightgreen);
    border-color: var(--color-accent-lightgreen);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(130, 189, 89, 0.35);
}

.btn-pill-green:hover .btn-arrow {
    transform: translateX(5px);
}

/* About Carousel */
.about-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4 / 3.8;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.about-slide.active {
    opacity: 1;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: #ffffff;
    width: 24px;
    border-radius: 6px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    padding: 55px 0 50px;
    background-color: #eceff2;
}

.section-header {
    margin-bottom: 30px;
}

.section-heading {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 30px;
}

.service-card {
    background: transparent;
    padding: 10px 15px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon-box {
    margin-bottom: 20px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service-icon {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-align: center;
}

.service-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--color-body-text);
    text-align: justify;
}

.services-footer {
    margin-top: 15px;
}

.link-know-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--color-accent-green);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.link-know-more:hover {
    color: var(--color-accent-lightgreen);
    border-color: var(--color-accent-lightgreen);
    gap: 15px;
}

/* ==========================================================================
   Be Ambitious & Stats Section
   ========================================================================== */
.ambitious-section {
    padding: 60px 0 50px;
    background-color: #ffffff;
}

.ambitious-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: flex-start;
}

.ambitious-title {
    font-size: clamp(34px, 4.2vw, 50px);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.15;
    text-transform: uppercase;
}

.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    color: var(--color-accent-green);
}

.rotating-word {
    display: none;
}

.rotating-word.active {
    display: inline-block;
    animation: fadeInWord 0.5s ease;
}

@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ambitious-paragraph {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-body-text);
    margin-bottom: 20px;
    text-align: justify;
}

/* Statistics Counters */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 25px;
    padding-top: 10px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-stats);
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 600;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #8c8e9c;
    text-transform: uppercase;
}

/* ==========================================================================
   The Team Banner Section
   ========================================================================== */
.team-banner-section {
    position: relative;
    padding: 110px 0 120px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../images/team-banner-bg.jpg');
    color: #ffffff;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 22, 34, 0.48);
    z-index: 1;
}

.banner-subheading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.banner-heading {
    font-family: var(--font-pro);
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
    max-width: 960px;
    margin: 0 auto 30px;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

/* Orange Pill Button */
.btn-pill-orange {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.35s ease;
}

.btn-pill-orange:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(245, 99, 75, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================================
   Portfolio / Works Section
   ========================================================================== */
.works-section {
    padding: 60px 0 50px;
    background-color: #ffffff;
}

.works-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.works-title {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--color-dark);
}

.filter-tabs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8c8e9c;
    cursor: pointer;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.filter-tab.active, .filter-tab:hover {
    color: var(--color-dark);
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 30px;
}

.portfolio-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.portfolio-item.hide {
    display: none;
}

.pf-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3.7 / 4.5;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.pf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pf-card:hover .pf-img {
    transform: scale(1.12);
}

.pf-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    background: linear-gradient(
        180deg,
        rgba(12, 16, 32, 0.84) 0%,
        rgba(8, 10, 22, 0.94) 100%
    );
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    color: #ffffff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.35s ease;
    z-index: 2;
}

.pf-card:hover .pf-overlay,
.pf-card.active-touch .pf-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pf-card:hover .pf-img,
.pf-card.active-touch .pf-img {
    transform: scale(1.08);
}

.pf-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pf-card:hover .pf-name,
.pf-card.active-touch .pf-name {
    transform: translateY(0);
}

.pf-category {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(130, 189, 89, 0.16);
    border: 1px solid rgba(130, 189, 89, 0.35);
    border-radius: 20px;
    color: #9be06d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0.04s;
}

.pf-card:hover .pf-category,
.pf-card.active-touch .pf-category {
    transform: translateY(0);
}

/* Apple Luxury 3-Box Horizontal Spec Bar for Homepage */
.pf-card .pro-pf-card-details {
    width: 100%;
    margin-top: 14px;
    transform: translateY(12px);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s;
}

.pf-card:hover .pro-pf-card-details,
.pf-card.active-touch .pro-pf-card-details {
    transform: translateY(0);
}

.pf-card .pro-pf-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
}

.pf-card .pro-pf-detail-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 72px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
}

.pf-card .pro-pf-detail-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.pf-card .pro-pf-detail-label {
    font-family: var(--font-pro, 'Montserrat', sans-serif);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.15;
    margin-bottom: 4px;
    display: block;
}

.pf-card .pro-pf-detail-val {
    font-family: var(--font-pro, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    word-break: break-word;
}

.pf-card .pf-date {
    font-family: var(--font-pro, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8c4d8;
    margin-top: 14px;
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}

.pf-card:hover .pf-date,
.pf-card.active-touch .pf-date {
    transform: translateY(0);
}

.btn-underline-green {
    display: inline-block;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent-green);
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-accent-green);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.btn-underline-green:hover {
    color: var(--color-accent-lightgreen);
    border-color: var(--color-accent-lightgreen);
}

/* ==========================================================================
   Standardized Testimonials Section (Unified Across All Pages)
   ========================================================================== */
.pro-testimonials-section,
.testimonials-section {
    position: relative;
    background: url('../images/Testomonials_Background-min.jpg') center center / cover no-repeat;
    padding: 90px 0 80px;
    min-height: 520px;
    margin: 0;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pro-testimonials-overlay,
.dark-overlay-light {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.pro-testimonials-container,
.testimonials-section .container.relative-z {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.pro-testimonials-title,
.testimonials-heading {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.pro-test-slider-wrap,
.testimonial-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 0 65px;
    max-width: 100%;
    margin: 0 auto;
}

.pro-test-slider,
.testimonial-track {
    position: relative;
    width: 100%;
    max-width: 920px;
    min-height: 220px;
}

.pro-test-slide,
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pro-test-slide.active,
.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.pro-test-quote,
.testimonial-quote {
    font-family: 'Amiri', serif !important;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 20px;
    max-width: 880px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.pro-test-author,
.testimonial-author {
    font-family: var(--font-pro, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
    letter-spacing: 0.04em;
}

.pro-test-company,
.testimonial-company {
    font-family: var(--font-pro, 'Outfit', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Left & Right Side Arrow Buttons */
.pro-test-side-btn,
.slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #486937;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pro-test-side-btn.prev,
.slider-arrow.prev {
    left: 0;
    right: auto;
}

.pro-test-side-btn.next,
.slider-arrow.next {
    right: 0;
    left: auto;
}

.pro-test-side-btn:hover,
.slider-arrow:hover {
    background: #82bd59;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(130, 189, 89, 0.4);
}

/* Centered Indicator Dots */
.pro-test-dots,
.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pro-test-dot,
.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pro-test-dot.active,
.testimonial-dots .dot.active {
    background: #82bd59;
    transform: scale(1.3);
    width: 10px;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .pro-testimonials-section,
    .testimonials-section {
        padding: 90px 0 70px;
    }
    .pro-testimonials-title,
    .testimonials-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .pro-test-slider-wrap,
    .testimonial-slider-container {
        padding: 0 45px;
    }
    .pro-test-quote,
    .testimonial-quote {
        font-size: 19px;
        line-height: 1.45;
    }
    .pro-test-side-btn,
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
        display: flex;
    }
}

/* ==========================================================================
   Careers Banner Section
   ========================================================================== */
.careers-banner-section {
    position: relative;
    padding: 70px 0 70px;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.careers-heading {
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    max-width: 880px;
    margin: 0 auto 18px;
    color: #ffffff;
}

.careers-subtext {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
    max-width: 780px;
    margin: 0 auto 26px;
    color: #e4e6ec;
}

/* Solid Green Pill Button */
.btn-pill-solid-green {
    display: inline-block;
    padding: 13px 34px;
    background-color: var(--color-accent-lightgreen);
    border: 2px solid var(--color-accent-lightgreen);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.btn-pill-solid-green:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--color-dark);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Pre-Footer CTA Bar (Matching Reference Screenshot 1:1)
   ========================================================================== */
.pre-footer-cta {
    background-color: #242933;
    padding: 45px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pre-footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.pre-footer-text {
    font-family: var(--font-pro, 'Montserrat', sans-serif);
    font-size: clamp(22px, 2.7vw, 36px);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0;
}

.btn-pill-orange,
.btn-start-project {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 34px;
    background-color: #f25b44;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 91, 68, 0.3);
}

.btn-pill-orange:hover,
.btn-start-project:hover {
    background-color: #e04a33;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(242, 91, 68, 0.45);
}

/* ==========================================================================
   Main Footer (Matching Reference Screenshot 1:1)
   ========================================================================== */
.main-footer,
.pro-main-footer {
    background-color: #171b26;
    color: #8c909e;
    padding: 65px 0 0;
}

.footer-grid,
.pro-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.5fr;
    gap: 45px;
    align-items: flex-start;
    padding-bottom: 55px;
}

/* Col 1: Brand Logo */
.footer-brand-logo,
.pro-footer-brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.footer-logo-img,
.pro-footer-logo-img {
    height: auto;
    max-height: 70px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
}

.footer-brand-logo:hover .footer-logo-img,
.pro-footer-brand-logo:hover .pro-footer-logo-img {
    transform: scale(1.04);
}

/* Titles */
.footer-title,
.pro-footer-title {
    font-family: var(--font-pro, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px;
}

.footer-title-sub {
    margin-top: 38px;
}

/* Links & Text */
.footer-links,
.pro-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.pro-footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.pro-footer-links a,
.pro-footer-social-link {
    font-size: 15px;
    color: #8c909e;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.footer-links a:hover,
.pro-footer-links a:hover,
.pro-footer-social-link:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-plain-phone,
.pro-footer-phone {
    font-size: 15px;
    color: #8c909e;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Col 4: Contact Us */
.footer-contact-heading,
.pro-footer-contact-title {
    font-family: var(--font-pro, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 22px;
    line-height: 1;
}

.footer-plain-address,
.pro-footer-address {
    font-size: 15px;
    line-height: 1.7;
    color: #8c909e;
    margin: 0 0 20px;
}

.footer-red-line,
.pro-footer-divider {
    width: 60px;
    height: 2px;
    background-color: #f25b44;
    margin: 20px 0;
}

.footer-plain-contact,
.pro-footer-email {
    font-size: 15px;
    color: #8c909e;
    margin-bottom: 10px;
}

.footer-plain-contact a,
.pro-footer-phone a,
.pro-footer-email a {
    color: #8c909e;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-plain-contact a:hover,
.pro-footer-phone a:hover,
.pro-footer-email a:hover {
    color: #ffffff;
}

/* Sub-Footer Copyright Bar */
.sub-footer,
.pro-sub-footer {
    background-color: #0c0e14;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.sub-footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-single-text,
.pro-sub-footer-text {
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6c6f7e;
    margin: 0;
}

.copyright-single-text a,
.pro-sub-footer-text a,
.dev-link {
    color: inherit;
    text-decoration: none;
    border-bottom: none;
    transition: color 0.25s ease;
}

.copyright-single-text a:hover,
.pro-sub-footer-text a:hover,
.dev-link:hover {
    color: #ffffff;
    text-decoration: none;
    border-bottom: none;
}

@media (max-width: 991px) {
    .footer-grid,
    .pro-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 767px) {
    .footer-grid,
    .pro-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pre-footer-flex {
        flex-direction: column;
        text-align: center;
    }

    .btn-pill-orange,
    .btn-start-project {
        width: 100%;
        max-width: 280px;
    }
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-accent-green, #486937);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-accent-lightgreen, #82bd59);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal-fade-up,
.reveal-fade-left,
.reveal-fade-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-fade-up {
    transform: translateY(35px);
}

.reveal-fade-left {
    transform: translateX(-35px);
}

.reveal-fade-right {
    transform: translateX(35px);
}

.reveal-fade-up.is-in-view,
.reveal-fade-left.is-in-view,
.reveal-fade-right.is-in-view,
.reveal-fade-up.reveal-active,
.reveal-fade-left.reveal-active,
.reveal-fade-right.reveal-active,
.reveal-fade-up.is-visible,
.reveal-fade-left.is-visible,
.reveal-fade-right.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1199px) {
    .site-header {
        background: transparent;
        padding: 16px 0;
        transition: all 0.35s ease;
    }

    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .header-container {
        padding: 0 20px;
        min-height: 54px;
        position: relative;
        z-index: 1002;
    }

    .brand-logo {
        max-width: 65%;
        justify-content: flex-start;
        position: relative;
        z-index: 1003;
    }

    .logo-img {
        height: 46px;
        max-height: 48px;
        width: auto;
        object-fit: contain;
    }

    .site-header.scrolled .logo-img {
        height: 44px;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 1006;
        cursor: pointer;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 14, 24, 0.65);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .nav-backdrop.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85vw, 340px);
        height: 100vh;
        height: 100dvh;
        background: #182418;
        padding: 24px 24px 30px;
        box-shadow: -8px 0 35px rgba(0, 0, 0, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: right 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1005;
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav.open {
        right: 0;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        margin-bottom: 22px;
    }

    .mobile-drawer-logo {
        height: 42px;
        width: auto;
        object-fit: contain;
    }

    .mobile-nav-close {
        display: none !important;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.1em;
        display: block;
        width: 100%;
        padding: 6px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-accent-lightgreen) !important;
        padding-left: 6px;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        margin-top: auto;
    }

    .mobile-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .mobile-contact-details {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
        color: #b8bdc8;
    }

    .mob-contact-row {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mob-contact-row i {
        color: var(--color-primary);
        width: 14px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .about-grid, .ambitious-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid, .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-arrow.prev,
    .pro-test-side-btn.prev {
        left: 0;
    }

    .slider-arrow.next,
    .pro-test-side-btn.next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: 0 16px;
    }

    .logo-img {
        height: 44px;
        max-height: 44px;
    }

    .site-header.scrolled .logo-img {
        height: 42px;
    }

    .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        max-width: 440px;
        margin: 0 auto 30px;
        gap: 20px;
    }

    .pf-card {
        aspect-ratio: 3.7 / 3.2;
    }

    .pf-overlay {
        padding: 16px 12px;
    }

    .pf-name {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .pf-category {
        font-size: 9.5px;
        padding: 2px 8px;
    }

    .pf-card .pro-pf-card-details {
        margin-top: 10px;
    }

    .pf-card .pro-pf-detail-grid {
        gap: 6px;
    }

    .pf-card .pro-pf-detail-item {
        min-height: 68px;
        padding: 8px 4px;
        border-radius: 8px;
    }

    .pf-card .pro-pf-detail-label {
        font-size: 7.5px;
        margin-bottom: 3px;
    }

    .pf-card .pro-pf-detail-val {
        font-size: 10.5px;
    }

    .pf-card .pf-date {
        font-size: 10px;
        margin-top: 8px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-logo-img,
    .pro-footer-logo-img {
        max-height: 54px;
        max-width: 180px;
    }

    .pre-footer-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .sub-footer-flex {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .copyright-text,
    .developer-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pf-card {
        aspect-ratio: 3.7 / 3.4;
    }

    .pf-overlay {
        padding: 12px 8px;
    }

    .pf-name {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .pf-category {
        font-size: 9px;
        padding: 1px 7px;
    }

    .pf-card .pro-pf-card-details {
        margin-top: 8px;
    }

    .pf-card .pro-pf-detail-grid {
        gap: 4px;
    }

    .pf-card .pro-pf-detail-item {
        min-height: 62px;
        padding: 6px 2px;
        border-radius: 6px;
    }

    .pf-card .pro-pf-detail-label {
        font-size: 7px;
        letter-spacing: 0.04em;
        margin-bottom: 2px;
    }

    .pf-card .pro-pf-detail-val {
        font-size: 9.5px;
        line-height: 1.2;
    }

    .pf-card .pf-date {
        font-size: 9px;
        margin-top: 6px;
    }
}
