:root {
    --text: #111;
    --muted: #666;
    --accent: #000;
    --overlay-bg: rgba(2, 2, 2, 0.94);
}

html,
body {
    height: 100%;
}
body {
    font-family: "Gilroy", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    color: var(--text);
    background: #fff;
}

/* Gilroy Thin */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

/* Gilroy UltraLight */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-UltraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-UltraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}

/* Gilroy Light */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

/* Gilroy Regular */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-RegularItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

/* Gilroy Medium */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

/* Gilroy SemiBold */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}

/* Gilroy Bold */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/* Gilroy ExtraBold */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}

/* Gilroy Black */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

/* Gilroy Heavy */
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-Heavy.ttf") format("truetype");
    font-weight: 950;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src: url("/assets/fonts/gilroy/Gilroy-HeavyItalic.ttf") format("truetype");
    font-weight: 950;
    font-style: italic;
}

/* ---------- Header container ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #fff;
    padding: 12px 0;
    transition: padding 0.22s ease, background 0.22s ease;
}
.site-header .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left: logo */
.site-logo img {
    width: 100px;
    display: block;
}

/* Center: nav */
.nav-center {
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: center;
}
.nav-center a {
    text-decoration: none;
    color: var(--text);
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 0;
}
.nav-center a:hover {
    opacity: 0.7;
}

/* Right: call button + lang */
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--text);
    border-radius: 0px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    background: transparent;
    font-size: 14px;
}
.btn-call .phone-square {
    width: 34px;
    height: 34px;
    border: 1px solid var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
}

.lang-link {
    font-weight: 400;
    font-size: 14px;
    color: var(--text);
    opacity: 0.95;
    margin-left: 6px;
    text-decoration: none;
}

/* ---------- Mobile layout ---------- */
@media (max-width: 991.98px) {
    .site-header {
        padding: 16px 0;
    }
    .nav-center {
        display: none;
    } /* hide center nav on mobile */

    .header-inner {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    /* Center cell will show phone square on mobile */
    .mobile-center {
        display: flex;
        justify-content: center;
    }

    /* Right area: hamburger + EN */
    .header-right {
        justify-content: flex-end;
        gap: 10px;
    }
    .btn-call {
        display: none;
    } /* hide large call button on mobile */
    .mobile-phone-square {
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #fff;
        background: transparent;
    }
    .lang-link {
        font-size: 13px;
    }
}

/* ---------- Mobile overlay (full-screen) ---------- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    display: none;
    z-index: 2200;
    color: #fff;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    overflow: auto;
    flex-direction: column;
}
.mobile-overlay.show {
    display: flex;
}

.mobile-overlay .overlay-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.overlay-top .overlay-brand img {
    height: 28px;
    opacity: 0.06;
} /* light faded logo per reference */

.overlay-top .overlay-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.overlay-top .overlay-controls .phone-box {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay-top .overlay-controls .close-x {
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding-left: 8px;
}

.mobile-overlay .menu-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
}
.mobile-overlay .menu-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 28px;
    letter-spacing: 0.6px;
    opacity: 0.98;
}

.mobile-overlay .menu-list a:hover {
    opacity: 0.8;
}

.mobile-overlay .socials {
    margin-top: auto;
    padding: 40px 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.mobile-overlay .overlay-footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

/* small tweaks for very small phones */
@media (max-width: 420px) {
    .mobile-overlay .menu-list a {
        font-size: 22px;
    }
    .nav-center {
        gap: 22px;
    }
}

/* Optional: add a thin underline effect on large screens on hover (like reference subtle) */
.nav-center a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background: var(--accent);
    transition: width 0.25s ease;
    margin-top: 8px;
    opacity: 0.05;
    position: absolute;
}
.nav-center a:hover::after {
    width: 100%;
    opacity: 0.08;
}

.ddesknone {
    display: block !important;
}

@media (min-width: 992px) {
    .ddesknone {
        display: none !important;
    }
}

/* Basic dropdown styling */
.nav-center .dropdown {
    position: relative;
    display: inline-block;
}
/* Base dropdown styling */
.nav-center .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 220px;
  z-index: 9999;
  padding: 0.5rem 0;
}

