.full-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
}

/* =========================
   NAVBAR WRAPPER
========================= */
.site-navbar,
.navbar-container,
.navbar-list,
.navbar-list li {
    overflow: visible !important;
}

.site-navbar,
.navbar-container {
    transform: none !important;
    filter: none !important;
    perspective: none !important;
}

.site-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
}

/* =========================
   CONTAINER
========================= */
.navbar-container {
    max-width: 1600px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px;
}

/* =========================
   LOGO
========================= */
.navbar-logo img {
    height: 90px;
    width: auto;
}

/* =========================
   NAV LIST
========================= */
.navbar-menu {
    /* display: flex; */
}

.navbar-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================
   NAV LINKS
========================= */
.navbar-list a {
    font-size: 17px;
    font-weight: 600;
    padding: 8px 16px;
    color: #111827;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.navbar-list a:hover {
    color: #f97316;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =========================
   DROPDOWN
========================= */
.has-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
    margin: 0;
    list-style: none;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    pointer-events: none;
}

/* Dropdown icon */
.has-dropdown i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Dropdown menu */
.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 9999;
}

/* Dropdown links */
.dropdown-menu li a {
    display: block;
    padding: 7px 0px;
    color: #082448;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
    color: #f97316;
    text-decoration: none;
    border-radius: 8px;
    padding: 7px 7px;
}
/* =========================
   DESKTOP HOVER
========================= */
@media (min-width: 1024px) {
    .has-dropdown:hover > .dropdown-menu {
        opacity: 1;

        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .has-dropdown.open i {
        transform: rotate(180deg);
    }
}
@media (max-width: 991px) {
    .navbar-menu {
        display: none !important;
    }
    .navbar-cta {
        display: none;
    }
}
@media (max-width: 1085px) {
    .navbar-list a {
        padding: 8px 9px;
    }
}
.has-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
}
.dropdown-toggle::after {
    display: none !important;
}

/* =========================
   CTA BUTTON
========================= */

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    transform: scale(1.03);
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.btn-quote i {
    width: 16px;
    height: 16px;
}
.site-navbar,
.navbar-container,
.navbar-menu,
.navbar-list {
    overflow: visible !important;
}

/* Topbar */
.topbar {
    background-color: #082448;
    color: #f9fafb;
}

