/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
    /* ===== COLORS ===== */
    --Dark: #000000;
    --Light: #ffffff;
    --Yellow: #f9b54c;
    --Teal: #4d757f;
    --Mustard: #be7320;
    --Color_Para: #868484;

    --LightGray: #f4f4f4;
    --DarkGray: #1a1a1a;

    /* ===== FONTS ===== */
    --Heading: Heading;
    --Paragraph: Paragraph;
    --Special_Text: Special_Text;
}

/* =====================================================
   FONT FACE
===================================================== */
@font-face {
    font-family: Nav;
    src: url("/Static/FONTS/Signika/static/Signika-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heading;
    src: url("/Static/FONTS/OpenSauceOne-ExtraBold.ttf");
    font-display: swap;
}

@font-face {
    font-family: Paragraph;
    src: url("/Static/FONTS/MacsansRegular-VG2YV.otf");
    font-display: swap;
}

@font-face {
    font-family: Special_Text;
    src: url("/Static/FONTS/Takota-7LRl.otf");
    font-display: swap;
}

/* =====================================================
   BASE STYLES
===================================================== */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    user-select: none;

    background: linear-gradient(90deg, var(--Dark), #0c0c0c);
    background-size: 100px;
    color: var(--Light);
}

/* =====================================================
   SCROLLBAR
===================================================== */
body::-webkit-scrollbar {
    width: 1vh;
}

body::-webkit-scrollbar-track {
    background: var(--Mustard);
}

body::-webkit-scrollbar-thumb {
    background: transparent;
    box-shadow: 0 0 0 100000vh var(--Dark);
    border-radius: 22px;
}

/* =====================================================
   GLOBAL RESPONSIVE FIX
===================================================== */
@media only screen and (max-width: 965px) {
    .TextGraphicHeader {
        flex-direction: column;
    }
}




/* =====================================================
   VIEW HEADING / LANDING PAGE BUSINESS STRATEGIES
===================================================== */

/* ======================
   MAIN BANNER WRAPPER
====================== */
.Heading-Banner {
    width: 100%;
    overflow: hidden;
    padding: 10% 0 0%;
}

.Heading-Banner-Content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21.875em, auto));
    /* 350px equivalent */
    grid-auto-flow: dense;
    grid-gap: 2.1875em;
    /* 35px equivalent */
    margin: 2% 10%;
}

/* ======================
   LEFT COLUMN CONTENT
====================== */
.Heading-Banner-Left {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
}

.Heading-Banner-Left-Heading {
    color: var(--Mustard);
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 3.125em;
    /* 50px equivalent */
    letter-spacing: 0.125em;
    /* 2px equivalent */
    font-family: var(--Heading);
}

.Heading-Banner-Left-Content {
    font-size: 1.5em;
    /* Para text slightly smaller than heading */
    color: var(--Color_Para);
    line-height: 1.2;
    margin-bottom: 5%;
    text-align: start;
    font-family: var(--Paragraph);
}

