body {
    /*font-family: Verdana, Geneva, Tahoma, sans-serif;*/
    font-family: 'Roboto Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    overflow-x: hidden;
}

.SectionHero {
    margin-top: 0;
    position: relative;                /* for the overlay */
    width: 100vw;                      /* full viewport width */
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;                  /* ensure ::before is clipped */
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}



/* Overlay (fixed to SectionHero) */
.SectionHero::before {
    content: '';
    position: absolute;
    inset: 0;                          /* top:0; right:0; bottom:0; left:0 */
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

/* Headline */
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Sub-headline */
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}


.service-card {
    background: #fff;
    border: 1px solid rgba(108,117,125,.15); /* similar to slate-200 */
    border-radius: 1rem;                      /* ~ rounded-2xl */
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.04);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* Hover: lift + stronger shadow */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 .75rem 2rem rgba(0,0,0,.08);
    border-color: rgba(108,117,125,.25);
}

/* Image wrapper: fixed height like h-44 (~176px) */
.service-card__img {
    position: relative;
    height: 176px;            /* similar to Tailwind h-44 */
    overflow: hidden;
}

/* Image: cover + smooth zoom on hover */
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);      /* initial */
    transition: transform .6s ease;
}
.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

/* Body */
.service-card__body {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.25rem;         /* ~ p-5 */
}

/* Title/desc */
.service-card__title {
    font-size: 1.125rem;      /* ~ text-lg */
    font-weight: 600;         /* semibold */
    line-height: 1.25;
    margin: 0;
    color: #0b1526;           /* close to slate-900 */
}
.service-card__desc {
    margin: .25rem 0 0 0;
    color: #5f6b7a;           /* slate-600-ish */
    font-size: .95rem;        /* ~ text-sm */
    line-height: 1.6;
    flex: 1;                  /* push CTA down */
}

/* CTA button mimic */
.service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
}
.service-card__cta-icon {
    width: 1rem;
    height: 1rem;
    transition: transform .2s ease;
}
.service-card:hover .service-card__cta-icon {
    transform: translateX(2px);
}

/* Framer-Motion-like entrance animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.services-showcase .col {
    animation: fadeUp .45s ease forwards;
    opacity: 0; /* ensure hidden before anim */
}
/* Staggered delays per column order */
.services-showcase .col:nth-child(1) { animation-delay: .00s; }
.services-showcase .col:nth-child(2) { animation-delay: .08s; }
.services-showcase .col:nth-child(3) { animation-delay: .16s; }
.services-showcase .col:nth-child(4) { animation-delay: .24s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .services-showcase .col,
    .service-card,
    .service-card__img img,
    .service-card__cta-icon {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/*Our Team*/
.ProfileBox {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border: 1px solid #ddd;
}

.ProfileBox:hover {
    transform: translateY(-10px); /* Slight lift effect */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Add deeper shadow on hover */
}

.img-fluid {
    border-radius: 50%; /* Make the image a circle */
}

.SectionAboutUs h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.ProfileBox p {
    margin: 0.5rem 0;
}

.ProfileBox p.fw-bold {
    font-size: 1.2rem;
    color: #333;
}

.ProfileBox p.text-muted {
    font-size: 1rem;
    color: #777;
}

main.flex-grow-1 {
    padding-bottom: 6rem;  /* or whatever your footer’s height + gutter is */
}


/*BurgerMenu*/
.BurgerMenu {
    margin-right: 10px;
    cursor: pointer;
    font-size: 1.5rem;
}

.BurgerMenuModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    opacity: 0;
    justify-content: flex-start;
    align-items: stretch;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show overlay when visible */
.BurgerMenuModal.visible {
    opacity: 1;
    visibility: visible;
}

/* Sidebar background (menu) */
.BurgerMenuBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 35vw;
    max-width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    background-color: rgb(255, 255, 255);
    min-height: 100vh;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}


.BurgerMenuBackground .fa-angles-left {
    color: white;
    position: absolute;           /* take it out of the flow */
    right: -3rem;                 /* tweak the “stick-out” distance */
    top: 50%;
    transform: translateY(-50%);  /* vertical center relative to its own height */

    z-index: 1;               /* sit on top of the circle */
    cursor: pointer;          /* show it’s interactive */

    transition: color 0.3s ease;
}


/* 2) The halo using ::after, not ::before */
.BurgerMenuBackground .fa-angles-left::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 2em;                   /* circle diameter */
    height: 2em;
    background: rgba(255,255,255,0.8); /* adjust to taste */
    color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease-out;
    pointer-events: none;
    z-index: -1;                  /* behind the icon */
}

.BurgerMenuBackground .fa-angles-left:hover {
    color: #ffffff;
}

/* 3) Scale it on hover */
.BurgerMenuBackground .fa-angles-left:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Slide in when parent is visible */
.BurgerMenuModal.visible .BurgerMenuBackground {
    transform: translateX(0);
}