.topbar-container {
    max-width: 1280px;
    margin: auto;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.topbar-text {
    font-size: 13px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.topbar-label {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.social-link svg {
    height: 14px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #f59e0b;
}

/* Responsive */
@media (max-width: 640px) {
    .topbar-container {
        justify-content: center;
        text-align: center;
    }
}
a {
    text-decoration: none;
}

.hover-orange {
    transition: all 0.3s ease;
}
.hover-orange:hover {
    color: var(--color-amber-500) !important;
}

/* mobile nav */
.menu-link {
    padding: 15px 20px;
    display: block;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #444;
}
.menu-link:hover {
    background: #0b3a6b;
}
.submenu-link {
    padding: 10px 0;
    display: block;
    color: #ddd;
    text-decoration: none;
}
.submenu-link:hover {
    color: orange;
}

/* Services */
/* Container */
.container {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section header */
.section-header {
    margin-bottom: 3rem;
}
.section-subtitle {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #082448;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary, #082448);
}

/* Services list grid */
.services-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    padding-left: 0rem !important;
}
@media (min-width: 640px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Service card */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
.service-card:hover {
    border-color: #f97316;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    position: relative;
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid #fed7aa;
}

/* The icon image stays on top */
.service-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Add spinning dots using pseudo-elements */

/* Service content */
.service-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #082448;
    transition: color 0.3s;
}
.service-card:hover .service-title {
    color: #f97316;
}

.service-desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    text-align: justify;
}

/* Quote button */
.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: #fff;
    background: linear-gradient(to right, #f97316, #ea580c);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.btn-quote:hover {
    transform: scale(1.02);
    background: linear-gradient(to right, #ea580c, #c2410c);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}
.btn-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
}
.btn-quote:hover .btn-icon {
    transform: translateX(0.25rem);
}

/* What we offer */
/* Section */
.offer-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .offer-section {
        padding: 5rem 1rem;
    }
}

/* Background */
.offer-bg {
    position: absolute;
    inset: 0;
    z-index: -10;
    background: linear-gradient(to bottom, #081a2e, #0a2542, #081a2e);
}

/* Container */
.offer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .offer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .offer-container {
        padding: 0 2rem;
    }
}

/* Header */
.offer-title {
    margin-top: 0.75rem;
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .offer-title {
        font-size: 2.25rem;
    }
}

.offer-title-gradient {
    background: linear-gradient(to right, #ffffff, #fdba74);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.offer-subtitle {
    margin-top: 0.75rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(226, 232, 240, 0.8);
}

/* Grid */
.offer-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Cards */
.offer-card {
    position: relative;
    border-radius: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 20px -10px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 28px -12px rgba(0, 0, 0, 0.7);
}

/* Wide card */
@media (min-width: 768px) {
    .offer-card-wide {
        grid-column: span 2;
    }
}

/* Divider */
.offer-card-divider {
    position: absolute;
    inset-inline: 0;
    top: -1px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(253, 186, 116, 0.5),
        transparent
    );
}

/* Card content */
.offer-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.offer-card-text {
    margin-top: 0.25rem;
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.6;
    text-align: justify;
}

/* stats css */
/* Section */
.stats-section {
    padding: 3.5rem 1rem;
    background: #ffffff;
}

@media (min-width: 1024px) {
    .stats-section {
        padding: 4rem 1rem;
    }
}

/* Container */
.stats-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .stats-container {
        padding: 0 1.5rem;
    }
}

/* Heading */
.stats-heading {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .stats-heading {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .stats-heading {
        font-size: 2.25rem;
    }
}

/* Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Cards */
.stats-card {
    background: #0a2a52;
    color: #ffffff;
    padding: 2rem;
    text-align: center;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.stats-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
}

/* Icon */
.stats-icon {
    margin: 0 auto 1.25rem;
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--accent);
    /* border: 1px solid #fde68a; */
}

.stats-icon i {
    width: 2rem;
    color: #f97316;
    font-size: 30px;
}

/* Numbers */
.stats-number {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Labels */
.stats-label {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #e2e8f0;
}

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* features products */
.img-fill {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: transparent;
}

/* Optional: smoother hover scaling (already Tailwind-based, but reusable) */

.project-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.project-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover zoom effect */
.project-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.15)
    );
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
}

/* Show overlay on hover */
.project-card:hover .card-overlay {
    opacity: 1;
}

