@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/v3/AvenirNextLTPro-Medium.eot');
    src: url('../fonts/v3/AvenirNextLTPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/v3/AvenirNextLTPro-Medium.woff2') format('woff2'),
        url('../fonts/v3/AvenirNextLTPro-Medium.woff') format('woff'),
        url('../fonts/v3/AvenirNextLTPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/v3/AvenirNextLTPro-Regular.eot');
    src: url('../fonts/v3/AvenirNextLTPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/v3/AvenirNextLTPro-Regular.woff2') format('woff2'),
        url('../fonts/v3/AvenirNextLTPro-Regular.woff') format('woff'),
        url('../fonts/v3/AvenirNextLTPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/v3/AvenirNextLTPro-Bold.eot');
    src: url('../fonts/v3/AvenirNextLTPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/v3/AvenirNextLTPro-Bold.woff2') format('woff2'),
        url('../fonts/v3/AvenirNextLTPro-Bold.woff') format('woff'),
        url('../fonts/v3/AvenirNextLTPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?c7301e929fe13301ec3d4c58cd4386c9');
    src: url('../fonts/icomoon.eot?c7301e929fe13301ec3d4c58cd4386c9?#iefixrarl3t') format("embedded-opentype"), url('../fonts/icomoon.woff?d179be69901e40b8a9f0e301aec319a3') format("woff"), url('../fonts/icomoon.ttf?2fcbce3d6dfd9947789d7a1bac1f5042') format("truetype"), url('../fonts/icomoon.svg?657b22f9e5c40e6857c9639cc7a7ab9e#icomoon') format("svg");
    font-weight: normal;
    font-style: normal;
}


/* Root Variables */
:root {
    --primary-dark: #23225d;
    --secondary-dark: #17164d;
    --text-light: #9d9cb7;
    --gold: #d5a22a;
    --gold-dark: #9e6a00;
    --gray: #6a6a6a;
    --gray-dark: #2b2b2b;
    --blue: #0d93c8;
    --blue-dark: #0b5876;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir Next LT Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
}

