:root {
    --primary-color: #ffffff;
    --accent-orange: #ff8c00;
    --bg-dark: #000000;
    --bg-grey: #333333;
    --text-light: #f4f4f4;
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--bg-dark);

    color: var(--primary-color);
    overflow-x: hidden;
    line-height: 1.6;
    /* Enable smooth scrolling for nav links natively */
    scroll-behavior: smooth;
}

/* Navbar Transition & Effects */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    z-index: 1100;
    backdrop-filter: blur(15px);

}


.navbar .logo-text,
.navbar .nav-link,
.navbar .social-icons a {
    color: #eceaea !important;
}


.navbar.scrolled {
    /* background: var(--bg-dark); */
    background-color: rgba(0, 0, 0, 0.8) !important;

    padding: 1.8rem 0;
    backdrop-filter: blur(45px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* border-bottom: 10px solid red; */
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link,
.navbar.scrolled .social-icons a {
    color: #ffffff !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--accent-orange) !important;

}

.navbar.scrolled .nav-link,
.navbar.scrolled .social-icons a {
    color: #ffffff !important;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-logo {
    height: 60px;
    /* Slightly larger to be safe */
    width: auto;
    display: block;
    /* vertical-align: middle;
    border: 2px solid red; */
    /* Debug border */
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .navbar-logo {
        height: 45px;
    }
}



.social-icons a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.social-icons a:hover {
    color: var(--accent-orange) !important;
    opacity: 1;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-orange) !important;
}

/* Hide Bootstrap Default Arrow */
.dropdown-toggle::after {
    display: none !important;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.4s ease;
    vertical-align: middle;
}







/* .nav-item.dropdown:hover .dropdown-arrow,
.nav-item.dropdown .dropdown-toggle.show .dropdown-arrow {
    transform: rotate(180deg);
} */

/* Smooth animation */
.dropdown-arrow {
    transition: transform 0.3s ease;
}

/* Desktop hover only */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Mobile & click behavior */
.dropdown-toggle.show .dropdown-arrow {
    transform: rotate(180deg);
}







/* Dropdown Menu Styling */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 17, 17, 0.1);
    border-radius: 1px;
    padding: 0;
    margin-top: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    border: none;
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        padding: 0 0 15px 20px !important;
        box-shadow: none !important;
        display: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;


    }

    .dropdown-menu.show {
        display: block !important;
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        margin-top: 0 !important;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.7) !important;
        border-bottom: none;
        padding: 10px 0;
    }
}

.dropdown-menu.show {
    max-height: 500px;
    padding: 1rem 0;
    margin-top: 10px !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}




.dropdown-item {
    color: #0b0b0b;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgb(226, 225, 225);

}

.dropdown-item:hover {
    background: var(--accent-orange);
    color: #000000;
    padding-left: 1.8rem;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop Hover Effect */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        max-height: 500px;
        padding: 1rem 0;
        margin-top: 0px !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        border: 1px solid rgba(255, 17, 17, 0.1);
    }

    .dropdown-menu {
        transform: translateY(20px);
    }

    .mega-menu:hover .mega-menu-content {
        max-height: 1200px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 20px;
        padding: 30px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 0px;
        margin-bottom: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .navbar-nav .nav-item {
        margin-bottom: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-nav .nav-link {
        padding: 15px 0 !important;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    /* Hide Bootstrap's default dropdown arrow ::after on mobile */
    .dropdown-toggle::after {
        display: none !important;
    }

    .dropdown-arrow {
        display: inline-block !important;
        transition: transform 0.3s ease;
    }
}



/* .mega-menu {
    position: static !important;
}

.mega-menu-content {
    width: 90vw;
    left: 5vw !important;
    right: 5vw !important;
    top: 90%;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 40px 40px 80px 40px !important;
}

.mega-menu-title {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.mega-menu-list li {
    margin-bottom: 12px;
}

.mega-menu-list a {
    color: #444 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.4;
}

.mega-menu-list a:hover {
    color: var(--accent-orange) !important;
    padding-left: 5px;
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important;
        position: relative;
        z-index: 2000;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .mega-menu-content {
        width: 100% !important;
        left: 0 !important;
        position: relative !important;
        top: 0 !important;
        background: rgba(0, 0, 0, 0.05) !important;
        backdrop-filter: none;
        border: none !important;
        padding: 20px !important;
        box-shadow: none;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }

    .mega-menu-list a {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .mega-menu.show .mega-menu-content {
        display: block;
    }

    .mega-menu-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .mega-menu .dropdown-toggle::after {
        display: inline-block !important;
    }
} */

.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    /* z-index: 100; */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
   
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

/* Hero Slider Typography & Layout */
.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 5;
    opacity: 1;
}

#heroCarousel {
    position: relative;
    z-index: 1;
    background: transparent;
}


/* .carousel-item.active .hero-content {
    animation: smoothFadeUp 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes smoothFadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
} */

.max-w-600 {
    max-width: 600px;
}

.ls-2 {
    letter-spacing: 2px;
}

.display-2 {
    font-weight: 600 !important;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    word-break: keep-all;
    font-size: clamp(3.2rem, 10vw, 6.5rem);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--accent-orange);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

.carousel-indicators {
    position: static !important;
    /* 🔑 THIS */
    margin: 0;
    justify-content: flex-start;
    /* or center / end */
    gap: 15px;
}


.carousel-indicators button {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    transition: background 0.3s ease;
}

/* .carousel-indicators button.active {
    background: var(--accent-orange);
    height: 100% !important;
} */


.carousel-controls {
    z-index: 100 !important;
    pointer-events: none;
    /* Let clicks through the container... */
}


