:root {

    --primary-color: #000000;
    --primary-hover-color: #ffffff;
    --secondary-color: #E28D3F;
    --secondary-light-color: #939393;
    --background-color: #1C1C1D;
    --border-color: #dddddd;


    --c-navy: #050B2D;
    --c-navy-deep: #030717;
    --c-navy-rgb: 5, 11, 45;
    --c-purple: #4A148C;
    --c-purple-light: #7B2FCF;
    --c-purple-rgb: 74, 20, 140;
    --c-gold: #D4AF37;
    --c-gold-soft: #F1D889;
    --c-gold-rgb: 212, 175, 55;
    --c-white: #FFFFFF;

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(212, 175, 55, 0.32);

    --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-slide: 900ms;
    --hero-h: 70vh;

    /* Header / navigation motion + sizing */
    --header-h-desktop: 96px;
    --header-h-scrolled: 76px;
    --header-h-mobile: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 200ms var(--ease);
    --transition-medium: 350ms var(--ease);
    --transition-slow: 500ms var(--ease);
}


@media (min-width: 601px) {
    :root {
        --hero-h: 80vh;
    }
}

@media (min-width: 1025px) {
    :root {
        --hero-h: 100vh;
    }
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    color: var(--primary-hover-color);
    background: var(--c-navy-deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* guarantees no horizontal scroll */
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-hover-color);
}

a {
    color: var(--primary-hover-color);
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--secondary-color);
}

p {
    margin: 0 0 10px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

svg {
    fill: currentColor;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visible, accessible focus state for keyboard users */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}




/* --------------------------------------------------------------------
   4. SCROLL-TO-TOP
-------------------------------------------------------------------- */
.scrollToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 5px;
    font-size: 22px;
    line-height: 50px;
    text-align: center;
    z-index: 999;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
}

.scrollToTop:hover,
.scrollToTop:focus {
    background: var(--primary-color);
    color: var(--primary-hover-color);
}

@media (max-width: 991px) {
    .scrollToTop {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}

/* --------------------------------------------------------------------
   5. BUTTONS
-------------------------------------------------------------------- */
.btn {
    font-size: 14px;
    transition: all 0.5s ease-in-out;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.btn-default,
.btn-info,
.btn-primary {
    color: var(--primary-color);
    text-shadow: none;
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-hover-color);
    border-radius: 0;
    padding: 13px 20px;
    line-height: 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    box-shadow: none;
    outline: none;
    transition: all 0.5s ease-in-out;
}

.btn-primary a {
    transition: all 0.5s ease-in-out;
    color: var(--primary-color);
}

.btn-primary:focus a,
.btn-primary:hover a {
    color: var(--primary-hover-color);
}

.btn-default:hover,
.btn-info:hover,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.btn-primary:active:focus {
    border-color: var(--primary-hover-color);
    background: var(--primary-color);
    color: var(--primary-hover-color);
    box-shadow: none;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 17px 15px;
    border: none;
    line-height: 1;
    border-radius: 0;
}

.btn,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn--gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--c-gold-soft), var(--c-gold) 60%, #9c7a1f);
    color: var(--c-navy-deep);
    box-shadow: 0 10px 30px rgba(var(--c-gold-rgb), 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn--gold:hover,
.btn--gold:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(var(--c-gold-rgb), 0.5);
    filter: brightness(1.05);
    color: var(--c-navy-deep);
}

.btn--small {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
}

