/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

/* Montserrat Regular - Global Font */
*,
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th,
input, textarea, select, button,
.navbar, .nav-link, .navbar-brand,
.btn, .form-control {
    font-family: 'Montserrat', sans-serif !important;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.my-6 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 10px;
    bottom: 100px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* ── Spinner inner: brand navy + gold ring ── */
#spinner .spinner-grow {
    display: none !important;
}

#spinner .bg-white {
    background: var(--headerbackground, #0d1b3e) !important;
}

/* Custom dual-ring loader */
#spinner .bg-white::before {
    content: '';
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid rgba(234,166,54,0.2);
    border-top-color: #EAA636;
    border-right-color: #EAA636;
    animation: pgr-spin 0.85s linear infinite;
    margin: auto;
}

#spinner .bg-white::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.1);
    border-bottom-color: #ffffff;
    animation: pgr-spin 0.65s linear infinite reverse;
    margin: -52px auto 0;
}

@@keyframes pgr-spin {
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════
   SECTION TITLES — Brand color combination
   Navy heading + Gold animated underline
══════════════════════════════════════════ */

/* ── Global section h2 ── */
.section-title-wrap {
    text-align: center;
    margin-bottom: 48px;
}

/* ── Label above title ── */
.section-label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #EAA636;
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: #EAA636;
    opacity: 0.6;
}

.section-label::before { right: 100%; margin-right: -18px; }
.section-label::after  { left:  100%; margin-left:  -18px; }

/* ── Main section title with gradient ── */
.section-main-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--headerbackground, #0d1b3e) 0%, #1e3a8a 60%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Gold word highlight span inside title */
.section-main-title .highlight {
    background: linear-gradient(135deg, #EAA636 0%, #f5c842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated gold underline bar */
.section-title-bar {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #EAA636, #f5c842);
    border-radius: 3px;
    margin: 12px auto 0;
    position: relative;
    overflow: hidden;
}

.section-title-bar::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.6);
    animation: bar-shimmer 2.2s ease-in-out infinite;
}

@@keyframes bar-shimmer {
    0%   { left: -100%; }
    50%  { left: 100%; }
    100% { left: 100%; }
}

/* ── Override existing .text-color h2 to use gradient ── */
h2.text-color,
h3.text-color {
    background: linear-gradient(135deg, var(--headerbackground, #0d1b3e) 0%, #1e3a8a 55%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
}

/* ── Animated underline dot ── */
.animated-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.animated-underline.full-width {
    display: inline-block;
    width: auto;
    min-width: 80px;
}

.animated-underline.full-width .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(234,166,54,0.15), rgba(234,166,54,0.4));
    border-radius: 3px;
    overflow: visible;
}

.animated-underline.full-width .dot {
    position: absolute;
    top: -3.5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #EAA636, #f5c842);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(234,166,54,0.6);
    animation: moveDotFull 2.5s ease-in-out infinite;
}

@@keyframes moveDotFull {
    0%   { left: 0; }
    50%  { left: calc(100% - 10px); }
    100% { left: 0; }
}

.text-color {
    color: var(--buttonbackground) !important;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: var(--buttontext) !important;
    background-color: var(--buttonbackground) !important;
    border-color: var(--buttonbackground) !important;
}

.btn.btn-primary:hover {
    color: white !important;
    background-color: #bc4200 !important;
    border-color: var(--headerbackground) !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 35px;
    height: 35px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: #ff6606;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--buttonbackground);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--buttonbackground);
}

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--headerbackground);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: unset;
        height: auto;
    }

    .header-carousel .owl-carousel-item img {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*    background: #FFFFFF;*/
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--buttonbackground) !important;
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--headerbackground) !important;
}

.page-header {
    margin-bottom: 4rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}




/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--buttonbackground) !important;
}

.product-item:hover * {
    color: var(--buttontext) !important;
}

.product-item:hover .border-primary {
    border-color: var(--buttontext) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--buttonbackground);
    color: var(--buttontext);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