/* Show dropdown on hover (desktop) */
.nav-center .dropdown:hover > .dropdown-menu {
  display: block;
}

/* Submenu styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.2rem;
  display: none;
  border: 1px solid #ddd;
  background: #fff;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Dropdown items */
.dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #000;
}

/* Arrow indicator for submenus */
.dropdown-submenu > .dropdown-item::after {
  content: "›";
  float: right;
  margin-left: 10px;
}


/* container */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* full viewport height */
    overflow: hidden;
}

/* Video fills container reliably */
.hero-video {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    object-fit: cover; /* cover the area while maintaining aspect ratio */
    object-position: center; /* center the video frame */
    z-index: 0;
    /* optional: reduce GPU glitches */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* semi-transparent dim layer for legibility */
.hero-dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

/* Overlay content centered both vertically and horizontally */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */

    text-align: center;
    padding: 0 20px; /* breathing space on small screens */
    pointer-events: none; /* allow click-through to video if needed */
}

/* Inner content can accept pointer events */
.hero-content {
    pointer-events: auto;
}

/* Typography (responsive using clamp) */
.hero-heading {
    font-family: "Playfair Display", sans-serif;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1;
    /* responsive size: min 32px, ideal 7vw, max 84px */
    font-size: clamp(32px, 7vw, 84px);
    letter-spacing: 0.6px;
    text-transform: none; /* change to uppercase if required */
}

.hero-tagline {
    font-family: "Playfair Display", sans-serif;
    font-weight: 300;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(14px, 2.2vw, 20px);
    max-width: 900px;
}

/* Small screens tweak */
@media (max-width: 420px) {
    .hero-heading {
        font-size: clamp(24px, 9vw, 36px);
    }
    .hero-tagline {
        font-size: clamp(12px, 3.5vw, 16px);
    }
}

/* Typography assumes Gilroy already loaded via @font-face */
.about-section {
    background: #fafafa;
    color: #111;
}

/* Heading: large, airy like reference */
.about-title {
    font-family: "Playfair Display", sans-serif;
    font-weight: 200; /* thin look */
    font-size: clamp(36px, 6.5vw, 80px);
    margin: 0 0 24px 0;
    line-height: 0.95;
    letter-spacing: 0.6px;
    color: #111;
}

/* Accent word styling */
.about-accent {
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Lead paragraph (intro) */
.about-lead {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: clamp(15px, 1.8vw, 18px);
    max-width: 72ch;
    color: #333;
    margin-bottom: 18px;
}

/* Secondary paragraph */
.about-desc {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    color: #444;
    max-width: 72ch;
    margin-bottom: 22px;
}

/* CTA button — thin outlined like reference */
.about-cta {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #222;
    color: #222;
    font-weight: 600;
    border-radius: 2px;
    background: transparent;
    text-decoration: none;
}

/* Right image wrap: create tall cropped visual */
.about-image-wrap {
    height: 540px; /* controls visible height on desktop */
    overflow: hidden;
    display: block;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
}

/* Image fills the wrap and is centered vertically */
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* cover & crop to fit tall area */
    object-position: center;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-title {
        font-size: clamp(30px, 8vw, 46px);
    }
    .about-image-wrap {
        display: none;
    } /* hide right image on tablet/mobile */
}