/* Bottom content */
.card-content {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Title */
.card-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Button */
.live-btn {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.live-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}
.hover-dark {
    color: #ffffff;
    transition: all 0.3s ease;
}
.hover-dark:hover {
    color: #000000;
}

/* Layout */
.about {
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

.about-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: #f8fafc;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
}

/* Image */
.about-image-wrap {
    max-width: 560px;
    margin: auto;
    aspect-ratio: 4 / 3;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content */
.badge {
    display: inline-block;
    background: #ffedd5;
    color: #c2410c;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
}

.about-title {
    margin: 16px 0 12px;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(to right, #082448, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    color: #334155;
    line-height: 1.7;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    padding: 0;
    list-style: none;
}

.about-list li {
    display: flex;
    gap: 10px;
    color: #334155;
}

.about-list li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: #ffedd5;
    color: #c2410c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Buttons */
.about-buttons {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #f97316;
    color: #ffffff;
}

.btn.primary:hover {
    background: #ea580c;
    transform: translateX(4px);
}

.btn.outline {
    border: 1px solid #fdba74;
    color: #c2410c;
}

.btn.outline:hover {
    border-color: #fb923c;
    transform: translateX(4px);
}

/* Responsive */
@media (min-width: 1024px) {
    .about-box {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* Header base */
.page-header {
    background-color: #082448;
    color: #ffffff;
    overflow: hidden;
}

/* Container */
.header-container {
    margin: auto;
    padding: 25px 16px;
}

/* Title */
.page-header h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
}

/* Description */
.page-header p {
    margin-top: 12px;
    max-width: 700px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 16px;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #fbbf24; /* amber */
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (min-width: 768px) {
    .header-container {
        padding: 25px 16px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .page-header p {
        font-size: 16px;
    }
}

/* ===== Pentasoft About Section ===== */

.ps-about-section {
    padding: 60px 0;
}

.ps-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Grid */
.ps-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .ps-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Images */
.ps-about-images {
    position: relative;
}

/* Title */
.ps-about-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f97316;
}

.ps-about-title h2 {
    font-size: 17px;
    line-height: 1.4;
    font-weight: bold;
}

.ps-about-icon {
    font-size: 18px;
}

/* Text */
.ps-about-text {
    margin: 16px 0 26px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 70ch;
    text-align: justify;
    color: var(--muted-foreground);
}

/* Skills */
.ps-about-skills {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-about-skills li {
    margin-bottom: 18px;
}

.ps-about-skill-head {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
}

.ps-about-skill-head span:last-child {
    color: #f97316;
}

.ps-about-progress {
    background: #e5e7eb;
    height: 10px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 6px;
}

.ps-about-progress div {
    height: 100%;
    background: #f97316;
}

/* Author */
.ps-about-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.ps-about-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #e5e7eb;
}

.ps-about-author span {
    display: block;
    font-size: 13px;
    color: #6b7280;
}
.top-33 {
    top: 33%;
}

/* ===== Why Choose Us | Pentasoft ===== */

.ps-why-section {
    background: #ffffff;
    padding: 60px 0;
}

.ps-why-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* Badge */
.ps-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #c2410c;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
}

.ps-why-badge i {
    width: 6px;
    height: 6px;
    background: #f97316;
    border-radius: 50%;
}

/* Headings */
.ps-why-title {
    margin-top: 14px;
    font-size: 32px;
    font-weight: 800;
    color: #1f2933;
}

.ps-why-subtitle {
    margin-top: 32px;
    font-size: 22px;
    font-weight: 800;
    color: #1f2933;
}

/* Text */
.ps-why-text {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    text-align: justify;
}

/* Cards */
.ps-why-list {
    margin-top: 24px;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

.ps-why-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ps-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ps-why-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1f2933;
}

.ps-why-card p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

/* Icon */
.ps-why-icon {
    width: 30px;
    height: 30px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Footer */
.ps-why-footer {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    text-align: justify;
}

/* Responsive */
@media (min-width: 768px) {
    .ps-why-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* ===== Technologies Section | Pentasoft ===== */

.ps-tech-section {
    background: #ffffff;
    padding: 60px 0;
}

.ps-tech-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
    text-align: center;
}

/* Badge */
.ps-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #c2410c;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
}

.ps-tech-badge i {
    width: 6px;
    height: 6px;
    background: #f97316;
    border-radius: 50%;
}

/* Title */
.ps-tech-title {
    margin-top: 12px;
    font-size: 28px;
    font-weight: 800;
    color: #1f2933;
}

/* Tabs */
.ps-tech-tabs {
    display: inline-flex;
    margin-top: 20px;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.ps-tech-tab {
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #374151;
    transition: background 0.2s ease, color 0.2s ease;
}

.ps-tech-tab:hover {
    background: #f1f5f9;
}

.ps-tech-tab.is-active {
    background: #f97316;
    color: #ffffff;
}

/* Grid */
.ps-tech-grid {
    margin-top: 28px;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

/* Card */
.ps-tech-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    position: relative;
    /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ps-tech-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--accent);
    border-radius: 16px 0 0 16px;
}

.ps-tech-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.ps-tech-card img {
    width: 36px;
    height: 36px;
}

.ps-tech-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1f2933;
}

.ps-tech-card span {
    font-size: 12px;
    color: #6b7280;
}

/* Responsive */
@media (min-width: 640px) {
    .ps-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ps-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Section */
.about-values {
    background-color: #ffffff;
}

/* Container */
.about-values__container {
    max-width: 80rem; /* max-w-7xl */
    margin-inline: auto;
    padding: 0rem 1rem;
}

@media (min-width: 640px) {
    .about-values__container {
        padding: 0rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .about-values__container {
        padding: 0rem 1.5rem;
    }
}

/* List spacing */
.about-values__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-values__list {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .about-values__list {
        gap: 2rem;
    }
}

/* Title */
.about-values__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    color: #1e293b; /* slate-800 */
    font-size: 1.25rem;
}

@media (min-width: 640px) {
    .about-values__title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .about-values__title {
        font-size: 26px;
    }
}

/* Dot */
.about-values__dot {
    margin-top: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #f97316; /* orange-500 */
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

/* Text */
.about-values__text {
    margin-top: 0.75rem;
    font-size: 13px;
    line-height: 1.5rem;
    color: #475569; /* slate-600 */
    text-align: justify;
}

@media (min-width: 640px) {
    .about-values__text {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .about-values__text {
        font-size: 15px;
        line-height: 1.75rem;
    }
}

/* Divider */
.about-values__divider {
    margin-top: 2rem;
    height: 1px;
    border: 0;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
}

@media (min-width: 640px) {
    .about-values__divider {
        margin-top: 2.25rem;
    }
}

@media (min-width: 768px) {
    .about-values__divider {
        margin-top: 2.5rem;
    }
}

/* Section */
.contact-cta {
    position: relative;
    isolation: isolate;
    color: #fff;
}

/* Background */
.contact-cta__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.contact-cta__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(2, 6, 23, 0.8),
        rgba(15, 23, 42, 0.75),
        rgba(15, 23, 42, 0.65)
    );
    backdrop-filter: blur(1px);
}

.contact-cta__glow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 60%;
    background: rgba(249, 115, 22, 0.1);
    filter: blur(80px);
    border-radius: 9999px;
}

/* Layout */
.contact-cta__container {
    max-width: 100rem;
    margin-inline: auto;
    padding: 3.5rem 1rem;
}

@media (min-width: 768px) {
    .contact-cta__container {
        padding: 5rem 1.5rem;
    }
}

.contact-cta__grid {
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-cta__grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 3rem;
        align-items: center;
    }
}

/* Content */
.contact-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    color: #fdba74;
}

.contact-cta__badge svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.contact-cta__title {
    margin-top: 0.75rem;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    max-width: 20ch;
}

.contact-cta__desc {
    margin-top: 0.75rem;
    max-width: 60ch;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.9);
}

