html, body {
    background-color: var(--color-black); 
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.Navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent;
} 

/* ===========================
   🟣🟣🟣 HERO SECTION 🟣🟣🟣
   =========================== */
/* HERO CONTAINER */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* CONTENT OVERLAY */
.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 0 1.5rem;
}

/* TITLE */
.hero-title {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    margin-bottom: 1rem;
    margin-top: 6rem;
}

.hero-highlight {
    color: var(--color-orange);
}

/* TEXT */
.hero-text {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    max-width: 800px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* BUTTON */
.hero-button {
    display: inline-block;
    padding: 0.5rem 2.5rem;
    background-color: var(--color-orange);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    color: var(--color-white);
    text-decoration: none;
    margin-bottom: 8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* ==============================
   🟣🟣🟣 VALUES SECTION 🟣🟣🟣
   ============================== */
.values-section {
    background-color: var(--color-black);
    width: 100%;
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.values-container {
    width: 80%;
    max-width: 1400px;
    padding: 6rem 0 8rem;
    text-align: center;
}

/* TITLE */
.values-title {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    margin-bottom: 4rem;
}

/* GRID */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

/* CARD */
.value-card {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ICON */
.value-icon {
    width: 56px;
    height: 56px;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

/* CARD TITLE */
.value-title {
    color: var(--color-orange);
    font-family: var(--font-primary);
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
    margin-bottom: 1rem;
}

/* CARD TEXT */
.value-text {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    line-height: 1.6;
}

/* ================================
   🟣🟣🟣 SECTION CAROUSEL 🟣🟣🟣
   ================================ */
.carousel-item {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.testimonial-section {
    background-color: var(--color-black);
}

.testimonial-container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 8rem;
}

.testimonial-container.row {
    margin-left: 0;
    margin-right: 0;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    color: var(--color-white);
    padding-bottom: 4rem;
}

.testimonial-box {
    background-color: var(--color-gray);
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
}

.testimonial-header {
    justify-content: center;
    margin-bottom: 1rem;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-primary);
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
    color: var(--color-white);
}

.text-blue {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--p-size);
    font-weight: var(--p-weight);
}

.testimonial-text {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    margin-top: 1rem;
    text-align: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
    width: 3rem;
    height: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: url("../Media/Left.png");
}

.carousel-control-next-icon {
    background-image: url("../Media/Right.png");
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-wrapper {
    max-width: 80vw;
    margin: 0 auto;
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    opacity: 1;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
}

.carousel-control-prev {
    left: -2.5rem;
}

.carousel-control-next {
    right: -2.5rem;
}

.carousel-p {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    margin-top: 6rem;
    text-align: center;
}

/* BUTTON */
.carousel-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.sec-carousel-button {
    display: inline-block;
    padding: 0.5rem 2.5rem;
    background-color: var(--color-orange);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    color: var(--color-white);
    text-decoration: none;
    margin-bottom: 8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sec-carousel-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}