.carousel-controls button,
.carousel-indicators button {
    pointer-events: auto;
}


.carousel-indicators,
.carousel-nav-buttons {
    pointer-events: auto;
    /* ...but capture them on the actual controls */
}

/* Carousel Navigation Buttons */
.carousel-control-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-control-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.1);
}

.carousel-control-btn i {
    font-size: 0.9rem;
}

/* Smoother Carousel Fade */
.carousel-fade .carousel-item {
    transition-duration: 1.5s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s 0s;
}




@media (max-width: 768px) {
    .carousel-controls {
        display: none !important;
    }
}








/* Sticky Parallax Core */
.sticky-parallax-item {
    position: relative;
    min-height: 100vh;
    height: auto;
    width: 100%;
    overflow: hidden;
    clip-path: inset(0);
}

.sticky-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;

}

.sticky-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%);
}

/* Scroll-Driven Entrance Animations */
@keyframes slide-in-left {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-up-zoom {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* .animate-on-scroll-left,
.animate-on-scroll-right,
.parallax-entrance-animation {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.animate-on-scroll-left {
    transform: translateX(-100px);
}

.animate-on-scroll-right {
    transform: translateX(100px);
}

.parallax-entrance-animation {
    transform: translateY(50px) scale(0.9);
} */




@supports (animation-timeline: view()) {
    .animate-on-scroll-left {
        animation: slide-in-left linear both;
        animation-timeline: view();
        animation-range: entry 10% cover 40%;
    }

    .animate-on-scroll-right {
        animation: slide-in-right linear both;
        animation-timeline: view();
        animation-range: entry 10% cover 40%;
    }

    /* .parallax-entrance-animation {
        animation: fade-up-zoom linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 50%;
    } */
}

/* Services Grid Styles */
.services-section {
    padding: 100px 0;
    background: var(--bg-dark);
    overflow-x: clip;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent-orange);
    background: #111;
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.sticky-content {
    position: relative;
    min-height: 100vh;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 100px 0;
}

.fw-black {
    font-weight: 900;
}

h1.display-1 {
    font-size: clamp(2.5rem, 12vw, 6.5rem);
    text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Services Grid Styles */
.services-section {
    padding: 100px 0;
    background: var(--bg-dark);
    /* border: 2px solid red; */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent-orange);
    background: #111;
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}





/* Elite Team Section Styles */
.team-section {
    padding: clamp(30px, 10vw, 80px) 0;
    background: #000;
    /* border: 2px solid red; */
}

.team-header-box {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 25px;
    background: #111;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-socials-overlay {
    position: absolute;
    top: 20px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.4s ease;
}

.team-card:hover .team-socials-overlay {
    right: 20px;
}

.team-social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.team-social-icon:hover {
    color: #fff;
}

.team-info {
    text-align: left;
}

.team-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.team-role {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.more-team-link {
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.more-team-link:hover {
    border-color: var(--accent-orange);
}

.more-team-link i {
    transition: transform 0.3s ease;
}

.more-team-link:hover i {
    transform: translateX(8px);
}











/* Spacer Sections */
.spacer {
    position: relative;
    padding: 120px 0;
    background-color: #ffffff;
    color: #0f172a;
    z-index: 20;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.spacer.bg-dark {
    background-color: var(--bg-dark);
    color: #ffffff;
}

/* Pure CSS Reveal Animations */
@keyframes reveal-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-text,
.img-reveal {
    /* Modern CSS Scroll-Driven Animation */
    animation: reveal-in linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
}

/* Elite Orange Parallax Styles */
.cinematic-bg::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.cinematic-text-box {
    max-width: 900px;
    padding: 2rem;
    z-index: 20;
}

.cinematic-subhead {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 2rem !important;
}

.cinematic-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--primary-color);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 2.5rem !important;
}

.cinematic-description {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 3rem !important;
}

.cinematic-cta-elite {
    font-size: clamp(0.8rem, 2vw, 1.5rem);
    letter-spacing: 3px;
    padding: 1.2rem 3.5rem;
    border: 2px solid var(--accent-orange);
    color: var(--primary-color) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    background: transparent;
}

.cinematic-cta-elite:hover {
    background: var(--accent-orange);
    color: #000 !important;
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 140, 0, 0.25);
}

.cinematic-cta-elite i {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
}

.cinematic-cta-elite:hover i {
    transform: translateX(10px);
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 120px 0;
    background: #000;
}

.testimonial-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    /* Minimalist radius */
    height: 100%;
    transition: all 0.4s ease;
    text-align: left;
}

.testimonial-card:hover {
    border-color: var(--accent-orange);
    background: #111;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.author-img {
    width: 60px !important;
    /* Owl override */
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.85rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-stars {
    color: var(--accent-orange);
    font-size: 0.9rem;
    display: flex;
    gap: 5px;
}

/* Owl Dots Customization */
.testimonials-carousel .owl-dots {
    margin-top: 50px !important;
    text-align: center;
}

.testimonials-carousel .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    margin: 5px 8px !important;
}

.testimonials-carousel .owl-dot.active span {
    background: var(--accent-orange) !important;
    width: 25px !important;
    /* Pill style for active dot */
}

footer {
    position: relative;
    z-index: 50;
    background: black;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .spacer {
        padding: 80px 0;
    }

    .cinematic-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .cinematic-subhead {
        font-size: 0.8rem;
        letter-spacing: 6px;
    }
}

/* Enhanced Footer Styles */
.footer-section {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange, #ff8c00);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: white;
    color: black;
    border-color: white;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}





.navbar-toggler:focus,
.navbar-toggler:active,
.nav-link:focus,
.dropdown-toggle:focus,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}