/* Actions */
.contact-cta__actions {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .contact-cta__actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CTA Card */
.cta-card {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.2);
}

/* Shine */
.cta-card__shine {
    position: absolute;
    inset-y: 0;
    left: -30%;
    width: 33%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(253, 186, 116, 0.4),
        transparent
    );
    transform: skewX(-12deg) translateX(-100%);
    transition: transform 0.5s;
}

.cta-card:hover .cta-card__shine {
    transform: skewX(-12deg) translateX(260%);
}

/* Icon */
.cta-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(#ffedd5, #fff7ed);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.cta-card:hover .cta-card__icon {
    transform: scale(1.1) rotate(2deg);
}

/* Text */
.cta-card__label {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #475569;
}

.cta-card__value {
    margin-top: 0.25rem;
    font-weight: 600;
    color: #0f172a;
}
/* Section */
.portfolio {
    min-height: 100vh;
    background: #f9fafb;
    padding-top: 1.25rem;
}

.portfolio__container {
    margin: auto;
    padding: 2rem 1rem;
}

/* Tabs */
.portfolio-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.portfolio-tab {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #fff;
    border: 1px solid #cbd5f5;
    color: #1e293b;
    transition: all 0.3s ease;
}

.portfolio-tab:hover {
    background: #f1f5f9;
}