.btn--large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.btn--primary {
    background: linear-gradient(135deg, var(--c-gold-soft), var(--c-gold) 60%, #B8912B);
    color: var(--c-navy-deep);
    box-shadow: 0 10px 30px rgba(212, 175, 55, .35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, .5);
}

.btn--ghost {
    color: var(--c-white);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .35);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    transform: translateY(-3px);
    background: rgba(212, 175, 55, .15);
    border-color: var(--c-gold);
    color: var(--c-gold-soft);
}


		/* =========================================================
   HEADER — separate section, never overlaps hero
========================================================= */
		.site-header {
			position: sticky;
			top: 0;
			z-index: 1000;
			width: 100%;
			background: var(--color-bg);
			border-bottom: 1px solid transparent;
			transition: box-shadow var(--dur-med) var(--ease-premium),
				border-color var(--dur-med) var(--ease-premium);
		}

		.site-header.is-scrolled {
			box-shadow: var(--shadow-scrolled);
			border-bottom-color: var(--color-hairline);
		}

		.header-inner {
			max-width: var(--container-max);
			margin: 0 auto;
			height: var(--header-h);
			padding-inline: var(--gutter);
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: clamp(16px, 3vw, 40px);
			transition: height var(--dur-med) var(--ease-premium);
		}

		.site-header.is-scrolled .header-inner {
			height: var(--header-h-scrolled);
		}


		/* =========================================================
   BREAKPOINTS
========================================================= */

		/* Tablets / iPad and below → collapse to hamburger */
		@media (max-width: 1024px) {
			.main-nav {
				display: none;
			}

			.hamburger {
				display: flex;
			}

			.call-btn-text {
				display: none;
			}

			.call-btn {
				padding: 11px;
			}

			.call-btn-icon {
				width: 34px;
				height: 34px;
			}
		}

		/* Small phones (iPhone SE etc.) */
		@media (max-width: 380px) {
			.header-inner {
				padding-inline: 16px;
			}

			.mobile-nav,
			.mobile-menu-header {
				padding-inline: 20px;
			}
		}

		/* Ultra-wide screens: keep content from over-stretching */
		@media (min-width: 1800px) {
			:root {
				--container-max: 1520px;
			}
		}

		/* Reduced motion */
		@media (prefers-reduced-motion: reduce) {

			*,
			*::before,
			*::after {
				animation-duration: 0.001ms !important;
				transition-duration: 0.001ms !important;
			}

			html {
				scroll-behavior: auto;
			}
		}



/* -----
Services
----- */
.service {
    text-align: left;
    background: var(--secondary-color);
    color: var(--primary-hover-color);
    padding: 0;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}
.service:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

/* image block */
.themability-service-images {
    position: relative;
    background: none;
    padding: 0;
    max-width: 100%;
    max-height: none;
    margin: 0;
    border-radius: 0;
    border: none;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.themability-service-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    -webkit-transition: transform 0.6s ease;
}
.service:hover .themability-service-images img {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
}

/* number badge over the image */
.service-number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 26px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* text content */
.service-content {
    padding: 20px 22px 24px;
}
.service-content h4 {
    margin: 0 0 12px 0;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-hover-color);
    line-height: 1.3;
}
.service-content .promo-desc {
    line-height: 24px;
    padding: 0;
    margin-bottom: 16px;
    font-size: 14.5px;
    opacity: 0.7;
}
.service-content .promo-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.service-content .promo-btn::after {
    content: "→";
    transition: transform 0.3s ease;
}
.service-content .promo-btn:hover::after {
    transform: translateX(4px);
}