/* Small tweak for very narrow screens */
@media (max-width: 420px) {
    .about-lead,
    .about-desc {
        font-size: 15px;
    }
    .about-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.projects-section {
    background: #fff;
    padding: 60px 0;
}

.projects-title {
    font-family: "Playfair Display", sans-serif;
    font-weight: 300;
    font-size: 42px;
    line-height: 1;
}
.projects-title span {
    font-weight: 500;
}

.project-card {
    position: relative;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    font-family: "Playfair Display", sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 5px;
}

.project-overlay p {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin: 0;
}

.testimonials-section {
    background: #fafafa;
}

.testimonials-title {
    font-family: "Playfair Display", sans-serif;
    font-weight: 300;
    font-size: 38px;
}
.testimonials-title span {
    font-weight: 500;
}

.testimonial {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-text {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-name {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 2px;
}

.testimonial-role {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #666;
}

/* Custom indicators */
.carousel-indicators [data-bs-target] {
    background-color: #222;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 40px;
}

.carousel-indicators {
    bottom: -30px;
}

/* Section base */
.services-section {
    background: #fff;
    color: #111;
    padding-top: 64px;
    padding-bottom: 64px;
}

/* Heading */
.section-title {
    font-family: "Playfair Display", sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 4.8vw, 48px);
    margin: 0 0 8px;
    letter-spacing: 0.6px;
}
.section-title span {
    font-weight: 600;
}

.section-sub {
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    color: #666;
    margin: 0 0 18px;
    font-size: 16px;
}

.section-intro {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    color: #444;
    max-width: 44ch;
    line-height: 1.6;
}

/* Service card */
.service-card {
    background: #fafafa;
    border: 1px solid rgba(17, 17, 17, 0.04);
    padding: 28px;
    border-radius: 6px;
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.36s ease, background 0.36s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

/* Icon circle */
.service-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.02));
    color: #111;
    font-size: 22px;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

/* Title & text */
.service-title {
    font-family: "Playfair Display", sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin: 6px 0 0;
}

.service-text {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    color: #555;
    margin-top: 6px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Hover effect: lift + shadow + slight accent underline */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(4, 8, 15, 0.08);
    background: #fff;
}
.service-card::after {
    content: "";
    height: 3px;
    width: 40px;
    display: block;
    margin-top: 18px;
    background: transparent;
    transition: background 0.28s ease, transform 0.28s ease;
    transform-origin: left center;
}
.service-card:hover::after {
    background: linear-gradient(90deg, #a47b3a, #6c4f2e);
    transform: scaleX(1);
}

/* Responsive spacing tweaks */
@media (max-width: 991.98px) {
    .services-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .service-card {
        padding: 22px;
    }
    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
}

/* Make sure icons use FA (ensure fa css included) */
.service-icon .fa-solid,
.service-icon .fa-regular,
.service-icon .fa-brands {
    display: inline-block;
}

/* BRANDS SECTION */
.brands-section {
    background: #fafafa;
    padding-top: 56px;
    padding-bottom: 56px;
    color: #111;
}

.brands-title {
    font-family: "Playfair Display", sans-serif;
    font-weight: 300;
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 8px;
    color: #111;
}

/* subtle dotted divider like reference */
.brands-divider {
    width: 80px;
    height: 4px;
    margin: 10px auto 0;
    background-image: linear-gradient(90deg, #000 33%, rgba(255, 255, 255, 0) 0%);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    opacity: 0.15;
}

/* Brand tile wrapper (white square with padding) */
.brand-tile {
    width: 140px; /* tile size on desktop */
    height: 140px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(6, 10, 15, 0.04);
    transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.28s ease, background 0.28s ease;
    padding: 18px;
}

/* Make tiles slightly larger on hover */
.brand-tile:hover,
.brand-tile:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(6, 10, 15, 0.08);
}

/* Logo image fills tile while keeping aspect */
.brand-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive sizing */
@media (max-width: 1199.98px) {
    .brand-tile {
        width: 120px;
        height: 120px;
        padding: 14px;
    }
}
@media (max-width: 767.98px) {
    .brand-tile {
        width: 110px;
        height: 110px;
        padding: 12px;
    }
    .brands-title {
        font-size: 22px;
    }
}

/* Small aesthetic tweak for centered grid spacing */
.row.gy-4 > [class*="col-"] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-section {
    background: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.stat-box {
    font-family: "Gilroy", sans-serif;
}

.stat-number {
    font-weight: 700;
    font-size: clamp(28px, 5vw, 46px);
    line-height: 1;
    color: #111;
}

.stat-plus {
    font-weight: 600;
    font-size: clamp(20px, 3vw, 32px);
    margin-left: 2px;
    color: #a47b3a; /* accent color */
}

.stat-label {
    font-weight: 300;
    font-size: 16px;
    margin-top: 10px;
    color: #444;
}

.cta-section {
    background: #111; /* dark background */
    color: #f9f9f9; /* light text */
    padding: 80px 20px;
}

.cta-heading {
    font-family: "Playfair Display", sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.cta-text {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    padding: 14px 34px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #111;
    background: #f9f9f9;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background: #a47b3a; /* accent gold */
    color: #fff;
}

.video-section {
    background: #fafafa;
    color: #111;
    padding-top: 70px;
    padding-bottom: 70px;
}

.video-title {
    font-family: "Playfair Display", sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 38px);
}
.video-title span {
    font-weight: 500;
}

.video-box {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 6px;
}

/* Contact section base */
.contact-section {
    background: #fafafa; /* light background like reference */
    padding: 80px 0;
    font-family: "Gilroy", sans-serif;
    color: #222;
}

/* Title */
.contact-title {
    font-weight: 200;
    font-size: clamp(36px, 6.5vw, 72px);
    margin: 6px 0 0;
    line-height: 0.95;
    letter-spacing: 0.6px;
}

/* Left column content */
.contact-info .ci-line {
    font-weight: 300;
    color: #333;
    margin: 18px 0;
    font-size: 16px;
    max-width: 520px;
}

.ci-mail {
    color: #333;
    text-decoration: none;
}
.ci-mail:hover {
    text-decoration: underline;
    color: #000;
}

/* socials */
.ci-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}
.ci-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111;
    background: #fff;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ci-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(4, 8, 15, 0.06);
}

/* note */
.ci-note {
    margin-top: 26px;
    font-weight: 300;
    color: #444;
    max-width: 520px;
}

/* Right column form styles */
.contact-form {
    max-width: 760px;
    margin-left: auto;
}

/* Small label above inputs */
.small-label {
    font-weight: 400;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

/* Large inputs like reference (big height, thin border) */
.large-input {
    height: 68px;
    padding: 22px 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    background: #fff;
    font-size: 18px;
    font-weight: 300;
    color: #222;
    box-shadow: none;
}

/* Checkbox label */
.form-check-label {
    color: #444;
    font-weight: 300;
}

/* privacy link */
.privacy-link {
    text-decoration: underline;
    color: #222;
}

/* Submit button - full width dark bar */
.submit-btn {
    background: #212121;
    color: #fff;
    padding: 18px 26px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    font-size: 18px;
    transition: background 0.18s ease, transform 0.12s ease;
}
.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Responsive: stack columns on small screens */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 56px 0;
    }
    .contact-title {
        font-size: clamp(30px, 9vw, 46px);
    }
    .contact-form {
        margin-left: 0;
        margin-top: 24px;
    }
    .large-input {
        height: 62px;
    }
}

