:root {
    /* Primary colors */
    --primary-dark: #0B2641;
    --accent: #6C63FF;
    --light-bg: #F7F9FC;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --border-light: #E5E7EB;

    /* Variables for other designs */
    --white: #ffffff;
    --dark: #0b1120;
    --muted: #64748b;
    --black: #000000;

    /* Accent colors */
    --accent-1: #6a5af9;
    --accent-2: #7c6cf6;
    --accent-3: #4f46e5;

    /* Brand colors */
    --brand-gold: #ffc107;
    --brand-black: #000000;
    --brand-white: #ffffff;
    --brand-text-dark: #000000;
    --brand-text-light: #ffffff;
    --text-light: var(--brand-text-light);

    /* Spacing & Radius */
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-xl: 22px;

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 20px 45px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
    --shadow-md: 0 15px 30px rgba(15, 23, 42, 0.08);

    /* Transitions */
    --transition: all 0.35s ease;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);

    /* Gradients */
    --gradient-gold-white: linear-gradient(135deg, #ffc107 0%, #ffffff 100%);
    --gradient-black-gold: linear-gradient(135deg, #000000 0%, #ffc107 100%);
    --gradient-gold-black: linear-gradient(135deg, #ffc107 0%, #000000 100%);
    --gradient-main: linear-gradient(
        135deg,
        var(--accent-1),
        var(--accent-2),
        var(--accent-3)
    );
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Century Gothic', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Century Gothic', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    width: 100%;
    overflow-x: clip;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary {
    display: inline-block;
    background: var(--brand-gold);
    color: var(--brand-black);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e0aa00;
}

.btn-secondary {
    color: var(--brand-white);
    text-decoration: none;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 999px;
    text-decoration: none;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   BREADCRUMB
   Reusable breadcrumb styles for service pages
   ========================================================= */
.breadcrumb {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-muted);
}
.breadcrumb .container {
    display: flex;
    align-items: center;
}
.breadcrumb a {
    color: var(--accent-3);
    text-decoration: none;
    font-weight: 600;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    color: var(--text-muted);
    font-weight: 600;
}

/* =========================================================
   SERVICES GRID & CARDS
   Reusable styles for the Services overview grid
   ========================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 24px;
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 600px) {
    .services-grid {
        gap: 1rem;
    }
    .service-card {
        padding: 16px;
    }
}