/* ======================
   RIGHT COLUMN CONTENT
====================== */
.Heading-Banner-Right {
    height: 80%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Heading-Banner-Right img {
    width: 100%;
    height: auto;
}

.Heading-Banner-Right-Phone {
    display: none;
}

/* ======================
   RESPONSIVE STYLES
====================== */

/* ≤ 2500px */
@media only screen and (max-width: 2500px) {
    .Heading-Banner-Left-Heading {
        font-size: 5.5em;
        margin-bottom: 2%;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.5em;
    }
}

/* ≤ 1450px */
@media only screen and (max-width: 1450px) {
    .Heading-Banner-Left-Heading {
        font-size: 4.7em;
        margin-bottom: 2%;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.5em;
    }
}

/* ≤ 1200px */
@media only screen and (max-width: 1200px) {
    .Heading-Banner-Content {
        grid-gap: 0;
        grid-template-columns: repeat(auto-fit, minmax(20em, auto));
        /* 320px equivalent */
    }

    .Heading-Banner-Right img {
        width: 100%;
    }

    .Heading-Banner-Right-Phone {
        display: flex !important;
        align-self: center;
    }

    .Heading-Banner-Right {
        display: none;
    }
}

/* ≤ 1050px */
@media only screen and (max-width: 1050px) {
    .Heading-Banner-Content {
        display: flex;
        flex-flow: column;
        margin: 10% 10%;
    }

    .Heading-Banner-Left {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .Heading-Banner-Left-Heading {
        font-size: 3.5em;
        line-height: 1.5em;
        text-align: center;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.3em;
        text-align: center;
    }

    .Heading-Banner-Left-Button {
        text-align: center;
    }
}

/* ≤ 820px */
@media only screen and (max-width: 820px) {
    .Heading-Banner-Left-Heading {
        font-size: 2.5em;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.2em;
        text-align: center;
    }

    .Heading-Banner-Left-Button {
        text-align: center;
    }

    .Heading-Banner-Content {
        margin: 15% 5%;
    }
}

/* ≤ 768px */
@media only screen and (max-width: 768px) {
    .Heading-Banner-Left-Heading {
        font-size: 2.5em;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.3em;
    }
}

/* ≤ 550px */
@media only screen and (max-width: 550px) {
    .Heading-Banner-Left-Heading {
        font-size: 2.5em;
    }

    .Heading-Banner-Left-Content {
        font-size: 1em;
    }

    .Heading-Banner-Left-Button {
        text-align: center;
    }

    .Heading-Banner-Content {
        margin: 15% 5%;
    }
}

/* ≤ 450px */
@media only screen and (max-width: 450px) {
    .Heading-Banner-Left-Heading {
        font-size: 2.5em;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.2em;
    }
}








/* =====================================================
   SERVICE ANALYTICS WITH POINTS – REFINED
===================================================== */

.Service_Analytics_withPoints_Section {
    padding: 3.5rem 1.5rem;
}

/* Grid */
.Service_Analytics_withPoints_Grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0% 10% 5%;
}

/* Card */
.Service_Analytics_withPoints_Card {
    background: var(--Light);
    border-radius: 0.9rem;
    padding: 5% 5%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Accent Borders */
.border-teal {
    border-top: 0.35rem solid var(--Teal);
}

.border-yellow {
    border-top: 0.35rem solid var(--Yellow);
}

/* Icon */
.Service_Analytics_withPoints_Icon {
    width: 4.2em;
    height: 4.2em;
    display: flex;
    align-items: center;
    padding: 2%;
}

.Service_Analytics_withPoints_Icon i {
    color: #000;
    font-size: 2em;
}

.Service_Analytics_withPoints_Icon img {
    width: 4.2em;
    height: 4.2em;
    height: auto;
}

/* Title */
.Service_Analytics_withPoints_Title {
    font-family: var(--Heading);
    font-size: 1.2em;
    letter-spacing: 0.08em;
    color: var(--Teal);
    margin: 0;
}

/* Description */
.Service_Analytics_withPoints_Description {
    font-family: var(--Paragraph);
    font-size: 1.1em;
    line-height: 1.35;
    color: var(--Teal);
    margin: 0;
}

/* List */
.Service_Analytics_withPoints_List {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0;
}

.Service_Analytics_withPoints_List li {
    font-family: var(--Paragraph);
    font-size: 1.3em;
    color: var(--Teal);

    margin-bottom: 0.35rem;
    position: relative;
    padding-left: 1rem;
}

.Service_Analytics_withPoints_List li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--Yellow);
}