/* Accessibility focus */
.large-input:focus,
.submit-btn:focus,
.ci-icon:focus {
    outline: 3px solid rgba(164, 123, 58, 0.12);
    outline-offset: 2px;
}

/* ---------- FOOTER FIX (paste after earlier footer CSS) ---------- */

/* Ensure container uses proper max width and columns align */
.site-footer {
    background: #141212 !important;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
}

.site-footer .col-12.col-md-6.col-lg-3 {
    display: block;
}

/* Top area padding */
.site-footer > .container {
    padding-top: 48px;
    padding-bottom: 36px;
}

/* Force columns to be left-aligned on desktop */
.site-footer .row {
    align-items: flex-start;
}

/* Footer column headings */
.site-footer .footer-heading {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 18px;
    text-align: left;
}

/* Footer links (remove default browser link colors) */
.site-footer .footer-links a,
.site-footer a {
    color: rgba(255, 255, 255, 0.75) !important; /* neutral light text */
    text-decoration: none !important;
    font-weight: 300;
    display: block;
    margin: 6px 0;
    font-size: 14px;
}

/* Links on hover */
.site-footer .footer-links a:hover,
.site-footer a:hover {
    color: #a47b3a !important; /* accent gold */
    text-decoration: none !important;
}

/* Prevent mailto/tel from showing default blue/underline */
.site-footer a[href^="mailto:"],
.site-footer a[href^="tel:"] {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
}

/* Footer contact text */
.site-footer .footer-contact,
.site-footer p,
.site-footer address {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 10px;
    line-height: 1.6;
}

/* Footer list resets */
.site-footer .footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Bottom strip */
.footer-bottom {
    background: #111 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px 0;
}

