    :root {
        --heading-font: "Raleway", sans-serif;
    }

    /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
    :root {
        --background-color: #ffffff;
        /* Background color for the entire website, including individual sections */
        --default-color: #444444;
        /* Default color used for the majority of the text content across the entire website */
        --heading-color: #5f687b;
        /* Color for headings, subheadings and title throughout the website */
        --accent-color: #10bc69;
        /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
        --accent-color: var(--secondary-color);
        /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
        --surface-color: #ffffff;
        /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
        --contrast-color: #ffffff;
        /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    }

    .g-4,
    .gy-4 {
        --bs-gutter-y: 1.5rem !important;
    }

    /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

    .light-background {
        --background-color: #f9f9f9;
        --surface-color: #ffffff;
    }

    /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: var(--heading-color);
        font-family: var(--heading-font);
    }

    /* Pulsating Play Button
  ------------------------------*/
    .pulsating-play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
        border-radius: 50%;
        display: block;
        position: relative;
        overflow: hidden;
    }

    .pulsating-play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-play-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .pulsating-play-btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .pulsating-play-btn:hover:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

    .pulsating-play-btn:hover:after {
        border-left: 15px solid var(--accent-color);
        transform: scale(20);
    }

    @keyframes pulsate-play-btn {
        0% {
            transform: scale(0.6, 0.6);
            opacity: 1;
        }

        100% {
            transform: scale(1, 1);
            opacity: 0;
        }
    }

    /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
    section,
    .section {
        color: var(--default-color);
        background-color: var(--background-color);
        padding: 60px 0;
        scroll-margin-top: 100px;
        overflow: clip;
    }

    @media (max-width: 1199px) {

        section,
        .section {
            scroll-margin-top: 66px;
        }
    }

    /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
    .section-title {
        text-align: center;
        padding: 30px 0;
        margin-bottom: 30px;
        position: relative;
    }

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 0;
        position: relative;
        z-index: 2;
    }

    .section-title span {
        position: absolute;
        top: 4px;
        color: color-mix(in srgb, var(--heading-color), transparent 95%);
        left: 0;
        right: 0;
        z-index: 1;
        font-weight: 700;
        font-size: 52px;
        text-transform: uppercase;
        line-height: 1;
    }

    .section-title p {
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }

    @media (max-width: 575px) {
        .section-title h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .section-title span {
            font-size: 38px;
        }
    }

    /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
    .about .content h3 {
        font-size: 1.75rem;
        font-weight: 700;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

    .about .content ul li {
        padding: 10px 0 0 0;
        display: flex;
    }

    .about .content ul i {
        color: var(--accent-color);
        margin-right: 0.5rem;
        line-height: 1.2;
        font-size: 1.25rem;
    }

    .about .content p:last-child {
        margin-bottom: 0;
    }

    .about .pulsating-play-btn {
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
    }

    /*--------------------------------------------------------------
  # Stats Section
  --------------------------------------------------------------*/
    .stats {
        padding-top: 0;
    }

    .stats .stats-item {
        padding: 30px;
        width: 100%;
    }

    .stats .stats-item span {
        font-size: 48px;
        display: block;
        color: var(--accent-color);
        font-weight: 700;
    }

    .stats .stats-item p {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        padding: 0;
        margin: 0;
        font-family: var(--heading-font);
        font-size: 15px;
        font-weight: 600;
    }

    /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
    .services .service-item {
        background-color: var(--surface-color);
        text-align: center;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        padding: 80px 20px;
        transition: border ease-in-out 0.3s;
        height: 100%;
    }

    .services .service-item .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: var(--accent-color);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.3s;
    }

    .services .service-item .icon i {
        color: var(--contrast-color);
        font-size: 28px;
        transition: ease-in-out 0.3s;
    }

    .services .service-item h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: 0.3s;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .service-item:hover {
        border-color: var(--accent-color);
    }

    .services .service-item:hover h3 {
        color: var(--accent-color);
    }

    /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        box-sizing: content-box;
        min-height: 320px;
    }

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50%;
        margin: -40px 0 0 40px;
        position: relative;
        z-index: 2;
        border: 6px solid var(--background-color);
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 45px;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0 0 0 45px;
    }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 0 15px 0 15px;
        padding: 20px 20px 60px 20px;
        background: color-mix(in srgb, var(--default-color), transparent 97%);
        position: relative;
        border-radius: 6px;
        position: relative;
        z-index: 1;
    }

    .testimonials .swiper-wrapper {
        height: auto;
    }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: var(--background-color);
        opacity: 1;
        border: 1px solid var(--accent-color);
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

    .testimonials .testimonial-item .stars {
        margin: 0 0 0 45px;
    }

    .testimonials .testimonial-item .stars i {
        color: #ffc107;
        margin: 0 1px;
    }

    /*--------------------------------------------------------------
  # Team Section
  --------------------------------------------------------------*/
    .team .member {
        position: relative;
    }

    .team .member .pic {
        overflow: hidden;
        margin-bottom: 50px;
    }

    .team .member .member-info {
        background-color: var(--surface-color);
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        bottom: -50px;
        left: 20px;
        right: 20px;
        padding: 20px 15px;
        overflow: hidden;
        transition: 0.5s;
    }

    .team .member h4 {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 16px;
        position: relative;
        padding-bottom: 10px;
    }

    .team .member h4::after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 1px;
        background: color-mix(in srgb, var(--default-color), transparent 60%);
        bottom: 0;
        left: 0;
    }

    .team .member span {
        font-style: italic;
        display: block;
        font-size: 13px;
    }

    .team .member .social {
        position: absolute;
        right: 15px;
        bottom: 15px;
    }

    .team .member .social a {
        transition: color 0.3s;
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

    .team .member .social a:hover {
        color: var(--accent-color);
    }

    .team .member .social i {
        font-size: 16px;
        margin: 0 2px;
    }