body.home-page {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
ul,
ul li { list-style: none; }

/* Top Bar */
.top-bar {
    background-color: var(--secondary-dark);
    padding: 8px 0;
}

.top-bar .small-text {
    font-size: 14px;
    color: var(--text-light);
}

.top-bar i {
    color: var(--text-light);
    font-size: 14px;
}

/* Main Navigation */
.main-nav {
    background-color: var(--primary-dark);
    padding: 0.8rem 0;
    box-shadow: none !important;
    z-index: 1000;
}

.main-nav .logo {
    height: 82px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-nav .logo:hover {
    transform: scale(1.05);
}

.main-nav .nav-link {
    color: #fff !important;
    font-size: 18px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 80%;
}

.main-nav .nav-link:hover {
    color: var(--gold) !important;
}
.main-nav .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.btn-booking {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(153, 153, 153, 0.09) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #fff;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.btn-booking:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Hero Section - Restructured */
.hero-v3-section {
    position: relative;
    background-color: var(--primary-dark);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0 100px 0px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(35, 34, 93, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.brand-logo-header {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo-header:hover {
    transform: scale(1.1);
}

.booking-category-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.booking-category-card:hover {
    transform: translateY(-10px);
}

.category-image-collage img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.booking-bands-logo {
    height: 100px;
    width: auto;
}

.btn-hero {
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    color: #fff;
    transition: all 0.3s ease;
    min-width: 170px;
    border: 0px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-gold {
    background: linear-gradient(270deg, var(--gold) 0%, var(--gold-dark) 100%); 
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 8px 25px rgba(255, 185, 0, 0.35), 0 0 40px rgba(255, 185, 0, 0.25);
}

.btn-gold:hover {
    background: linear-gradient(270deg, var(--gold-dark) 0%, var(--gold) 100%); transform: translateY(-2px); box-shadow:
        0 0 0 1px rgba(255,255,255,0.08), 0 12px 35px rgba(255, 185, 0, 0.5), 0 0 55px rgba(255, 185, 0, 0.4);
}

.btn-gray {
    background: linear-gradient(270deg, var(--gray) 0%, var(--gray-dark) 100%); box-shadow:  0 0 0 1px rgba(255,255,255,0.05), 0 8px 25px rgba(120,130,255,0.25), 0 0 40px rgba(120,130,255,0.18);
}

.btn-gray:hover {
    background: linear-gradient(270deg, var(--gray-dark) 0%, var(--gray) 100%); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 12px 35px rgba(120,130,255,0.4), 0 0 55px rgba(120,130,255,0.3);
}

.btn-blue {
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%); box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 8px 25px rgba(0,200,255,0.35), 0 0 40px rgba(0,200,255,0.25);
}

.btn-blue:hover {
    background: linear-gradient(270deg, var(--blue-dark) 0%, var(--blue) 100%); transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 12px 35px rgba(0,200,255,0.5), 0 0 55px rgba(0,200,255,0.4);
}

/* Client Logos Section */
.client-logos {
    background: #000000;
    padding: 40px 0;
    margin-top: -30px;
    border-radius: 30px 30px 0px 0px;
    position: relative;
    z-index: 1;
}

.client-text {
    color: #fff;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 500;
}

.client-logo {
/*    height: 34px;*/
    width: auto;
/*    opacity: 0.8;*/
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Nopac Brands Section */
.nopac-brands-section {
    background-color: #000;
    position: relative;
}

.section-title, .section-title2 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1.35px;
}
.section-title2{font-size: 34px;}

.brand-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    max-width: 885px;
    margin: 0 auto 20px;
}

.sub-title {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}

/* Talent Cards */
.talent-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(153, 153, 153, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.talent-brand-logo {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

.talent-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.talent-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.talent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.talent-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.talent-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.talent-item span {
    color: #fff;
    font-size: 20px;
    flex: 1;
    text-align: left;
}

/* News Section */
.news-section {
    background-color: #1B1B1B;
    border-radius: 30px 30px 0px 0px;
    padding-bottom: 80px !important;
}

.news-card {
    background-color: #fff;
    border-radius: 23px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    margin-bottom: 10px;
}

.news-title {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-description {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 1.5;
}

/* Primary CTA Section */
.primary-cta-section {
    background: rgb(212,184,041);
    border-radius: 30px 30px 0px 0px;
    margin-top: -30px;
    padding: 30px 0 60px;
    width: 100%;
    clear: both;
}

.cta-heading {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

.btn-primary-cta {
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: #000;
}

/* Services Section */
.services-section {
    background-color: #000;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 10px;
}

.services-list a {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.services-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
    display: inline-block;
    transition: all 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #000;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 36px;
}

.testimonials-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: #f7e6c9;
    color: #b8781e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.testimonials-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 12px 0 10px;
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
}

.testimonials-shell {
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding: 26px;
    border-radius: 26px;
    background: linear-gradient( 180deg, #23225d 0%, #23225d 45%, #15143a 75%, #0c0c1f 100% );
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.testimonials-main {
    flex: 1 1 70%;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.testimonials-main .swiper {
    width: 100%;
}

.testimonial-panel {
    padding: 6px 6px 0;
}

.testimonial-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #e5c17b;
    margin-bottom: 14px;
}

.testimonial-quote {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 22px;
}
.testimonial-quote a { text-decoration: underline; padding-left: 5px; text-underline-offset: 4px; text-decoration-thickness: 2px;}

.testimonial-author-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.testimonial-author-name a {
    color: #fff;
    text-decoration: none;
}

.testimonial-author-name a:hover {
    color: #f2d7a6;
}

.testimonial-author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 4px 0 0;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.testimonials-nav .swiper-button-next,
.testimonials-nav .swiper-button-prev {
    position: static;
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.testimonials-nav .swiper-button-next:hover,
.testimonials-nav .swiper-button-prev:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.testimonials-nav .swiper-button-next::after,
.testimonials-nav .swiper-button-prev::after {
    font-size: 14px;
    color: #fff;
}

.testimonials-nav .swiper-pagination {
    position: static;
    width: 130px !important;
}

.testimonials-nav .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 1;
    margin: 0 4px !important;
    transition: transform 0.2s ease, background 0.2s ease;
    left: 0px !important;
}

.testimonials-nav .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

.testimonials-next {
    flex: 0 0 300px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonials-next-title {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.testimonials-next-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px;
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease;
    width: 100%;
    text-align: left;
}

.testimonials-next-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
}

.testimonials-next-card.is-active {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.next-card-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px;
}

.next-card-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

/* Complete Footer Redesign */
.main-footer {
    position: relative;
    background-color: #000;
    overflow: hidden;
    margin-top: -30px;
    border-radius: 30px 30px 0px 0px;
    width: 100%;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.footer-bg,
.footer-bg-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.footer-bg-mobile{display: none;}

.footer-bg {
    bottom: 0;
}

.footer-bg-2 {
    top: 0;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.footer-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.contact-item-footer i {
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.contact-item-footer a:hover {
    color: var(--gold);
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-subscribe-form .input-group {
    display: flex;
    gap: 8px;
}

.footer-subscribe-form .form-control {
    border-radius: 50px !important;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 1);
    color: #949494;
}

.footer-subscribe-form .form-control::placeholder {
    color: #949494;
}

.footer-subscribe-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(213, 162, 42, 0.25);
    color: #fff;
}

.btn-footer-subscribe {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(153, 153, 153, 0.09) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px !important;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-footer-subscribe:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.footer-disclaimer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 10px 0 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

.footer-bottom {
    padding-top: 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-v3-section {
        min-height: 600px;
        padding: 40px 0;
    }

    .section-title {
        font-size: 35px;
    }

    .sub-title {
        font-size: 28px;
    }

    .cta-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .testimonials-title {
        font-size: 34px;
    }

    .navbar-collapse {
        background-color: rgba(35, 34, 93, 0.95);
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
    }

    .footer-legal-links {
        justify-content: center;
        margin-top: 20px;
    }

    .testimonials-shell {
        flex-direction: column;
    }

    .testimonials-next {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-left: 0;
        padding-top: 16px;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .hero-v3-section {
        min-height: auto;
        padding: 30px 0;
    }
    .hero-brands-top .row {
        justify-content: center !important;
    }

    .booking-category-card {
        margin-bottom: 20px;
    }

    .category-image-collage img {
        max-width: 100%;
    }

    .booking-bands-logo {
        height: 45px;
    }

    .btn-hero {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .hero-cta-buttons .row {
        margin: 0;
    }

    .client-logos {
        padding: 15px 0;
    }

    .client-logos .row {
        flex-direction: column;
        gap: 15px;
    }

    .client-text {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .client-logo {
        height: 35px;
        margin: 5px;
    }

    .nopac-brands-section {
        padding: 40px 0 !important;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px !important;
    }

    .brand-text {
        font-size: 15px;
        padding: 0 15px;
    }

    .talent-card {
        margin-bottom: 20px;
    }

    .talent-brand-logo {
        height: 50px;
    }

    .talent-card-title {
        font-size: 18px;
    }

    .news-card {
        margin-bottom: 20px;
    }

    .cta-heading {
        font-size: 20px;
        text-align: center;
        margin-bottom: 15px;
    }

    .btn-primary-cta {
        width: 100%;
        font-size: 18px;
        padding: 15px 30px;
    }

    .services-section {
        padding: 40px 0 !important;
    }

    .services-list {
        margin-bottom: 30px;
    }

    .services-list li {
        text-align: center;
    }
    .section-title2{font-size: 24px; text-align: center;}
    .speakers-logo{width: 100%; text-align: center; margin-top: 1rem !important;}

    .testimonials-section {
        padding: 40px 0 !important;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 18px !important;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .testimonials-shell {
        padding: 18px;
    }

    .testimonials-nav {
        justify-content: flex-center;
    }
    .testimonials-nav .swiper-pagination {
        display: none;
    }

    .footer-top {
        padding: 40px 0 !important;
        text-align: center;
    }
    .footer-contact-info{align-items: center;}

    .footer-logo {
        height: 60px;
        margin-bottom: 15px;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 20px 0 !important;
    }

    .footer-copyright {
        font-size: 13px;
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 15px;
    }

    .footer-legal-links a {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .px-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .top-bar {
        padding: 6px 0;
    }

    .top-bar .small-text {
        font-size: 12px;
    }

    .top-bar .row > div {
        text-align: center;
        padding: 5px 10px;
    }

    /* .top-bar .row > div:last-child {
        margin-top: 8px;
    } */

    .top-bar .d-flex {
        gap: 5px !important;
        justify-content: space-between;
    }

    .main-nav {
        padding: 0.75rem 0;
    }

    .main-nav .container-fluid {
        padding: 0 15px !important;
    }

    .main-nav .logo {
        height: 60px;
    }

    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.1rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0.15) 100%);
        border: 0px;
        border-radius: 30px;
    }

    .nav-link {
        font-size: 16px !important;
        padding: 0.75rem 0 !important;
    }

    .btn-booking {
        width: 100%;
        /* margin-top: 15px; */
    }

    .hero-v3-section {
        padding: 20px 0;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-brands-top {
        margin-bottom: 20px !important;
    }

    .brand-logo-header {
        height: auto;
        margin-bottom: 15px;
    }

    .booking-bands-logo {
        height: 80px;
    }

    .btn-hero {
        font-size: 16px;
        padding: 10px 20px;
    }

    .client-logos {
        padding: 12px 0;
    }

    .client-text {
        font-size: 14px;
    }

    .client-logo {
        height: 34px;
    }

    .section-title {
        font-size: 22px;
    }

    .sub-title {
        text-align: center;
    }

    .brand-text {
        font-size: 14px;
    }

    .talent-brand-logo {
        height: 45px;
    }

    .talent-card-title {
        font-size: 16px;
    }

    .talent-item span {
        font-size: 16px;
    }

    .talent-avatar {
        width: 40px;
        height: 40px;
    }

    .news-image {
        height: 180px;
    }

    .news-title {
        font-size: 17px;
    }

    .news-description {
        font-size: 14px;
    }

    .cta-heading {
        font-size: 26px;
    }

    .btn-primary-cta {
        font-size: 16px;
        padding: 12px 25px;
    }

    .services-list a {
        text-align: center;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    .testimonials-badge {
        font-size: 11px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonials-next {
        gap: 10px;
    }

    .footer-logo {
        height: 55px;
    }


    .footer-newsletter-text {
        font-size: 13px;
    }

    .footer-subscribe-form .form-control {
        font-size: 14px;
        padding: 10px 18px;
        width: auto;
    }

    .btn-footer-subscribe {
        width: 100%;
        font-size: 14px;
        padding: 10px 20px;
    }

    .footer-disclaimer-text {
        font-size: 12px;
    }

    .footer-subscribe-form .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-legal-links a {
        font-size: 12px;
    }
    .footer-contact-info{align-items: center;}
    .footer-bg-mobile{display: block;}
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    .section-title {
        font-size: 20px;
    }

    .sub-title {
        font-size: 18px;
    }

    .brand-text {
        font-size: 13px;
    }

    .btn-hero {
        font-size: 15px;
        padding: 9px 18px;
    }

    .talent-card {
        padding: 20px;
    }

    .cta-heading {
        font-size: 16px;
    }

    .btn-primary-cta {
        font-size: 15px;
    }

    .testimonials-title {
        font-size: 20px;
    }
    .footer-contact-info{align-items: center;}
}
.g-6, .gx-6 {
    --bs-gutter-x: 5rem;
}

.testimonial-section {
  padding-top: 82px;
  padding-bottom: 72px;
}

.swiper-button-next, .swiper-button-prev{ width: 52px;  height: 52px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0.15) 100%);}
.swiper-button-next:after, .swiper-button-prev:after{font-size: 24px;}
.home-blogimg img { margin-top: 25px; border-radius: 10% }
.navbar-expand-lg .navbar-collapse { justify-content: end; }
.navbar-expand-lg .navbar-nav { gap: 15px }
.btn-booking { margin-left: 15px }
.talent-item a { display: flex; align-items: center; }
.talent-item a span { padding-left: 10px; }



.right-col ul { padding-left: 0px }
.right-col .error,
.form-steps .fields-group .error { color: #F95454 }
.banner-list-buttons { flex-direction: column; display: flex; justify-content: space-between; align-items: center; }
#testimonials.testimonials-section .swiper { position: inherit; }
.testimonial-arrowsblocks { width: 170px; float: right; position: relative; margin-top: 50px;}
/* #testimonials.testimonials-section .swiper-button-next,
#testimonials.testimonials-section .swiper-button-prev { top: 17%; left: inherit; }
#testimonials.testimonials-section .swiper-button-prev { right: 19.5% }
#testimonials.testimonials-section .swiper-button-next { right: 16% } */

.btn-booking.top-btn-booking { background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(153, 153, 153, 0.19) 100%); padding: 2px 16px; border-radius: 20px;}
.top-bar .btn-call-direct .small-text { color: #17164D; }

.btn-call-direct {
    background: linear-gradient( 180deg, rgba(255,255,255,0.95) 0%, rgba(245,245,245,0.85) 100% );
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 30px;
    color: #fff;
    padding: 2px 16px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.btn-call-direct:hover {
    background: linear-gradient( 180deg, rgba(255,255,255,0.95) 0%, rgba(245,245,245,0.85) 100% );
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: #17164D;
}
.btn-booking.top-btn-booking .small-text { color: #fff;}

.client-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.client-text {
    white-space: nowrap;
    color: #fff;
    font-weight: 600;
}

.client-logo-swiper {
    flex: 1;
    min-width: 0;
}

.client-logo {
    max-height: 45px;
    width: auto;
}
.talent-brand-logo.bb-talent-brand-logo { height: 80px; margin-top: -15px; margin-bottom: 10px !important;}
.booking-category-card {
    transition: 0.4s ease;
}
.booking-categories:has(.booking-category-card-sba:hover) + .hero-cta-buttons .col-lg-4:first-child a { background: linear-gradient(270deg, var(--gold-dark) 0%, var(--gold) 100%);transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 12px 35px rgba(255, 185, 0, 0.5), 0 0 55px rgba(255, 185, 0, 0.4); }
.booking-categories:has(.booking-category-card-bb:hover) + .hero-cta-buttons .col-lg-4:nth-child(2) a { background: linear-gradient(270deg, var(--gray-dark) 0%, var(--gray) 100%); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 12px 35px rgba(120,130,255,0.4), 0 0 55px rgba(120,130,255,0.3); }
.booking-categories:has(.booking-category-card-as:hover) + .hero-cta-buttons .col-lg-4:nth-child(3) a { background: linear-gradient(270deg, var(--blue-dark) 0%, var(--blue) 100%); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 12px 35px rgba(0,200,255,0.5), 0 0 55px rgba(0,200,255,0.4); }
#testimonials .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic { transform: inherit;}
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev { transform: scale(1);}
.sticky-top.sticky-logo .logo { height: 60px;}
#testimonials .testimonials-nav .swiper-pagination-bullet-active { transform: scale(1.2); }

@media (min-width: 1025px) {
    .flex-center { display: flex; justify-content: center;}
    .flex-end { display: flex; justify-content: end;}
}
#bookings .align-items-center.speakers-logo { justify-content: center; margin-bottom: 3rem !important; }
#bookings .align-items-center .col-auto { padding-left: 3rem; padding-right: 3rem;}