/* Layout for bottom strip: logo left, copy center, socials right */
.footer-bottom .container {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Footer bottom copy */
.footer-copy {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    text-align: center;
    margin: 6px 0;
}

/* Logo adjustments */
.footer-logo img {
    height: 34px;
    display: inline-block;
}

/* Social icons on bottom right */
.footer-socials a {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 12px;
    font-size: 16px;
    text-decoration: none;
}
.footer-socials a:hover {
    color: #a47b3a;
}

/* Make sure lists keep left alignment on desktop */
@media (min-width: 768px) {
    .site-footer .col-12.col-md-6.col-lg-3,
    .site-footer .col-12.col-md-6.col-lg-2 {
        text-align: left;
    }
}

/* Mobile behaviour: stack and center copy */
@media (max-width: 767.98px) {
    .footer-bottom .container {
        justify-content: center;
        text-align: center;
    }
    .footer-socials {
        margin-top: 12px;
    }
    .site-footer .footer-heading {
        text-align: center;
    }
    .site-footer .footer-links a {
        display: inline-block;
    }
}

/* Accessibility: focus states for footer links/icons */
.site-footer a:focus {
    outline: 3px solid rgba(164, 123, 58, 0.12);
    outline-offset: 3px;
}

/* Final small tweak to avoid weird centering from earlier CSS */
.site-footer * {
    box-sizing: border-box;
}

::before {
    color: #000;
    text-decoration: none;
}

a ::before {
    color: #000;
    text-decoration: none;
}

a {
    text-decoration: none !important;
}

/* IMPORTANT: ensure Gilroy is loaded via your @font-face earlier. */
.service-hero {
    position: relative;
    width: 100%;
    height: 90vh; /* hero height - adjust if needed */
    min-height: 620px;
    overflow: hidden;
    display: block;
    background: #000;
    color: #fff;
    font-family: "Playfair Display", sans-serif;
}

/* video fills container */
.service-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* dark dim overlay for contrast */
.service-hero__dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

/* content wrapper */
.service-hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-left: 6vw; /* left offset similar to reference */
    padding-right: 6vw;
}

/* left column content width */
.service-hero__content {
    max-width: 720px;
    color: #fff;
}

/* Eyebrow */
.eyebrow {
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 10px 0;
    font-size: 13px;
}

/* Big heading - thin/modern */
.service-hero__title {
    font-family: "Playfair Display", sans-serif;
    font-weight: 200;
    margin: 0 0 18px 0;
    color: #fff;
    line-height: 1;
    font-size: clamp(36px, 6.6vw, 88px);
    letter-spacing: 0.2px;
}

/* subtitle / tagline */
.service-hero__subtitle {
    font-family: "Playfair Display", sans-serif;
    font-weight: 300;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(15px, 2.2vw, 20px);
    max-width: 52ch;
    line-height: 1.6;
}

/* CTA button */
.btn-service-cta {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.22s ease;
}
.btn-service-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .service-hero {
        min-height: 560px;
        height: 80vh;
    }
    .service-hero__inner {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .service-hero__content {
        max-width: 640px;
    }
}
@media (max-width: 767.98px) {
    .service-hero {
        min-height: 520px;
        height: 72vh;
    }
    .service-hero__inner {
        padding-left: 6vw;
        padding-right: 6vw;
        align-items: flex-end;
    }
    /* keep content visually centered-left but move a bit down for mobile reading */
    .service-hero__content {
        max-width: 100%;
        padding-bottom: 6vh;
    }
    .service-hero__title {
        font-size: clamp(28px, 10vw, 44px);
    }
    .btn-service-cta {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}
@media (max-width: 420px) {
    .service-hero__title {
        font-size: clamp(22px, 11vw, 32px);
        line-height: 1.04;
    }
    .service-hero__subtitle {
        font-size: 14px;
    }
}

/* Hero image with overlay text */
.project-hero {
    position: relative;
    overflow: hidden;
    max-height: 80vh;
}

/* make hero image behave like background */
.project-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* black overlay behind text */
.project-hero::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */
    background: rgba(0, 0, 0, 0.45); /* adjust opacity 0.3–0.6 as you like */
    z-index: 1;
}