/* .testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--buttonbackground) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--buttontext) !important;
} */

.testimonial-carousel .owl-nav {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 90px;
    width: 90px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--buttontext) !important;
    background: var(--buttonbackground) !important;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--headertext) !important;
    background: var(--headerbackground) !important;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--footertext) !important;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--footertext) !important;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
/*    color: var(--buttonbackground) !important;*/
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: var(--footerbackground) !important;
}

.copyright p {
    color: var(--footertext) !important;
}

.copyright a {
    color: white;
}

.copyright a:hover {
    color: var(--buttontext) !important;
}

.footer h4 {
    color: var(--footertext) !important;
}

.footer p {
    color: var(--footertext) !important;
}

.btn-outline-light {
    color: var(--buttontext) !important;
    border-color: var(--buttontext) !important;
}

.btn-outline-light:hover {
    color: var(--buttontext) !important;
    background-color: var(--buttonbackground) !important;
    border-color: var(--buttonbackground) !important;
}

.page-item.active .page-link {
    background-color: var(--buttonbackground) !important;
    border-color: var(--buttonbackground) !important;
    color: var(--buttontext) !important;
}

.page-link {
    position: relative;
    display: block;
    color: var(--buttonbackground) !important;
    background-color: var(--buttontext) !important;
    border: 1px solid var(--buttonbackground) !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Premium About Us Section Staggered Images (Unified) */
.premium-about-images-wrapper {
	position: relative;
	width: 100%;
	height: 480px; /* fixed height for alignment */
	margin: 0 auto;
}

.about-img-box {
	position: absolute;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img-box:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.img-box-top-left {
	top: 0px;
	left: 0px;
	width: 60%;
	height: 340px;
	z-index: 2;
}

.img-box-bottom-right {
	bottom: 0px;
	right: 0px;
	width: 60%;
	height: 340px;
	z-index: 4;
}

.about-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-rounded-tl {
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}

.img-rounded-br {
	border-top-left-radius: 100px;
	border-bottom-right-radius: 100px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border: 8px solid #ffffff; /* Creates distinct separation and overlap */
}

/* Dots patterns */
.about-dots {
	position: absolute;
	background-image: radial-gradient(#d1d1d1 2.5px, transparent 2.5px);
	background-size: 16px 16px;
	z-index: 1;
}

.dots-middle-right {
	top: 100px;
	right: -20px;
	width: 80px;
	height: 160px;
}

.dots-bottom-left {
	bottom: -20px;
	left: 120px;
	width: 120px;
	height: 80px;
}

/* Premium Typography for About Column */
.text-primary-dark {
	color: #0f224c !important;
}

.text-secondary-dark {
	color: #1e306e !important;
}

.about-gradient-title {
	color: #1b3673;
	background: linear-gradient(to right, #9bb2e1 0%, #1b3673 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

/* ════════════════════════════════════════════
   UNIFIED BUTTON SYSTEM — Home Page
   Border-radius: 50px (pill) across all CTAs
   Premium shimmer + lift animation
════════════════════════════════════════════ */

/* Shimmer keyframe */
@@keyframes btn-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Pulse ring keyframe */
@@keyframes btn-pulse-ring {
    0%   { box-shadow: 0 0 0 0   rgba(var(--btn-rgb, 234,166,54), 0.45); }
    70%  { box-shadow: 0 0 0 12px rgba(var(--btn-rgb, 234,166,54), 0); }
    100% { box-shadow: 0 0 0 0   rgba(var(--btn-rgb, 234,166,54), 0); }
}

/* ── Base override: all .btn.btn-primary on homepage ── */
.btn.btn-primary {
    border-radius: 50px !important;
    padding: 11px 32px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

/* Shimmer pseudo-element */
.btn.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.35) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn.btn-primary:hover::after {
    opacity: 1;
    animation: btn-shimmer 0.65s linear;
}

.btn.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.2) !important;
    background-color: var(--buttonbackground) !important;
    border-color: var(--buttonbackground) !important;
    color: var(--buttontext) !important;
}

/* ── Premium About Us button ── */
.btn-premium-about {
    color: var(--buttontext, #ffffff) !important;
    background-color: var(--buttonbackground) !important;
    border: 2px solid var(--buttonbackground) !important;
    padding: 11px 32px;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.03em;
    display: inline-block;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: btn-pulse-ring 2.5s ease-out infinite;
}

.btn-premium-about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.3) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-premium-about:hover::after {
    opacity: 1;
    animation: btn-shimmer 0.65s linear;
}

.btn-premium-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.22);
    color: var(--buttontext, #ffffff) !important;
}

/* ── Banner CTA button ── */
.premium-banner-carousel .banner-button {
    border-radius: 50px !important;
    position: relative;
    overflow: hidden;
    animation: btn-pulse-ring 2.8s ease-out infinite;
}

.premium-banner-carousel .banner-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.4) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.premium-banner-carousel .banner-button:hover::after {
    opacity: 1;
    animation: btn-shimmer 0.65s linear;
}

/* Responsive adjustment */
@media (max-width: 991px) {
	.premium-about-images-wrapper {
		height: 400px;
		max-width: 500px;
		margin-bottom: 40px;
	}
	.img-box-top-left {
		height: 280px;
	}
	.img-box-bottom-right {
		height: 280px;
	}
	.dots-middle-right {
		right: 0px;
	}
	.dots-bottom-left {
		left: 60px;
	}
}

/* Premium Banner Section Styles */
.premium-banner-wrapper {
    padding: 30px 40px 10px 40px;
    background-color: transparent;
}

.premium-banner-carousel {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.premium-banner-carousel .owl-carousel-item {
    position: relative;
    height: auto;
    overflow: hidden;
}

.premium-banner-carousel .owl-carousel-item img.banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.premium-banner-carousel .banner-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background: linear-gradient(135deg, rgba(5, 9, 24, 0.88) 0%, rgba(5, 9, 24, 0.5) 55%, rgba(5, 9, 24, 0.15) 100%);*/
    display: flex;
    align-items: center;
    padding: 0 10%;
    z-index: 5;
}

.premium-banner-carousel .banner-text-container {
    max-width: 700px;
    color: #ffffff;
}

.premium-banner-carousel .banner-heading {
    color: #ffffff !important;
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
    text-transform: none !important;
    font-family: 'Montserrat', 'Outfit', 'Inter', system-ui, -apple-system, sans-serif !important;
    text-shadow: 0 4px 25px rgba(0,0,0,0.4);
}

/* ── Logo-color combination: gold accent on first word ── */
.premium-banner-carousel .banner-heading .accent-gold {
    color: #EAA636 !important;
    font-weight: 900 !important;
    position: relative;
    display: inline-block;
}

/* Thin underline bar under gold word */
.premium-banner-carousel .banner-heading .accent-gold::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EAA636, #f5c842);
    border-radius: 2px;
}

