/* Base Styles */
:root {
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --red-100: #fee2e2;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --amber-100: #fef3c7;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --lred: #f85c70;

    --blob-c0: rgba(96, 165, 250, 0.6);
    --blob-c1: rgba(37, 99, 235, 0.3);

    --green-bs-01: rgba(34, 197, 94, 0.1);
    --green-bs-02: rgba(34, 197, 94, 0.2);
    --green-bs-03: rgba(34, 197, 94, 0.3);
    --purple-bs-01: rgba(168, 85, 247, 0.1);
    --purple-bs-02: rgba(168, 85, 247, 0.2);
    --purple-bs-03: rgba(168, 85, 247, 0.3);
    --red-bs-01: rgba(239, 68, 68, 0.1);
    --red-bs-02: rgba(239, 68, 68, 0.2);
    --red-bs-03: rgba(239, 68, 68, 0.3);
    --orange-bs-01: rgba(249, 115, 22, 0.1);
    --orange-bs-02: rgba(249, 115, 22, 0.2);
    --orange-bs-03: rgba(249, 115, 22, 0.3);

    --case-study-box-shadow: 0 4px 6px -1px #0000001a,
        0 2px 4px -1px #0000000f;
    --case-study-box-shadow-hover: 0 10px 15px -3px #0000001a,
        0 4px 6px -2px #0000000d;
    --case-study-title-background-color: var(--page-400);
	--case-study-results-list-li-before-background-color: var(--page-500);
	--feature-icon-background-color: var(--page-bs-01);
	--feature-icon-color: var(--page-600);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.case-study {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--case-study-box-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
	transform: translateY(-5px);
	box-shadow: var(--case-study-box-shadow-hover);
}

.case-study-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 1rem 1.5rem;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    background-color: var(--case-study-title-background-color);
    padding: 1rem 1.5rem;
}

.case-study-description {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
}

.case-study-results {
    background-color: var(--slate-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.case-study-results-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.case-study-results-list {
    list-style-type: none;
}

.case-study-results-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-600);
}

.case-study-results-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--case-study-results-list-li-before-background-color);
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--blue-400);
}

a:hover {
    color: #4870ae;
}

.nav a {
    color: inherit;
}

.link {
    color: #7aa2e1;
}

.link:hover {
    color: #4870ae;
}

.service-icon::after {
    background-repeat: no-repeat !important;
    background-position: center !important;
    content: ' ';
    display: block;
    width: 32px;
    height: 32px;
}

.service-icon.digital-forensic::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
}

.service-icon.incident-response::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
}

.service-icon.ai-security::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3Cpath d='M21 12c-1 0-3-1-3-3s2-3 3-3 3 1 3 3-2 3-3 3'/%3E%3Cpath d='M3 12c1 0 3-1 3-3s-2-3-3-3-3 1-3 3 2 3 3 3'/%3E%3Cpath d='M12 3c0 1-1 3-3 3s-3-2-3-3 1-3 3-3 3 2 3 3'/%3E%3Cpath d='M12 21c0-1 1-3 3-3s3 2 3 3-1 3-3 3-3-2-3-3'/%3E%3C/svg%3E");
}

.service-icon.cloud-security-assessment::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z'%3E%3C/path%3E%3C/svg%3E");
}

.service-icon.server-penetration-testing::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/rect%3E%3Crect x='2' y='2' width='20' height='8' rx='2' ry='2'%3E%3C/rect%3E%3Crect x='2' y='14' width='20' height='8' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='6' y1='6' x2='6.01' y2='6'%3E%3C/line%3E%3Cline x1='6' y1='18' x2='6.01' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.service-icon.web-and-mobile-testing::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='3' y1='9' x2='21' y2='9'%3E%3C/line%3E%3Cline x1='9' y1='21' x2='9' y2='9'%3E%3C/line%3E%3C/svg%3E");
}

.service-icon.vulnerability-scanning::after {
    background-image: url("data:image/svg+xml,%3Csvg class='w-6 h-6 text-gray-800 dark:text-white' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='white' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M9 7V2.221a2 2 0 0 0-.5.365L4.586 6.5a2 2 0 0 0-.365.5H9Zm2 0V2h7a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9h5a2 2 0 0 0 2-2Zm.5 5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm0 5c.47 0 .917-.092 1.326-.26l1.967 1.967a1 1 0 0 0 1.414-1.414l-1.817-1.818A3.5 3.5 0 1 0 11.5 17Z' clip-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
}

.service-icon.red-team::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='ml-1'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10'%3E%3C/path%3E%3Cpath d='m14.5 9-5 5'%3E%3C/path%3E%3Cpath d='m9.5 9 5 5'%3E%3C/path%3E%3C/svg%3E");
}