@media (max-width: 1199px) {
    .service-content {
        padding: 15px 16px 18px;
    }
    .service-content h4 {
        margin: 0 0 8px 0;
        font-size: 17px;
    }
    .service-content .promo-desc {
        font-size: 13.5px;
        margin-bottom: 10px;
    }
    .service-content .promo-btn {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .service {
        margin-bottom: 20px;
    }
}



    
        
/* ==========================================================================
   12. HERO SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 420px;
    overflow: hidden;
    isolation: isolate;
}

.cosmic-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.stars-layer {
    position: absolute;
    inset: 0;
    background-repeat: repeat;
    will-change: transform;
}

.stars-layer--far {
    animation: driftFar 240s linear infinite;
    opacity: .55;
}

.stars-layer--mid {
    animation: driftMid 160s linear infinite;
    opacity: .75;
}

.stars-layer--near {
    animation: driftNear 90s linear infinite;
    opacity: .9;
}

@keyframes driftFar {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-200px, -100px, 0);
    }
}

@keyframes driftMid {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(150px, -140px, 0);
    }
}

@keyframes driftNear {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-120px, 90px, 0);
    }
}

.stars-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
    from {
        opacity: .35;
    }

    to {
        opacity: .85;
    }
}

.nebula-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: screen;
    animation: nebulaFloat 30s ease-in-out infinite;
}

.nebula-blob--gold {
    width: 45vw;
    height: 45vw;
    max-width: 640px;
    max-height: 640px;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(212, 175, 55, .35), transparent 70%);
}

.nebula-blob--purple {
    width: 55vw;
    height: 55vw;
    max-width: 760px;
    max-height: 760px;
    bottom: -20%;
    left: -15%;
    background: radial-gradient(circle, rgba(123, 47, 207, .4), transparent 70%);
    animation-delay: -12s;
}

@keyframes nebulaFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(4%, -3%) scale(1.08);
    }
}

.floating-icons {
    position: absolute;
    inset: 0;
    font-family: var(--font-display);
    color: rgba(212, 175, 55, .55);
}

.floating-icons span {
    position: absolute;
    display: inline-block;
    text-shadow: 0 0 12px rgba(212, 175, 55, .6);
    animation: floatIcon linear infinite;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: .8;
    }

    90% {
        opacity: .8;
    }

    100% {
        transform: translateY(-120vh) rotate(25deg);
        opacity: 0;
    }
}

.cosmic-particles {
    position: absolute;
    inset: 0;
}

.cosmic-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--c-gold-soft);
    box-shadow: 0 0 6px 1px rgba(241, 216, 137, .8);
    animation: particleRise linear infinite;
}

@keyframes particleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: .6;
    }

    100% {
        transform: translateY(-100vh) scale(.4);
        opacity: 0;
    }
}

.slider-track {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(4%);
    transition: opacity var(--dur-slide) var(--ease-lux),
        transform var(--dur-slide) var(--ease-lux),
        visibility 0s linear var(--dur-slide);
}

.slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 3;
    transition: opacity var(--dur-slide) var(--ease-lux), transform var(--dur-slide) var(--ease-lux);
}

.slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-purple) 100%);
}

.slide-bg--1 {
    background:
        radial-gradient(circle at 78% 32%, rgba(241, 216, 137, .55) 0%, rgba(212, 175, 55, .28) 18%, transparent 42%),
        radial-gradient(circle at 20% 80%, rgba(74, 20, 140, .55) 0%, transparent 55%),
        linear-gradient(135deg, #0A1550 0%, var(--c-navy) 45%, var(--c-navy-deep) 100%);
}

.slide-bg--2 {
    background:
        radial-gradient(circle at 82% 22%, rgba(241, 216, 137, .5) 0%, rgba(241, 216, 137, .18) 20%, transparent 45%),
        radial-gradient(circle at 30% 75%, rgba(184, 90, 190, .4) 0%, transparent 55%),
        linear-gradient(150deg, #1A0B3D 0%, var(--c-purple) 55%, var(--c-navy-deep) 100%);
}

.slide-bg--3 {
    background:
        radial-gradient(circle at 75% 65%, rgba(241, 216, 137, .5) 0%, rgba(212, 175, 55, .25) 22%, transparent 48%),
        radial-gradient(circle at 15% 20%, rgba(74, 20, 140, .45) 0%, transparent 55%),
        linear-gradient(160deg, #2A1206 0%, var(--c-navy) 55%, var(--c-navy-deep) 100%);
}

.slide-bg--4 {
    background:
        radial-gradient(circle at 50% 100%, rgba(241, 216, 137, .55) 0%, rgba(212, 175, 55, .28) 24%, transparent 55%),
        radial-gradient(circle at 20% 15%, rgba(74, 20, 140, .5) 0%, transparent 55%),
        linear-gradient(180deg, var(--c-navy-deep) 0%, #150A38 55%, var(--c-navy-deep) 100%);
}

.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
    mix-blend-mode: overlay;
    opacity: .18;
    pointer-events: none;
}

.slide-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .9;
    transition: opacity .6s ease;
}

.overlay-gradient {
    position: absolute;
    inset: 0;
   
}

.slide-content {
    position: relative;
    z-index: 4;
    max-width: 640px;
    margin: 0 6%;
    padding: clamp(24px, 4vw, 48px) clamp(24px, 4.5vw, 52px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.slide-eyebrow {
    margin: 0 0 12px;
    font-size: clamp(11px, 1.1vw, 13px);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-gold-soft);
    opacity: 0;
    transform: translateY(14px);
}

.slide-headline {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 5.4vw, 56px);
    line-height: 1.08;
    color: var(--c-white);
    letter-spacing: .01em;
    opacity: 0;
    transform: translateY(18px);
}

.slide-headline em {
    font-style: italic;
    color: var(--c-gold);
    text-shadow: 0 0 24px rgba(212, 175, 55, .5);
}

.slide-subheading {
    margin: 0 0 clamp(20px, 3vw, 32px);
    font-weight: 300;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
    max-width: 46ch;
    opacity: 0;
    transform: translateY(18px);
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    transform: translateY(18px);
}

.slide.is-active .slide-eyebrow {
    animation: revealUp .8s var(--ease-lux) .25s forwards;
}

.slide.is-active .slide-headline {
    animation: revealUp .9s var(--ease-lux) .40s forwards;
}

.slide.is-active .slide-subheading {
    animation: revealUp .9s var(--ease-lux) .55s forwards;
}

.slide.is-active .slide-buttons {
    animation: revealUp .9s var(--ease-lux) .70s forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(212, 175, 55, .4);
    color: var(--c-gold-soft);
    backdrop-filter: blur(8px);
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-arrow:hover {
    background: rgba(212, 175, 55, .2);
    border-color: var(--c-gold);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow--prev {
    left: clamp(12px, 3vw, 32px);
}

.slider-arrow--next {
    right: clamp(12px, 3vw, 32px);
}

.slider-footer {
    position: absolute;
    left: 50%;
    bottom: clamp(18px, 4vw, 36px);
    transform: translateX(-50%);
    z-index: 5;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .4);
    padding: 0;
    overflow: hidden;
    transition: border-color .3s ease, width .4s var(--ease-lux);
}

.dot::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    transition: background .3s ease;
}

.dot.is-active {
    width: 34px;
    border-color: var(--c-gold);
    border-radius: 999px;
}

.dot.is-active::before {
    background: transparent;
}

.dot__progress {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--c-gold);
    transform-origin: left center;
    transform: scaleX(0);
}

.dot.is-active .dot__progress {
    animation: dotProgress linear forwards;
}

@keyframes dotProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.slider-counter {
    position: absolute;
    right: clamp(16px, 4vw, 40px);
    bottom: clamp(18px, 4vw, 36px);
    z-index: 5;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .6);
}

.slider-counter #counterCurrent {
    color: var(--c-gold-soft);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .slide-content {
        max-width: 560px;
    }
}

@media (max-width: 600px) {
    .slide-content {
        margin: 0 5%;
        max-width: none;
        padding: 22px 22px 26px;
        border-radius: 14px;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .slider-counter {
        display: none;
    }
}

@media (max-width: 380px) {
    .slide-headline {
        font-size: clamp(22px, 7vw, 30px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide {
        transition: opacity .3s linear;
        transform: none !important;
    }
}

/* --------------------------------------------------------------------
   13. PAGE TITLE (section headings, e.g. "Our Services")
-------------------------------------------------------------------- */
.page-title {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.page-title h3 {
    font-size: 30px;
    color: var(--secondary-color);
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 20px;
    display: inline-block;
    position: relative;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.page-title h3:after,
.page-title h3:before {
    content: "";
    background: var(--secondary-color);
    height: 2px;
    position: absolute;
    bottom: 5px;
    width: calc(50% - 10px);
}

.page-title h3:after {
    left: 0;
}

.page-title h3:before {
    right: 0;
}

.page-title .title-border {
    background: var(--secondary-color);
    height: 12px;
    width: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    margin: auto;
}

@media (max-width: 991px) {
    .page-title h3 {
        font-size: 20px;
    }

    .page-title {
        margin-bottom: 20px;
    }
}


/* --------------------------------------------------------------------
   15. ABOUT ASTROLOGER
-------------------------------------------------------------------- */
.mv_about {

    --mv-bg: #2b1408;
    --mv-accent: #e8863a;
    --mv-text: #f3ede1;
    --mv-text-dim: rgba(243, 237, 225, 0.72);

    background: var(--secondary-color);
    padding: 90px 0;
}

.mv_about_img {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    padding: 16px 16px 0 0;
}

.mv_about_img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 1px solid #000;
    border-radius: 4px;
    z-index: 0;
}

.mv_about_img_frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.mv_about_img_frame img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.mv_years_badge {
    position: absolute;
    right: -10px;
    bottom: -18px;
    z-index: 2;
    background: white;
    color: var(--mv-bg);
    padding: 14px 18px;
    border-radius: 4px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.mv_years_badge .mv_years_number {
    display: block;
    font-size: 26px;
    font-weight: 700;
}

.mv_years_badge .mv_years_label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.mv_about_content {
    color: var(--mv-text);
}

.mv_eyebrow {
    display: block;
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.mv_heading {
    font-size: 50px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0 0 26px;
    font-family: var(--font-display);
    color: var(--mv-text);
}

.mv_heading span {
    color: #000;
}

.mv_about_content p {
    font-size: 16px;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 20px;
}

.mv_about_content p:last-child {
    margin-bottom: 0;
}

.mv_quote {
    background: #0a1120;
    border-left: 3px solid #ffffff;
    border-radius: 0 4px 4px 0;
    padding: 22px 26px;
    margin: 26px 0;
}

.mv_quote p {
    font-style: italic;
    font-size: 17px;
    line-height: 27px;
    color: var(--mv-text);
    margin-bottom: 10px;
}

.mv_quote span {
    display: block;
    font-size: 14px;
    font-style: italic;
    color: var(--mv-text-dim);
}

@media (max-width: 1199px) {
    .mv_about {
        padding: 60px 0;
    }

    .mv_about_img {
        margin-bottom: 60px;
    }

    .mv_heading {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .mv_about {
        padding: 50px 0;
    }

    .mv_about_img {
        max-width: 320px;
    }

    .mv_heading {
        font-size: 26px;
    }

    .mv_about_content p,
    .mv_quote p {
        font-size: 14.5px;
        line-height: 24px;
    }

    .mv_years_badge {
        right: 0;
        bottom: -14px;
        padding: 10px 14px;
    }

    .mv_years_badge .mv_years_number {
        font-size: 20px;
    }
}





/* --------------------------------------------------------------------
   22. FOOTER
-------------------------------------------------------------------- */
.footer-main {
    padding-top: 50px;
    color: var(--primary-color);
    background: var(--secondary-color);
}

.follow-link h4,
.footer-main h5 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px 0;
    display: inline-block;
    position: relative;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.follow-link h4 {
    border-bottom: none;
}

.footer-top .position-footer-left ul li>div {
    display: flex;
    padding: 8px 0;
    font-size: 16px;
    color: #0a1120;
}

.footer-main .footer-links a::before {
    content: "";
    background: #000;
    height: 5px;
    width: 5px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.contact_title {
    padding: 0 10px 0 0;
}

.footer-main .footer-logo img {
    max-width: 140px;
}

.footer-main a {
    padding: 8px 0;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
}

.footer-main .footer-links a:hover::before,
.footer-main a:hover {
    color: var(--primary-hover-color);
}

.footer-main .footer-logo p {
    font-size: 16px;
    color: var(--primary-color);
    line-height: initial;
}

.footer-main .footer-logo {
    margin-bottom: 20px;
}

.footer-main .social-media a {
    padding: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    transition: all 0.5s ease-in-out;
}

.footer-main .social-media a:hover {
    background: var(--primary-hover-color);
    color: var(--primary-color);
}

.footer-main .social-media a+a {
    margin: 0 0 0 6px;
}

.footer-main .copyright {
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid var(--primary-color);
    margin: 30px 0 0 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

.footer-top .contact_site a {
    padding: 0;
}

@media only screen and (max-width: 991px) {
    .toggled .toggle-open {
        position: absolute;
        right: 0;
    }

    .follow-link h4,
    .footer-main h5 {
        display: block;
        font-size: 18px;
    }

    .footer-main h5 {
        padding-bottom: 10px;
        border-bottom: 1px solid var(--background-color);
    }

    .footer-main .position-footer-right {
        text-align: center;
    }

    .footer-main .copyright {
        padding: 15px 0;
    }

    .footer-main {
        padding-top: 30px;
    }

    .footer-main .social-media a {
        height: 35px;
        width: 35px;
        line-height: 35px;
    }
}

/* --------------------------------------------------------------------
   23. BREADCRUMB (inner pages)
-------------------------------------------------------------------- */
.breadcrumb-main {
    background: url(assets/images/breadcrumb.png) no-repeat scroll center center;
    background-size: cover;
    text-align: center;
    padding: 60px 10px;
    font-size: 40px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
    margin-bottom: 50px;
}

.breadcrumb-main .page-title {
    text-transform: capitalize;
    font-size: 38px;
    font-weight: 600;
    margin: 0px 0 20px;
}

.breadcrumb {
    padding: 10px 20px;
    background: rgb(245 245 245 / 24%);
    border: 1px solid var(--primary-hover-color);
    border-radius: 0;
    justify-content: center;
    width: fit-content;
    margin: auto;
}

.breadcrumb>li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
}

.breadcrumb a {
    position: relative;
    text-transform: capitalize;
    color: var(--primary-hover-color);
}

.breadcrumb>li:hover a {
    color: var(--secondary-color);
}

.breadcrumb>li+li {
    padding: 0 0 0 5px;
}

.breadcrumb>li:last-child a {
    color: var(--secondary-color);
}

.breadcrumb li+li a::before {
    content: "\f101";
    font-family: 'FontAwesome';
    padding: 0 8px 0 0;
    color: var(--primary-hover-color);
    display: inline-block;
    font-size: 14px;
}

@media (max-width: 991px) {
    .breadcrumb-main {
        padding: 30px 10px;
        margin-bottom: 30px;
    }

    .breadcrumb-main .page-title {
        font-size: 26px;
        margin: 0px 0 15px;
    }

    .breadcrumb>li {
        font-size: 14px;
    }

    .breadcrumb {
        padding: 8px 20px;
    }
}

/* --------------------------------------------------------------------
   24. ABOUT PAGE — "why choose us" counters
-------------------------------------------------------------------- */
.about-choose .block_box {
    padding: 30px 15px 0 15px;
    background: var(--background-color);
}

.about-choose-thumb {
    text-align: center;
    margin-bottom: 30px;
}

.about-choose-thumb .cat-title a {
    font-size: 20px;
    font-weight: 400;
}

.about-choose-thumb .counter {
    font-weight: 600;
    font-size: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-choose-image {
    position: relative;
    max-width: 225px;
    margin: auto auto 30px auto;
    padding: 0 15px;
}

.about-choose-inner {
    justify-content: center;
}

@media (max-width: 1500px) {
    .about-choose-thumb .cat-title a {
        font-size: 18px;
    }

    .about-choose-thumb .counter {
        font-size: 24px;
    }
}

@media (max-width: 1399px) {
    .about-choose-image {
        margin: auto auto 10px auto;
    }

    .about-choose-thumb .cat-title a {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .about-choose-image {
        padding: 0;
        max-width: 200px;
    }
}

@media (max-width: 375px) {
    .about-choose .about-choose-layout {
        width: 100%;
    }
}


/* --------------------------------------------------------------------
   28. CONTACT PAGE
-------------------------------------------------------------------- */
.contact_page .contact-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-hover-color);
    border-bottom: 2px solid var(--secondary-color);
    line-height: 1;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-left .panel {
    background: var(--background-color);
    border: none;
}

.contact-right form {
    padding: 30px;
    background: var(--background-color);
}

.contact-left .panel-body {
    padding: 20px;
}

.contact-left .panel-body>div {
    text-align: center;
}

.contact-left .panel-body>div img {
    display: unset;
}

.contact-left .panel-body>div+div {
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
    padding-top: 15px;
}

.contact-left .panel-body>div>i {
    height: 30px;
    width: 30px;
    background: var(--secondary-color);
    color: var(--primary-hover-color);
    line-height: 30px;
    border-radius: 5px;
    margin: 0 0 10px;
}

.contact-left .store-title {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 0 7px;
}

.store-address .btn-info {
    margin-top: 10px;
}



/* --------------------------------------------------------------------
   32. COMMON LAYOUT UTILITIES
-------------------------------------------------------------------- */
.main-content {
    min-height: 100vh;
}

.common-title {
    font-size: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.form-control {
    border-radius: 0;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    line-height: inherit;
}

.form-control:focus {
    box-shadow: none;
}

.dropdown-menu {
    margin: 0;
    border: none;
    border-top: 2px solid var(--secondary-color);
    border-radius: 0;
    padding: 8px 0;
    width: 200px;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    right: 0;
    top: 100%;
    background: var(--primary-color);
    color: var(--primary-hover-color);
}

input {
    outline: none;
}

.mt-50 {
    margin: 50px 0 0 0;
}

.mt-20 {
    margin: 20px 0 0 0;
}

@media (min-width: 1551px) {
    .container {
        max-width: 1500px;
    }
}

.container,
.row>* {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.table {
    font-size: 14px;
    background: var(--primary-color);
    border-color: #444;
    color: var(--primary-hover-color);
}

.table> :not(:last-child)> :last-child>* {
    border-color: #444;
}

@media (max-width: 991px) {
    .row>* {
        padding-left: 5px;
        padding-right: 5px;
    }

    .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .mt-50 {
        margin: 30px 0 0 0;
    }

    .mt-20 {
        margin: 10px 0 0 0;
    }
}
.contact_site a {
    color: inherit;
    text-decoration: none;
}

.contact_site a:hover {
    color: #ffffff;
}

.ast-floating-contact{
    position:fixed;
    right:22px;
    bottom:22px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:999999;
}

.ast-floating-btn{
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    font-size:26px;
    box-shadow:0 12px 28px rgba(0,0,0,.25);
    transition:all .35s ease;
}

.ast-call{
    background:#f5a000;
}

.ast-whatsapp{
    background:#25D366;
}

.ast-floating-btn:hover{
    color: #fff;
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 18px 36px rgba(0,0,0,.35);
}

.ast-floating-btn i{
    line-height:1;
}

@media(max-width:768px){

.ast-floating-contact{
    right:16px;
    bottom:16px;
}

.ast-floating-btn{
    width:56px;
    height:56px;
    font-size:22px;
}

}