/* Subtitle description */
.premium-banner-carousel .banner-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

/* Badges styling */
.premium-banner-carousel .banner-badge-group {
    margin-bottom: 24px;
}

.premium-banner-carousel .banner-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(234, 166, 54, 0.4);
    border-radius: 50px;
    padding: 6px 16px 6px 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.premium-banner-carousel .banner-brand-badge img {
    height: 24px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.premium-banner-carousel .banner-brand-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #EAA636;
    border-radius: 50%;
    flex-shrink: 0;
}

.premium-banner-carousel .banner-iso-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(234, 166, 54, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(234, 166, 54, 0.35);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #EAA636;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Hero primary action button */
.premium-banner-carousel .btn-hero-primary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #EAA636 0%, #f5b742 100%) !important;
    color: #0b0e14 !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    padding: 15px 35px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(234, 166, 86, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.premium-banner-carousel .btn-hero-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(234, 166, 86, 0.5) !important;
    filter: brightness(1.08);
}

/* Hero outline secondary button */
.premium-banner-carousel .btn-hero-outline {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    padding: 15px 35px !important;
    border-radius: 50px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.premium-banner-carousel .btn-hero-outline:hover {
    background-color: #ffffff !important;
    color: #111827 !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2) !important;
}

/* Responsive Adjustments for Premium Banner */
@media (max-width: 991px) {
    .premium-banner-wrapper {
        padding: 20px 20px 10px 20px;
    }
    .premium-banner-carousel {
        border-radius: 28px;
    }
    .premium-banner-carousel .owl-carousel-item {
        height: auto;
    }
    .premium-banner-carousel .banner-heading {
        font-size: 2.8rem !important;
    }
    .premium-banner-carousel .banner-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .premium-banner-wrapper {
        padding: 8px 8px 4px 8px;
    }
    .premium-banner-carousel {
        border-radius: 14px;
    }
    .premium-banner-carousel .owl-carousel-item {
        height: auto !important;
        min-height: unset !important;
    }
    .premium-banner-carousel .owl-carousel-item img.banner-img-mobile,
    .premium-banner-carousel .owl-carousel-item img.banner-img {
        height: auto !important;
        width: 100% !important;
        object-fit: contain !important;
        position: relative !important;
        display: block;
    }
    .premium-banner-carousel .banner-text-overlay {
        position: absolute;
        padding: 20px 18px;
        justify-content: flex-start;
        text-align: left;
        background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 100%);
    }
    .premium-banner-carousel .banner-heading {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }
    .premium-banner-carousel .banner-badge-group {
        justify-content: flex-start;
        margin-bottom: 10px;
    }
    .premium-banner-carousel .banner-button-group {
        justify-content: flex-start;
        width: 100%;
    }
    .premium-banner-carousel .btn-hero-primary,
    .premium-banner-carousel .btn-hero-outline {
        padding: 10px 22px !important;
        font-size: 0.85rem !important;
    }
}