.BurgerExit {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    margin: 15px;
}
.BurgerExit i{
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.BurgerItems {
    font-size: 1.2rem;
    width: 100%;
    min-height: 88.5vh;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    /*padding: 1rem; per King Sanders orders, this has been removed 25/8/25*/ 
    color: black;
}

.TitleCenter
{
    margin-right: 1vw;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    height: 3rem;
    color: #000000;
    padding: 16px 16px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 50%;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: rgba(38, 39, 39, 0.17);
    color: #010109;
/*    padding-left: 20px;*/
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Add a deeper shadow */
}

/* Hover effects for buttons */
.service-btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.service-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-3px); /* Button lift effect */
}

/* Custom button styling */
.btn-lg {
    padding: 6px 12px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 999px;
}

.full-view {
    width: 100vw;                      /* full viewport width */
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
}


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

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.cta-button {
    background-color: #007bff;
    color: white;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 1.5rem;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #0056b3;
    outline: none;
}

:root{
    --slate-900: #000000; --slate-700:#334155; --slate-600:#475569; --slate-500:#64748b; --slate-50:#f8fafc;
    --blue-600:#2563eb; --emerald-600:#10b981; --rose-600:#f43f5e;
    --border: rgba(51,65,85,.4); /* slate-700 at ~40% */
}


/* Page background gradient like `bg-gradient-to-b from-white via-slate-50 to-white` */
.cv-page-bg{background-color:white;); color:var(--slate-700);}


/* Heading gradient text like the Tailwind demo */
.cv-gradient-text{background-color:black; -webkit-background-clip:text; background-clip:text; color:transparent;}


/* Card shell replicating rounded-2xl, border-slate-200/80, glassy bg + blur */
.cv-card{position:relative; border-radius:1rem; border:1px solid rgba(148,163,184,.8); /* slate-400/80 */
    background:rgba(255,255,255,.85); backdrop-filter:saturate(120%) blur(6px); -webkit-backdrop-filter:saturate(120%) blur(6px);
    padding:1.75rem; box-shadow:0 .25rem .75rem rgba(0,0,0,.05); transition:box-shadow .3s ease, transform .3s ease;
    /* IMPORTANT: allow the colored ring shadow to be visible */
    overflow: visible;}
.cv-card:hover{transform:translateY(-6px); box-shadow:0 .75rem 2rem rgba(0,0,0,.10);}


/* Accent ring like `group-hover:ring-4` with color variants */
.cv-ring{pointer-events:none; position:absolute; inset:0; border-radius:1rem; box-shadow:0 0 0 0 rgba(0,0,0,0); transition:box-shadow .25s ease;}
/* bumped alpha values so color is clearly visible */
.cv-card:hover .cv-ring-blue{ box-shadow:0 0 0 8px rgba(37,99,235,.22); } /* blue */
.cv-card:hover .cv-ring-emerald{ box-shadow:0 0 0 8px rgba(16,185,129,.20); } /* green */
.cv-card:hover .cv-ring-rose{ box-shadow:0 0 0 8px rgba(244,63,94,.20); } /* rose */


/* Icon badge (rounded-2xl with thin border) */
.cv-icon-badge{display:inline-flex; align-items:center; justify-content:center; border-radius:1rem; border:1px solid rgba(100,116,139,.35); background:#f8fafc; padding:.75rem; margin-bottom:1rem;}
.cv-icon-badge i{font-size:2rem; line-height:1;}
.cv-icon-blue{color:var(--blue-600);} .cv-icon-emerald{color:var(--emerald-600);} .cv-icon-rose{color:var(--rose-600);}


/* Title/desc hierarchy */
.cv-title{font-weight:700; font-size:1.25rem; letter-spacing:.01em; color:var(--slate-900); margin:0;}
.cv-desc{margin-top:.75rem; color:#475569; line-height:1.65;}


/* Learn more link + arrow nudge like group-hover:translate-x-0.5 */
.cv-link{display:inline-flex; align-items:center; gap:.5rem; font-weight:600; text-decoration:none; color:#334155;}
.cv-arrow{width:1rem; height:1rem; transform:translateX(0); transition:transform .2s ease;}
.cv-card:hover .cv-arrow{ transform:translateX(3px); }


/* Framer Motion-like staggered fade-up */
@keyframes cvFadeUp{from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:translateY(0);} }
.cv-stagger > .col{opacity:0; animation:cvFadeUp .5s ease forwards;}
.cv-stagger > .col:nth-child(1){animation-delay:0s;}
.cv-stagger > .col:nth-child(2){animation-delay:.08s;}
.cv-stagger > .col:nth-child(3){animation-delay:.16s;}


@media (prefers-reduced-motion:reduce){
    .cv-card, .cv-ring, .cv-stagger > .col{transition:none !important; animation:none !important; opacity:1 !important; transform:none !important;}
}