.service-icon.security-code-review::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'%3E%3C/polyline%3E%3Cpolyline points='8 6 2 12 8 18'%3E%3C/polyline%3E%3C/svg%3E");
}

.service-icon.security-risk-assessment::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.service-icon.ot-penetration-testing::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'%3E%3C/path%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'%3E%3C/path%3E%3C/svg%3E");
}

.service-icon.global-training::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

.learn-more {
    background-repeat: no-repeat !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: 100% 50%;
    transition: all 0.3s ease;
    animation: arrow-bouncing 1.8s infinite;
    font-weight: bold;
}

@keyframes arrow-bouncing {
    0% {
        background-position-x: 100%;
    }
    30%, 60% {
        background-position-x: 80%;
    }
}

.learn-more:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234870ae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

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

body {
    font-family: "Inter", sans-serif;
    color: #0f172a;
    line-height: 1.5;
    overflow-x: hidden;
}

ul {
    margin-bottom: 15px;
}

li {
    margin-left: 1.5rem;
}

ul.nav-list {
    margin-bottom: initial;
    height: 64px;
}

ul.nav-list li {
    margin-left: initial;
    align-content: center;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.bg-slate-100 {
    background-color: var(--slate-100);
}

.border {
    border: 1px solid;
}

.border-slate-200 {
    border-color: var(--slate-400);
}

.rounded-lg {
    border-radius: .5rem;
}

.rounded-xl {
    border-radius: calc(.5rem + 4px);
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 17px;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: var(--blue-500);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2),
        0 2px 4px -1px rgba(59, 130, 246, 0.1);
}

.btn-primary:hover {
    background-color: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3),
        0 4px 6px -2px rgba(59, 130, 246, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--slate-900) !important;
    border: 1px solid var(--slate-300);
}

.btn-outline:hover {
    background-color: var(--slate-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1),
        0 2px 4px -1px rgba(15, 23, 42, 0.06);
}

.btn-green {
    background-color: var(--green-500);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 6px -1px var(--green-bs-02),
        0 2px 4px -1px var(--green-bs-01);
}