/* ═══════════════════════════════════════════════════
   GLOBAL PAGE HEADER BANNER — Mobile Responsive Fix
   Applies to: Blog, Services, About, Brochures, Careers
   Details pages and all other pages using .page-header
═══════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .page-header {
        padding-top: 10rem !important;
        padding-bottom: 5rem !important;
        background-attachment: scroll !important;
        overflow: hidden;
    }

    .page-header .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding-top: 5rem !important;
        padding-bottom: 3rem !important;
        background-attachment: scroll !important;
        background-size: contain !important;
        background-color: #fff !important;
        min-height: 160px;
        overflow: hidden;
    }

    .page-header .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .page-header .breadcrumb {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding-top: 4rem !important;
        padding-bottom: 2rem !important;
        min-height: 130px;
        background-size: contain !important;
        background-color: #fff !important;
        overflow: hidden;
    }
}

/* ═══════════════════════════════════════════════════
   GLOBAL MOBILE SECTION SPACING
   Reduces excessive vertical padding on all sections
   for a tighter, cleaner mobile layout
═══════════════════════════════════════════════════ */
@media (max-width: 767px) {

    /* Reduce all major sections */
    section,
    .section,
    [class*="-section"] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* py-6 utility */
    .py-6 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Section headings */
    .display-6 {
        font-size: 1.4rem !important;
    }

    h2.display-6,
    .section h2 {
        font-size: 1.4rem !important;
        margin-bottom: 12px !important;
    }

    /* Section intro text */
    section p.text-muted,
    section .lead {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* mb-5 inside sections — tighten */
    section .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    /* Row gutters — reduce on mobile */
    section .row.g-5 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.5rem;
    }
    section .row.g-4 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 1rem;
    }

    /* Container padding */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 480px) {

    section,
    .section,
    [class*="-section"] {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .py-6 {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .display-6,
    h2.display-6 {
        font-size: 1.25rem !important;
    }

    .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}