.portfolio-tab.is-active {
    background: #1e293b;
    color: #fff;
    border-color: transparent;
}

/* Grid */
.portfolio-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.portfolio-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

/* Media */
.portfolio-card__media {
    position: relative;
    overflow: hidden;
}

.portfolio-card__media img {
    width: 100%;
    height: 16rem;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card__overlay p {
    color: #e5e7eb;
    font-size: 0.875rem;
    line-height: 1.5;
}

.portfolio-card__overlay ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 1rem;
    font-size: 0.75rem;
    color: #d1d5db;
    padding-left: 0px !important;
}

.portfolio-card__overlay li::before {
    content: "✔";
    color: #4ade80;
    margin-right: 0.5rem;
}

/* Body */
.portfolio-card__body {
    padding: 1.5rem;
}

.portfolio-card__body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 9999px;
    background: #ffedd5;
    color: #9a3412;
}

/* ================================
   PentaSoft Contact Section
   Namespace: ps-contact
================================ */

.ps-contact .ps-contact__card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    border: 1px solid #ddd;
}

.ps-contact .ps-contact__card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Glow */
.ps-contact .ps-contact__glow {
    pointer-events: none;
    position: absolute;
    inset: -1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ps-contact .ps-contact__card:hover .ps-contact__glow {
    opacity: 1;
}

.ps-contact .ps-contact__card[data-glow="right"] .ps-contact__glow {
    background: radial-gradient(
        300px at 270px 194px,
        rgba(251, 146, 60, 0.15),
        transparent 80%
    );
}

.ps-contact .ps-contact__card[data-glow="left"] .ps-contact__glow {
    background: radial-gradient(
        300px at 0 0,
        rgba(251, 146, 60, 0.15),
        transparent 80%
    );
}

/* Icon */
.ps-contact .ps-contact__icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: #ffedd5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-contact .ps-contact__icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #ea580c;
    fill: none;
    stroke-width: 2;
}

/* Text */
.ps-contact .ps-contact__title {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.ps-contact .ps-contact__text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
}

.ps-contact .ps-contact__address {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #0f172a;
}

/* Links */
.ps-contact .ps-contact__link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.ps-contact .ps-contact__link:hover {
    color: #ea580c;
    text-decoration: underline;
}

.ps-contact .ps-contact__link--break {
    word-break: break-all;
}

input,
textarea {
    width: 100% !important;
    padding: 0.6rem 2.5rem 0.6rem 0.75rem !important;
    border-radius: 0.5rem !important;
    border: 1px solid #fb923c !important;
    background: transparent !important;
    font-size: 0.875rem !important;
}

.psp-input-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #fb923c;
    border-radius: 0.5rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Input */
.psp-input {
    flex: 1;
    border: none;
    padding: 0.6rem 0.75rem;
    padding-right: 2.5rem;
    font-size: 0.875rem;
    background: transparent;
    outline: none;
}

/* Icon */
.psp-input-icon {
    position: absolute;
    right: 0.75rem;
    font-size: 1rem;
    color: #fb923c;
    pointer-events: none;
}

/* Focus effect (entire group) */
.psp-input-group:focus-within {
    border-color: #f97316;
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

/* Placeholder */
.psp-input::placeholder {
    color: #94a3b8;
}

.psp-select {
    width: 100%;
    border: none;
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    background: transparent;
    outline: none;
    appearance: none;
    cursor: pointer;
    border-radius: 0.5rem;
    border: 1px solid #fb923c;
}
.psp-select option[value=""] {
    color: #94a3b8;
}
.psp-textarea {
    width: 100%;
    min-height: 120px;
    border: none;
    padding: 0.75rem;
    font-size: 0.875rem;
    background: transparent;
    outline: none;
    resize: vertical;
}

/* Layout */
.terms-wrapper {
    max-width: 64rem;
    margin-inline: auto;
}

.terms-intro {
    margin-top: 0.75rem;
    line-height: 1.7;
    color: #475569;
    text-align: justify;
}

/* List */
.terms-list {
    margin-top: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.terms-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
}

.terms-item + .terms-item {
    border-top: 1px solid #e2e8f0;
}

/* Icon */
.terms-icon {
    margin-top: 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #d1fae5;
}

/* Content */
.terms-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
}

