/* =========================================================
   KRITIKA HOTEL HOME MASSAGE - Stylesheet
   Theme: Clean, premium wellness — soft warm tones
   ========================================================= */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --primary: #7D4EEF;
    /* vibrant purple */
    --primary-dark: #6438d6;
    /* deeper purple */
    --primary-light: #9b75f3;
    /* light purple */
    --secondary: #2a1f4d;
    /* deep purple-navy */
    --accent: #c8b3ff;
    /* soft lilac */
    --bg-soft: #f7f4ff;
    /* very soft purple-tinted background */
    --bg-white: #ffffff;
    --text-dark: #1f1838;
    --text-muted: #6b6585;
    --border-soft: #ece6f9;
    --shadow-sm: 0 4px 14px rgba(125, 78, 239, 0.08);
    --shadow-md: 0 10px 30px rgba(125, 78, 239, 0.10);
    --shadow-lg: 0 20px 50px rgba(125, 78, 239, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* ---------- BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

.section-padding {
    padding: 100px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

/* ---------- COMMON HEADING ---------- */
.section-heading {
    margin-bottom: 50px;
}

.sub-heading {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 16px;
    background: rgba(125, 78, 239, 0.1);
    border-radius: 30px;
    margin-bottom: 16px;
}

.heading-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.heading-text {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 13px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    border: none;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(125, 78, 239, 0.3);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(125, 78, 239, 0.4);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 13px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-call-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #fff;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-call-sm:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
    background: var(--secondary);
    color: #ddd;
    padding: 10px 0;
    font-size: 13px;
}

.top-info,
.top-social {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-social {
    gap: 14px;
    justify-content: flex-end;
}

.top-info li i {
    color: var(--accent);
    margin-right: 6px;
}

.top-info a {
    color: #ddd;
}

.top-info a:hover {
    color: var(--accent);
}

.top-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ddd;
    font-size: 12px;
}

.top-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* =========================================================
   HEADER (STICKY)
   ========================================================= */

.logos {
    max-width: 100%;
    height: 94px;
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 14px rgba(125, 78, 239, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
}

.brand-sub {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    margin: 0 2px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 11px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(125, 78, 239, 0.3);
}

.btn-call:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* Custom toggler */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero-section {
    position: relative;
}

.hero-slide {
    height: 90vh;
    min-height: 580px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
    padding: 30px 0;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}

.hero-title {
    font-size: 62px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero-title span {
    background: linear-gradient(120deg, var(--accent), #f5e6c8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    margin: 0 24px;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-control-icon {
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 30px !important;
    height: 4px !important;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
}

.carousel-indicators button.active {
    background: var(--accent) !important;
    width: 50px !important;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-section {
    background: var(--secondary);
    padding: 16px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 60px;
    animation: marquee 40s linear infinite;
    padding-left: 60px;
}

.marquee-content span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.marquee-content span i {
    color: var(--accent);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);

    aspect-ratio: 4 / 5;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--primary);
    color: #fff;
    padding: 22px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
}

.about-text {
    font-size: 16px;
    margin-bottom: 26px;
    color: var(--text-muted);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feat-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(125, 78, 239, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-features li strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 2px;
}

.about-features li p {
    font-size: 14px;
    margin: 0;
}

/* =========================================================
   SERVICES
   ========================================================= */
.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-img {
    overflow: hidden;
    height: 230px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-body {
    padding: 28px 26px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-text {
    font-size: 14.5px;
    margin-bottom: 22px;
    flex-grow: 1;
}

/* =========================================================
   COUNTER
   ========================================================= */
.counter-section {
    background:
        radial-gradient(circle at 20% 30%, rgba(125, 78, 239, 0.55), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(200, 179, 255, 0.25), transparent 55%),
        linear-gradient(135deg, #2a1f4d 0%, #1f1638 100%);
    padding: 80px 0;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.counter-box {
    padding: 24px 12px;
    transition: var(--transition);
}

.counter-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 16px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.counter-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(125, 78, 239, 0.15), rgba(200, 179, 255, 0.15));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.why-card p {
    font-size: 14.5px;
    margin: 0;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 31, 77, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section .accordion-item {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-button {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    padding: 20px 24px;
    background: #fff;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(125, 78, 239, 0.08);
    color: var(--primary);
}

.faq-section .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: auto;
    height: auto;
    font-size: 14px;
    color: var(--primary);
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: '\f068';
    transform: none;
}

.faq-section .accordion-body {
    padding: 6px 24px 22px;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.faq-help {
    margin-top: 32px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-sm);
}

.faq-help-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.faq-help h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--secondary);
}

.faq-help p {
    font-size: 13px;
    margin: 0 0 8px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 28px;
    color: rgba(125, 78, 239, 0.18);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testi-rating {
    color: #f4b731;
    font-size: 14px;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.testi-user h4 {
    font-size: 16px;
    margin: 0 0 2px;
    color: var(--secondary);
}

.testi-user span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info-wrap {
    background: var(--bg-soft);
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px dashed var(--border-soft);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--secondary);
}

.contact-info-item a,
.contact-info-item p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}

.contact-form .form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14.5px;
    background: var(--bg-soft);
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(125, 78, 239, 0.15);
    background: #fff;
}

.form-message {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
}

.form-message.success {
    color: #2f7a3f;
}

.form-message.error {
    color: #c0392b;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #1a1233;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-brand span:not(.brand-icon) {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #fff;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.footer-brand small {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--primary);
}

.footer-links li,
.footer-contact li {
    padding: 6px 0;
    font-size: 14.5px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom {
    margin-top: 50px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 13.5px;
}

/* =========================================================
   FLOATING BUTTONS & BACK TO TOP
   ========================================================= */
.floating-buttons {
    position: fixed;
    right: 22px;
    bottom: 128px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: var(--transition);
}

.float-call {
    background: var(--primary);
}

.float-call:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    color: #fff;
}

.float-wa {
    background: #25d366;
}

.float-wa:hover {
    background: #1eba59;
    transform: scale(1.1);
    color: #fff;
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: pulse-ring 2s infinite;
    opacity: 0.6;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 28px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199.98px) {
    .heading-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 14px;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--border-soft);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-call {
        margin-top: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-slide {
        height: 75vh;
        min-height: 520px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 15px;
    }

    .heading-title {
        font-size: 32px;
    }

    .about-experience {
        left: 10px;
        bottom: 20px;
        padding: 18px 22px;
    }

    .exp-number {
        font-size: 34px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 48px;
        height: 48px;
        margin: 0 12px;
    }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important;
	}
	.cu-jf-cntr{
		justify-content:center;
	}
    .section-padding {
        padding: 60px 0;
    }

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

    .sub-heading {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-slide {
        height: auto;
        min-height: 480px;
        padding: 60px 0;
    }

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

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

    .hero-buttons .btn {
        padding: 11px 22px;
        font-size: 14px;
    }

    .about-img {
        aspect-ratio: 4 / 3.5;
        width: 100%;
        height: 250px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .about-experience {
        left: auto;
        right: 16px;
        bottom: 16px;
        padding: 14px 18px;
        gap: 10px;
    }

    .exp-number {
        font-size: 28px;
    }

    .exp-text {
        font-size: 11px;
    }

    .counter-number {
        font-size: 36px;
    }

    .counter-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .contact-form,
    .contact-info-wrap {
        padding: 28px 22px;
    }

    .faq-help {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }

    .faq-help {
        align-items: center;
        text-align: center;
    }

    .floating-buttons {
       right: 22px;
    bottom: 128px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .back-to-top {
        right: 16px;
        bottom: 20px;
        width: 42px;
        height: 42px;
    }

    .footer-brand {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 5px 14px;
    }

    .heading-title {
        font-size: 24px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 11px 22px;
        font-size: 14px;
    }

    .service-img {
        height: 200px;
    }

    .marquee-content {
        gap: 40px;
    }

    .marquee-content span {
        font-size: 13px;
    }
}

/* =========================================================
   ANIMATIONS / REVEAL
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}