/* ===============================
   TABLET & UP (iPad INCLUDED)
   — KEEP 2 COLUMNS
================================ */
@media (max-width: 1024px) {

    .Service_Analytics_withPoints_Grid {
        grid-template-columns: repeat(2, 1fr);
        /* force 2 cards */
        gap: 2.2rem;
        padding: 0 6%;
    }

    .Service_Analytics_withPoints_Card {
        padding: 2rem;
    }

    .Service_Analytics_withPoints_Title {
        font-size: 1.1em;
    }

    .Service_Analytics_withPoints_Description {
        font-size: 1.05em;
    }

    .Service_Analytics_withPoints_List li {
        font-size: 1.1em;
    }
}

/* ===============================
   MOBILE ONLY
   — 1 COLUMN
================================ */
@media (max-width: 600px) {

    .Service_Analytics_withPoints_Grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .Service_Analytics_withPoints_Card {
        padding: 1.6rem 1.3rem;
    }

    /* Icon scaling */
    .Service_Analytics_withPoints_Icon {
        width: 3.4em;
        height: 3.4em;
    }

    .Service_Analytics_withPoints_Icon img {
        width: 3.4em;
        height: auto;
    }

    /* Typography */
    .Service_Analytics_withPoints_Title {
        font-size: 1.05em;
        letter-spacing: 0.06em;
    }

    .Service_Analytics_withPoints_Description {
        font-size: 1em;
        line-height: 1.45;
    }

    .Service_Analytics_withPoints_List li {
        font-size: 1.05em;
    }
}










/* =====================================================
   SIXTH BOX – TEXT GRAPHIC (TYPE 2)
===================================================== */
.sixth-box {
    display: flex;
    flex-direction: row;
    padding: 5% 10%;
    overflow: hidden;
}

/* =====================================================
   INNER WRAPPER
===================================================== */
.sixth {
    display: flex;
    flex-direction: row;
    column-gap: 5%;
    margin-top: 30px;
}

/* =====================================================
   IMAGE SECTION
===================================================== */
.sixth-box-pic {
    position: relative;
    width: 50%;
    height: auto;
    padding-top: 50px;
}

.small-ball {
    position: absolute;
    top: 0;
    width: 60%;
    height: auto;
    z-index: -1;
}

.vector1 {
    position: relative;
}

.vector1>img {
    width: 100%;
    height: auto;
}

/* =====================================================
   CONTENT SECTION
===================================================== */
.combo {
    width: 50%;
    padding-top: 20px;
    position: relative;
}

.sixth-box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.sixth-box-heading {
    font-family: var(--Heading);
    font-size: 4em;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3% 2%;
}

.sixth-box-para {
    font-family: var(--Paragraph);
    font-size: 1.7em;
    color: var(--Color_Para);
    padding: 2%;
    position: relative;
}