.terms-text {
    margin-top: 0.25rem;
    line-height: 1.7;
    color: #475569;
    text-align: justify;
}

.terms-highlight {
    font-weight: 600;
    color: #0f172a;
}
/* ===============================
   PROJECT CARD – 3D WRAPPER
================================ */

.ps-project-card-perspective {
    perspective: 1000px;
    padding-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-project-card-3d {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

/* ===============================
   PROJECT CARD – BASE
================================ */

.ps-project-card {
    position: relative;
    width: 100%;
    max-width: 30rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform-style: preserve-3d;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.dark .ps-project-card {
    background-color: #000;
    border-color: rgba(255, 255, 255, 0.2);
}

.ps-project-card:hover {
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.1);
}

/* ===============================
   TITLE & DATE
================================ */

.ps-project-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #525252;
}

.dark .ps-project-card-title {
    color: #ffffff;
}

.ps-project-card-date {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #737373;
}

.dark .ps-project-card-date {
    color: #d4d4d4;
}

/* ===============================
   IMAGE
================================ */

.ps-project-card-image-wrap {
    margin-top: 1rem;
}

.ps-project-card-image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: box-shadow 0.25s ease;
}

.ps-project-card:hover .ps-project-card-image {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ps-project-card-perspective {
    perspective: 1200px;
}

.ps-project-card-image-wrap {
    transform-style: preserve-3d;
}

.ps-project-card-image {
    will-change: transform;
    transition: transform 0.25s ease-out;
    backface-visibility: hidden; /* 🔥 stops edge distortion */
    transform-origin: center center;
}
/* ===== Layout ===== */
.php-service-section {
    margin-bottom: 3rem;
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .php-service-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== Typography ===== */
.php-service-title {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .php-service-title {
        font-size: 2.25rem;
    }
}

.php-service-text {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* ===== Buttons ===== */
.php-service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.php-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.25rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.php-btn-primary {
    background: var(--color-primary);
    color: var(--color-primary-foreground);
}

.php-btn-primary:hover {
    opacity: 0.9;
}

.php-btn-outline {
    border: 1px solid var(--border);
    background: var(--background);
}

.php-btn-outline:hover {
    background: var(--accent);
}

/* ===== Image ===== */
.php-service-image-wrapper {
    display: flex;
    justify-content: center;
}

.php-service-image {
    /* width: 320px; */
    height: auto;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
    color: transparent;
}
.faq-accordion {
    background: var(--accent, #f8fafc);
    padding: 1rem;
    width: 100%;
}

/* Item */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

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

/* Trigger */
.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

/* Icon */
.faq-icon {
    width: .5rem;
    height: .5rem;
    position: relative;
}

.faq-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.5s ease;
}

.faq-item.is-open .faq-icon::before {
    transform: rotate(-135deg);
}

/* Content */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.875rem;
    color: #6b7280;
}

.faq-item.is-open .faq-content {
    max-height: 300px;
}

.faq-content p {
    padding-bottom: 1rem;
}
.policy-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem;
}

.policy-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.policy-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

.policy-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
}

.policy-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.policy-text a {
  text-decoration: underline;
}

.policy-table-wrapper {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 1.5rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.policy-table caption {
  text-align: left;
  padding: 0.75rem 1rem;
  color: #666;
}
.policy-table-caption{
    line-height: 3;
    padding: 17px;
}

.policy-table th,
.policy-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
  text-align: left;
}

.policy-table thead th {
  background: #fde68a;
  font-weight: 600;
}

.table-section th {
  background: #fff7ed;
  font-weight: 600;
}