/* text overlay */
.single-project-overlay {
    position: absolute;
    left: 8%;
    bottom: 12%;
    color: #fff;
    max-width: 640px;
    z-index: 2; /* ensure text sits above overlay */
}

.project-title {
    font-weight: 200;
    font-size: clamp(32px, 6vw, 64px);
    margin-bottom: 10px;
}

.project-subtitle {
    font-weight: 300;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
}

/* Approach section base */
.approach-section {
    background: #ffffff;
    color: #111;
    font-family: "Gilroy", sans-serif;
}

/* Heading */
.approach-title {
    font-weight: 200;
    font-size: clamp(34px, 5.2vw, 56px);
    line-height: 1;
    margin: 0 0 16px;
}
.approach-title span {
    font-weight: 400;
}

/* Lead paragraph */
.approach-lead {
    font-weight: 300;
    color: #444;
    max-width: 38ch;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Steps container */
.approach-steps {
    display: grid;
    gap: 22px;
}

/* Each step */
.step {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 18px 12px;
    border-radius: 6px;
    transition: background 0.18s ease, transform 0.18s ease;
}

/* Hover subtle lift */
.step:hover {
    transform: translateY(-6px);
    background: rgba(164, 123, 58, 0.03); /* tiny warm accent */
}

/* Step number circle */
.step-number {
    min-width: 78px;
    min-height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111; /* dark */
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(2, 8, 15, 0.06);
}
.step-number span {
    font-family: "Gilroy", sans-serif;
}

/* Step body */
.step-body {
    flex: 1 1 auto;
}
.step-title {
    margin: 0 0 6px;
    font-weight: 600;
    font-size: 18px;
    color: #111;
}
.step-body p {
    margin: 0;
    font-weight: 300;
    color: #444;
    line-height: 1.6;
}

/* Subheadings for follow-up paragraphs */
.subheading {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
    color: #111;
}

/* CTA button */
.btn-approach-cta {
    display: inline-block;
    margin-top: 6px;
    background: #111;
    color: #fff;
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.18s ease, transform 0.12s ease;
}
.btn-approach-cta:hover {
    background: #2a2a2a;
    transform: translateY(-3px);
}

/* Responsive layout tweaks */
@media (min-width: 992px) {
    .approach-steps {
        gap: 20px;
    }
    .step {
        padding: 20px;
    }
    .step-number {
        min-width: 88px;
        min-height: 88px;
        font-size: 22px;
    }
}

/* Mobile: stack steps full-width with slightly smaller numbers */
@media (max-width: 767.98px) {
    .step {
        gap: 14px;
        padding: 14px 8px;
    }
    .step-number {
        min-width: 66px;
        min-height: 66px;
        font-size: 18px;
    }
    .approach-title {
        font-size: clamp(26px, 9vw, 36px);
    }
    .approach-lead {
        max-width: 100%;
    }
    .btn-approach-cta {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}

/* BEST SALON SECTION */
.best-salon-section {
    background: #fff;
    color: #111;
    font-family: "Gilroy", sans-serif;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Heading */
.bs-title {
    font-weight: 200;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.02;
    margin: 0;
}
.bs-title span {
    font-weight: 500;
}

/* Badges / chips */
.bs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}
.badge-item {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    background: linear-gradient(180deg, rgba(164, 123, 58, 0.08), rgba(164, 123, 58, 0.03));
    border: 1px solid rgba(164, 123, 58, 0.14);
    color: #6b4a2b;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(6, 10, 15, 0.03);
}

/* Lead paragraph next to heading */
.bs-lead {
    font-weight: 300;
    color: #444;
    margin-top: 16px;
    max-width: 46ch;
}

/* CTA */
.btn-bs-cta {
    background: #111;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 2px;
    border: none;
    display: inline-block;
}
.btn-bs-cta:hover {
    background: #2a2a2a;
    transform: translateY(-3px);
}

/* Right panel */
.bs-panel {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    padding: 28px;
}
.bs-panel-lead {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* subsections */
.bs-sub {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 16px;
}
.bs-panel p {
    margin: 0;
    color: #444;
    font-weight: 300;
}

/* Quote */
.bs-quote {
    margin: 18px 0 0;
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0.01));
    border-left: 4px solid rgba(164, 123, 58, 0.18);
    color: #222;
    font-weight: 400;
    border-radius: 4px;
}

/* small follow paragraph */
.bs-small {
    font-weight: 300;
    color: #555;
}

/* Responsive */
@media (max-width: 991.98px) {
    .bs-title {
        font-size: clamp(28px, 8vw, 42px);
    }
    .bs-panel {
        padding: 20px;
        margin-top: 18px;
    }
    .btn-bs-cta {
        width: 100%;
        text-align: center;
    }
}

/* Utility: show on mobile only (you already have .ddesknone; keeps consistent) */
.ddesknone {
    display: block !important;
}
@media (min-width: 992px) {
    .ddesknone {
        display: none !important;
    }
}

/* Sticky CTA container */
.sticky-cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(env(safe-area-inset-bottom, 12px) + 12px); /* safe-area aware */
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    pointer-events: auto;
    width: calc(100% - 40px);
    max-width: 980px;
    justify-content: center;
    padding: 0 12px;
}