/* Button Wrapper */
.a {
    padding: 2%;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Large Screens */
@media (max-width: 1500px) {
    .sixth-box-heading {
        font-size: 2.2em;
    }

    .sixth-box-para {
        font-size: 1.5em;
    }
}

/* Medium Screens */
@media (max-width: 1250px) {
    .sixth-box {
        padding: 2% 10%;
    }
}

@media (max-width: 1050px) {
    .sixth-box-heading {
        font-size: 2em;
    }

    .sixth-box-para {
        font-size: medium;
    }

    .small-ball {
        display: none;
        visibility: hidden;
    }
}

@media (max-width: 994px) {
    .sixth-box {
        padding: 5% 10% 10%;
    }

    .sixth {
        margin-top: 0;
    }

    .combo {
        padding-top: 10px;
    }
}

/* Tablet */
@media (max-width: 965px) {
    .sixth {
        flex-direction: column;
    }

    .sixth-box-pic,
    .combo {
        width: 100%;
    }

    .sixth-box-heading {
        font-size: 2.2em;
        text-align: center;
    }

    .sixth-box-para {
        font-size: 1.4em;
        text-align: center;
    }

    .a {
        display: flex;
        justify-content: center;
    }

    .button-6 {
        width: 250px;
        font-size: x-large;
        padding: 12px 20px;
        margin-left: auto;
        border: none;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .sixth {
        column-gap: 2%;
    }

    .sixth-box {
        padding: 10% 10% 20%;
    }
}

@media (max-width: 540px) {
    .sixth-box-heading {
        font-size: 1.2em;
        text-align: center;
    }

    .sixth-box-para {
        font-size: 1em;
        text-align: center;
    }

    .a {
        display: flex;
        justify-content: center;
    }

    .button-6 {
        width: 175px;
        font-size: 18px;
        padding: 12px 20px;
        margin-left: auto;
        border: none;
    }
}






/* =====================================================
   SEVENTH BOX – TEXT GRAPHIC (TYPE 1)
===================================================== */
.seventh-box {
    position: relative;
    padding: 5% 10%;
}

/* Decorative Element */
.flower-pot {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100px;
    height: auto;
    z-index: 2;
}

/* =====================================================
   INNER WRAPPER
===================================================== */
.seventh {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 5%;
}

/* =====================================================
   IMAGE SECTION
===================================================== */
.seventh-box-pic {
    width: 50%;
    height: auto;
    padding-top: 50px;
    align-self: center;
}

.vector2>img {
    width: 100%;
    height: auto;
}

/* =====================================================
   CONTENT SECTION
===================================================== */
.combo1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    align-self: center;
}

.b {
    padding: 2%;
}

.seventh-box-heading {
    font-family: var(--Heading);
    font-size: 4em;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 2%;
}

.seventh-box-para {
    font-family: var(--Paragraph);
    font-size: 1.7em;
    color: var(--Color_Para);
    padding: 2%;
}

/* =====================================================
   BUTTON
===================================================== */
.button-7 {
    width: 220px;
    padding: 12px 20px;
    margin-left: auto;
    font-size: 22px;
    color: #fff;
    background-color: var(--Mustard);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.button-7:hover {
    background-color: green;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Large Screens */
@media (max-width: 1500px) {
    .seventh-box-heading {
        font-size: 2.2em;
        font-weight: 900;
    }

    .seventh-box-para {
        font-size: 1.5em;
    }
}

/* Medium Screens */
@media (max-width: 1050px) {
    .seventh-box-heading {
        font-size: 2em;
        font-weight: 900;
    }

    .seventh-box-para {
        font-size: medium;
    }
}

/* Tablet */
@media (max-width: 994px) {
    .seventh {
        column-gap: 2%;
    }

    .combo1 {
        width: 45%;
    }
}

/* Stack Layout */
@media (max-width: 965px) {
    .seventh-box {
        padding: 10% 10% 15%;
    }

    .seventh {
        flex-direction: column-reverse;
    }

    .combo1,
    .seventh-box-pic {
        width: 100%;
    }

    .seventh-box-pic {
        padding-top: 0;
        margin-top: 0;
    }

    .seventh-box-heading {
        font-size: 2.2em;
        text-align: center;
        font-weight: 900;
    }

    .seventh-box-para {
        font-size: 1.4em;
        text-align: center;
    }

    .b {
        display: flex;
        justify-content: center;
    }

    .button-7 {
        width: 250px;
        font-size: x-large;
    }
}

/* Mobile */
@media (max-width: 630px) {
    .flower-pot {
        width: 75px;
        top: -49px;
    }
}

@media (max-width: 540px) {
    .seventh-box-heading {
        font-size: 1.2em;
        text-align: center;
        font-weight: 900;
    }

    .seventh-box-para {
        font-size: 1em;
        text-align: center;
    }

    .button-7 {
        width: 175px;
        font-size: 18px;
    }

    .b {
        text-align: center;
    }
}





/* =====================================================
   TEXT GRAPHIC BUTTONS
===================================================== */

.TextGraphic_Button_1 {
    position: relative;
    z-index: 1;

    outline: none;
    cursor: pointer;

    background: #000;
    color: #fff;

    border: 2px solid var(--Mustard);
    border-radius: 10px;

    padding: 2% 5%;
    font-weight: 600;
    font-family: var(--Paragraph);
    letter-spacing: 2px;

    transition: color 0.3s ease, transform 0.2s ease;
}

/* Glow Effect Layer */
.TextGraphic_Button_1::before {
    content: '';
    position: absolute;
    inset: -5px;

    background: linear-gradient(45deg, #270cf3, var(--Mustard));
    background-size: 400%;

    filter: blur(6px);
    border-radius: 10px;

    z-index: -2;
    opacity: 0;

    transition: opacity 0.4s ease-in-out;
    animation: glowing_1 15s linear infinite;

    pointer-events: none;
}

/* Button Background Layer */
.TextGraphic_Button_1::after {
    content: '';
    position: absolute;
    inset: 0;

    background: #000;
    border-radius: 10px;

    z-index: -1;
}

/* Hover State */
.TextGraphic_Button_1:hover::before {
    opacity: 1;
}

/* Active / Click State */
.TextGraphic_Button_1:active {
    color: #000;
    transform: scale(0.97);
}

.TextGraphic_Button_1:active::after {
    background: #fff;
}

/* Glow Animation */
@keyframes glowing_1 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media only screen and (max-width: 2000px) {
    .TextGraphic_Button_1 {
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 1024px) {
    .TextGraphic_Button_1 {
        font-size: 1em;
        padding: 2% 5%;
    }
}

@media only screen and (max-width: 650px) {
    .TextGraphic_Button_1 {
        padding: 5%;
    }
}







/* =====================================================
   BANNER HEADING COMPONENT
===================================================== */

/* ======================
   WRAPPER & CONTAINER
====================== */
.Banner-Heading-Social-Blog {
    padding: 10% 10% 5%;
}

.Banner-Heading-Container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* ======================
   LEFT & RIGHT COLUMNS
====================== */
.Banner-Heading-Left {
    width: 70%;
}

.Banner-Heading-Right {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* ======================
   HEADING & SUBTITLE
====================== */
.Banner-Heading-Main {
    font-size: 4em;
    font-weight: 900;
    font-family: var(--Heading);
}

.Banner-Heading-Sub {
    margin-top: 1em;
    font-size: 1.5em;
    color: var(--Color_Para);
    font-family: var(--Paragraph);
}

/* ======================
   BUTTONS
====================== */
.Banner-Heading-Buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.Banner-Heading-Button {
    background: var(--Button-Background);
    color: var(--Button-Color);
    font-family: var(--Button-Font);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.Banner-Heading-Button:hover {
    background: var(--Button-Hover-Background);
}

/* ======================
   BLOG BUTTON WITH GLOW
====================== */
.Blog_Button_1 {
    position: relative;
    z-index: 0;
    outline: none;
    color: #fff;
    background: #000;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid var(--Mustard);
    padding: 5%;
    font-weight: 600;
    width: 100% !important;
    font-family: var(--Paragraph);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.Blog_Button_1:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: linear-gradient(45deg, #270cf3, var(--Mustard));
    background-size: 400%;
    filter: blur(5px);
    z-index: -1;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: glowing_1 15s linear infinite;
}

.Blog_Button_1:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    border-radius: 10px;
    z-index: -1;
}

.Blog_Button_1:hover:before {
    opacity: 1;
}

.Blog_Button_1:active {
    color: #000;
}

.Blog_Button_1:active:after {
    background: #fff;
}

/* ======================
   ANIMATION
====================== */
@keyframes glowing_1 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* ======================
   RESPONSIVE STYLES
====================== */

/* ≤ 2000px */
@media (max-width: 2000px) {
    .Banner-Heading-Main {
        font-size: 3.5em;
    }

    .Blog_Button_1 {
        font-size: 1.5em;
    }
}

/* ≤ 1500px */
@media (max-width: 1500px) {
    .Banner-Heading-Main {
        font-size: 3em;
    }

    .Blog_Button_1 {
        font-size: 1.5em;
    }
}

/* ≤ 1250px */
@media (max-width: 1250px) {
    .Blog_Button_1 {
        font-size: 1.2em;
    }
}

/* ≤ 1200px */
@media (max-width: 1200px) {
    .Banner-Heading-Main {
        font-size: 2.5em;
    }

    .Banner-Heading-Sub {
        font-size: 1.2em;
    }
}

/* ≤ 1024px */
@media (max-width: 1024px) {
    .Banner-Heading-Container {
        flex-direction: column;
        text-align: center;
    }

    .Banner-Heading-Left,
    .Banner-Heading-Right {
        width: 100%;
    }

    .Banner-Heading-Main {
        font-size: 3.3em;
    }

    .Banner-Heading-Buttons {
        flex-direction: row;
    }

    .Blog_Button_1 {
        font-size: 1em;
        padding: 2%;
    }
}

/* ≤ 820px */
@media (max-width: 820px) {
    .Banner-Heading-Main {
        font-size: 3.3em;
    }

    .Banner-Heading-Sub {
        font-size: 1.2em;
    }
}

/* ≤ 768px */
@media (max-width: 768px) {
    .Banner-Heading-Main {
        font-size: 2.2em;
    }

    .Banner-Heading-Sub {
        font-size: 1.1em;
    }

    .Banner-Heading-Social-Blog {
        padding: 10% 10%;
    }
}

/* ≤ 550px */
@media (max-width: 550px) {
    .Banner-Heading-Main {
        font-size: 1.5em;
    }

    .Banner-Heading-Sub {
        font-size: 0.9em;
    }

    .Banner-Heading-Button {
        padding: 8px 15px;
    }

    .Blog_Button_1 {
        padding: 5%;
    }
}



/* =====================================================
   WORK CAROUSEL COMPONENT
===================================================== */

/* ======================
   UNIVERSAL WRAPPER
====================== */
.universal-carousel {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ======================
   CAROUSEL CONTAINER
====================== */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    margin: 5% auto;
    transition: transform 0.5s ease-in-out;
}

/* ======================
   CAROUSEL ITEMS
====================== */
.carousel-item {
    flex: 0 0 33.333%;
    max-width: 28.333%;
    border-radius: 15px;
    box-shadow: 0 0px 25px -5px rgba(245, 245, 245, 0.6);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: max-content;
}

.carousel-item.active {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* ======================
   CARD CONTENT
====================== */
.card__image {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.card__img,
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__data {
    padding: 1rem;
    text-align: center;
}

.card__name {
    font-size: 1.8rem;
    margin: 0.4em 0;
    color: var(--Light);
    letter-spacing: 2px;
    font-family: var(--Heading) !important;
    transition: color 0.3s ease;
}

.card__name:hover {
    color: var(--Mustard);
}

.card__description {
    font-size: 0.8rem;
    color: var(--Light);
    font-family: var(--Paragraph) !important;
}

/* ======================
   NAVIGATION BUTTONS
====================== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--Light), var(--Light));
    color: var(--Teal);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* ======================
   PAGINATION DOTS
====================== */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-pagination span {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-pagination .active {
    background: #4f46e5;
}

/* ======================
   RESPONSIVE BREAKPOINTS
====================== */

/* ≤ 1024px */
@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .card__name {
        font-size: 2.2rem;
    }

    .card__description {
        font-size: 1.4rem;
    }

    .carousel-btn {
        display: none;
        visibility: hidden;
    }
}

/* ≤ 999px */
@media (max-width: 999px) {
    .carousel-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ≤ 768px */
@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 65%;
        max-width: 65%;
    }

    .card__name {
        font-size: 2rem;
    }

    .card__description {
        font-size: 1.5rem;
    }
}

/* ≤ 576px */
@media (max-width: 576px) {
    .carousel-item {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .card__name {
        font-size: 1.2rem;
    }

    .card__description {
        font-size: 0.9rem;
    }
}