.btn-green:hover {
    background-color: var(--green-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px var(--green-bs-03),
        0 4px 6px -2px var(--green-bs-02);
}

.btn-purple {
    background-color: var(--purple-500);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 6px -1px var(--purple-bs-02),
        0 2px 4px -1px var(--purple-bs-01);
}

.btn-purple:hover {
    background-color: var(--purple-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px var(--purple-bs-03),
        0 4px 6px -2px var(--purple-bs-02);
}


.btn-red {
    background-color: var(--red-500);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 6px -1px var(--red-bs-02),
        0 2px 4px -1px var(--red-bs-01);
}

.btn-red:hover {
    background-color: var(--red-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px var(--red-bs-03),
        0 4px 6px -2px var(--red-bs-02);
}

.btn-orange {
    background-color: var(--orange-500);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 6px -1px var(--orange-bs-02),
        0 2px 4px -1px var(--orange-bs-01);
}
    
.btn-orange:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px var(--orange-bs-03),
        0 4px 6px -2px var(--orange-bs-02);
}

.btn-amber {
    background-color: var(--amber-500);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2),
        0 2px 4px -1px rgba(245, 158, 11, 0.1);
}

.btn-amber:hover {
    background-color: var(--amber-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3),
        0 4px 6px -2px rgba(245, 158, 11, 0.2);
}

.btn-page {
    background-color: var(--page-500);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 6px -1px var(--page-bs-02),
        0 2px 4px -1px var(--page-bs-01);
}

.btn-page:hover {
    background-color: var(--page-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px var(--page-bs-03),
        0 4px 6px -2px var(--page-bs-02);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

/* Layout */
.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.self-center {
    align-self: center
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.ma-auto {
    margin: auto;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

/* Components */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.header-inner {
    height: 4rem;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--slate-900);
}

.logo img {
    height: 64px;
    width: auto;
}

.page-header {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cmVjdCBmaWxsPSIjMUQyOTNBIiB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjgiLz48Y2lyY2xlIHN0cm9rZT0iIzYwQTVGQSIgc3Ryb2tlLXdpZHRoPSIyIiBvcGFjaXR5PSIuMSIgY3g9IjcyMCIgY3k9IjM4NCIgcj0iMTI5Ii8+PGNpcmNsZSBzdHJva2U9IiM2MEE1RkEiIHN0cm9rZS13aWR0aD0iMiIgb3BhY2l0eT0iLjA1IiBjeD0iNzIwIiBjeT0iMzg0IiByPSIyNTgiLz48Y2lyY2xlIHN0cm9rZT0iIzYwQTVGQSIgc3Ryb2tlLXdpZHRoPSIyIiBvcGFjaXR5PSIuMDI1IiBjeD0iNzIwIiBjeT0iMzg0IiByPSIzODciLz48Y2lyY2xlIHN0cm9rZT0iIzYwQTVGQSIgc3Ryb2tlLXdpZHRoPSIyIiBvcGFjaXR5PSIuMDEyNSIgY3g9IjcyMCIgY3k9IjM4NCIgcj0iNTE2Ii8+PC9nPjwvc3ZnPg==");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--slate-300);
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: var(--blue-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--blue-300);
}

.breadcrumbs-separator {
    color: var(--slate-400);
}

.breadcrumbs-long-text {
	display: -webkit-box;
	--breadcrumbs-line-clamp: 1;
	max-height: calc(var(--breadcrumbs-line-clamp) * 1.8rem);
	line-clamp: var(--breadcrumbs-line-clamp);
	-webkit-line-clamp: var(--breadcrumbs-line-clamp);
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge-blue {
    background-color: var(--slate-800);
    color: var(--blue-400);
}

.badge-green {
    background-color: var(--slate-800);
    color: var(--green-400);
}

.badge-purple {
    background-color: var(--slate-800);
    color: var(--purple-400);
}

.badge-red {
    background-color: var(--slate-800);
    color: var(--red-400);
}
  
.badge-orange {
    background-color: var(--slate-800);
    color: var(--orange-400);
}

.badge-amber {
    background-color: var(--slate-800);
    color: var(--amber-400);
}

.badge-lred {
    background-color: #45181e;
    color: var(--lred);
}

.badge-slate {
    background-color: var(--slate-200);
    color: var(--slate-700);
}

.section {
    padding: 4rem 0;
    position: relative;
}

.section:nth-of-type(odd) {
    background-color: var(--slate-200);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--slate-500);
    max-width: 36rem;
    margin: 0 auto;
}

.footer {
    background-color: var(--slate-900);
    color: var(--slate-300);
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-heading {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-link {
    display: block;
    color: var(--slate-300) !important;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--blue-500) !important;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-contact-icon {
    color: var(--blue-400);
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--slate-800);
    font-size: 0.875rem;
}

.footer-bottom .footer-link {
    padding: 2px 8px;
    border-left: 2px solid #8c8c8c;
}

.footer-bottom .footer-link:first-child {
    border: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--slate-300);
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--blue-400);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.blob-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        var(--blob-c0),
        var(--blob-c1)
    );
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        var(--blob-c0),
        var(--blob-c1)
    );
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.pulse {
    animation: pulse 2s infinite;
}


.faq-item {
    border-bottom: 1px solid var(--slate-200);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--purple-700);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--page-500);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    color: var(--slate-600);
    background: #a1a1a127;
}

.faq-item.active .faq-answer {
    display: block;
}

.pagination {
    margin-top: .5rem;
    margin-bottom: .5rem;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.justify-content-end {
    justify-content: flex-end;
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}

.page-link {
    padding: .375rem .75rem;
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: all .15s ease;
}

li.page-item {
    margin-left: 0;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.page-link:hover {
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Custom Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 970px) {
    .nav {
        display: none;
    }

    .header-buttons {
        display: none;
    }
	
	.timeline::after {
		left: 31px;
	}
	
	.timeline-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}
	
	.timeline-item::after {
		left: 18px;
	}
	
	.timeline-right {
		left: 0%;
	}
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:flex-row {
        flex-direction: row;
    }
}

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

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