/* CTA button */
.sticky-cta-btn {
    width: 100%;
    max-width: 760px;
    background: #111; /* dark bar like site */
    color: #fff;
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 0;
    border: none;
    letter-spacing: 1px;
    text-transform: none;
    box-shadow: 0 8px 30px rgba(2, 8, 15, 0.25);
    cursor: pointer;
    display: inline-block;
}

/* Add subtle rounded corners on small screens */
@media (max-width: 420px) {
    .sticky-cta-btn {
        border-radius: 8px;
        font-size: 16px;
    }
}

/* Close button */
.sticky-cta-close {
    position: absolute;
    right: 10px;
    top: -36px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 0;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

/* Hide close button on very small viewports to avoid overlap; user can close via other means */
@media (max-width: 360px) {
    .sticky-cta-close {
        display: none;
    }
}

/* Accessibility focus styles */
.sticky-cta-btn:focus,
.sticky-cta-close:focus {
    outline: 3px solid rgba(164, 123, 58, 0.16);
    outline-offset: 3px;
}

/* Ensure it does not show on desktop */
@media (min-width: 992px) {
    .sticky-cta {
        display: none !important;
    }
}


    /* FAQ Section */
.faq-section {
  background: #fafafa;
  font-family: 'Gilroy', sans-serif;
}

.faq-eyebrow {
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a47b3a;
  margin-bottom: 6px;
}

.faq-title {
  font-weight: 200;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.faq-sub {
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Accordion Styles */
.accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.accordion-button {
  font-weight: 500;
  font-size: 16px;
  background: #fff;
  color: #111;
  padding: 16px 20px;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(164,123,58,0.25);
}

.accordion-button:not(.collapsed) {
  background: #111;
  color: #fff;
}

.accordion-body {
  background: #fff;
  font-weight: 300;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  padding: 18px 20px;
}
.p5pr{
    padding-bottom: 5%;
     padding-top: 5%;
}
/* ===== PROJECT HERO SINGLE ===== */
.project-hero-single {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: #000; /* fallback */
}

.project-hero-single .project-hero-img img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  filter: brightness(65%); /* dark overlay effect */
}

.project-hero-single .project-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-hero-single .project-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #f5f5f5;
  max-width: 700px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

/* Add a subtle overlay */
.project-hero-single .project-hero-img::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Ensure text is above overlay */
.project-hero-single .container {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {
  .project-hero-single {
    min-height: 50vh;
  }
  .project-hero-single .project-hero-img img {
    height: 50vh;
  }
  .project-hero-single .project-title {
    font-size: 2rem;
  }
  .project-hero-single .project-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
}
.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: #000000;
}

i.blbg::before {

    color:#fff!IMPORTANT;
}




.blogbg {
    position: relative;
    background: url(/assets/images/wc6.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.blogbg::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* adjust opacity */
    z-index: -1; /* keeps overlay behind content */
}

.blog-title{
    font-weight: bold;
    padding-top:5%;
}

.blog-post img {
    width:100%;
}

            .entry-meta {
                background: #eeeeee8f;
                margin-top: 12px;
                margin-bottom: 20px;
                padding: 8px;
                border-radius: 6px;
            }
            
            .blog-post .author-bio {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 50px;
  padding-top: 76px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.blog-post .author-bio .author-image {
  margin-bottom: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  border: 10px solid #fff;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.blog-post .author-bio .author-info {
  padding: 96px 170px 46px;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-post .author-bio .author-info h5 {
  margin-bottom: 15px;
}
.blog-post .author-bio .author-info .des {
  margin-bottom: 15px;
}
.blog-post .author-bio .author-info .author-socials a {
  font-size: 14px;
  margin-right: 22px;
  color: #b6b6b6;
}
.blog-post .author-bio .author-info .author-socials a:hover {
  color: #1a1a1a;
}
.blog-post .author-bio .author-info .author-socials a:last-child {
  margin-right: 0;
}

.author-widget_wrapper {
    padding: 30px;
    background-image: url(/images/bg-author.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.author-widget_wrapper .author-widget_image-wrapper {
  margin-bottom: 22px;
}
.author-widget_wrapper .author-widget_title {
  font-size: 22px;
  margin-bottom: 5px;
  color: #fff;
}
.author-widget_wrapper .author-widget_text {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 28px;
  color: #a3a3a3;
  margin-bottom: 15px;
}

.author-widget_social a {
  display: inline-block;
  font-size: 12px;
  text-align: center;
  height: 28px;
  width: 28px;
  line-height: 28px;
  cursor: pointer;
  margin-right: 7px;
  background: transparent;
  border: 1px solid #e0e0e0;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.author-widget_social a:last-child {
  margin-right: 0px;
}
.author-widget_social a:hover {
  background: #444444;
  border-color: #444444;
}

h6.widget-title {
    margin-top: 20px;
    background: #eee;
    padding: 8px;
}
.widget_categories ul{
    list-style-type:  none!important;
    list-style:  none!important;
    padding-left: 1px!important;
}

.widget_categories ul li{ 
     margin-top: 10px;
    background: #eee;
    padding: 8px;
    color:#444;
}

.widget_categories ul li a{ 
   
    color:#444;
}

.tagcloud a {
    background: #eee;
    padding: 8px;
    margin-right: 13px;
    color: #444;
}


            img {
    width: 100%;
}
.entry-meta span {
    font-size: 12px;
    display: inline-block;
}
a.title-link {
    font-size: 20px !important;
    color: #444;
}
h5.entry-title {
    margin-bottom: 30px;
    margin-top: -10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

span.location-style {
    background: #eee;
    width: 100%;
    display: block;
    padding: 10px;
    margin-bottom: 20px;
    color: #444;
}

span.location-style a{
    
    color: #444;
}


.fixed-buttons {
  position: fixed;
  right: 20px;
  bottom: 170px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fixed-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fixed-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Call button */
.call-btn {
  background-color: #000; /* blue */
}

/* WhatsApp button */
.whatsapp-btn {
  background-color: #25D366; /* WhatsApp green */
}

/* === Minimal Modal Styling === */
.modal-content {
  border-radius: .5rem;
  border: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.modal-header, .modal-footer {
  border: none;
  padding: 1rem 1.5rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-body {
  padding: 1.5rem;
}

/* === Form Fields === */
.inp, 
.form-select, 
textarea.form-control {
  border-radius: .375rem;
  padding: .55rem .75rem;
  font-size: .95rem;
  border: 1px solid #ddd;
}

.inp:focus, 
.form-select:focus, 
textarea.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 .15rem rgba(13, 110, 253, 0.1);
  outline: none;
}

/* === Submit Button === */
.octf-btn {
  padding: .55rem 1.2rem;
  border-radius: .375rem;
  font-weight: 500;
  transition: background-color .2s ease, transform .1s ease;
  background: #444;
}

.octf-btn:hover {
  transform: translateY(-1px);
}

/* === Alerts === */
.form-alerts .alert {
  font-size: .85rem;
  margin-top: .75rem;
  padding: .5rem .75rem;
  border-radius: .375rem;
}

div#leadModal {
    z-index: 99999;
}