:root {
    --bg: #0b0a14;               /* deep violet-black */
    --ink: #0f1022;              /* dark ink */
    --paper: #ffffff;
    --muted: #6b7280;

    /* NEW THEME: Purple + Pink + Sky Blue */
    --purple: #7c3aed;           /* purple */
    --pink: #ec4899;             /* pink */
    --sky: #38bdf8;              /* sky blue */
    --lavender: #a78bfa;         /* soft purple */
    --blush: #f9a8d4;            /* soft pink */
    --ice: #bae6fd;              /* soft sky */

    /* Gradients */
    --brand: linear-gradient(135deg, var(--purple), var(--pink), var(--sky));
    --brand-soft: linear-gradient(135deg, rgba(124,58,237,.18), rgba(236,72,153,.16), rgba(56,189,248,.16));

    /* Shadows */
    --shadow: 0 14px 40px rgba(0, 0, 0, .25);
    --shadow-soft: 0 12px 30px rgba(15, 20, 24, .12);

    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1200px 650px at 20% 10%, rgba(124,58,237,.14), transparent 60%),
        radial-gradient(900px 520px at 90% 15%, rgba(56,189,248,.10), transparent 60%),
        radial-gradient(900px 520px at 65% 70%, rgba(236,72,153,.10), transparent 60%),
        #0c0b16;
    color: #111827;
}

.section-pad {
    padding: 80px 0;
}

.section-alt {
    background:
        radial-gradient(1200px 600px at 20% 10%, rgba(124, 58, 237, .10), transparent 60%),
        radial-gradient(900px 500px at 90% 20%, rgba(56, 189, 248, .10), transparent 60%),
        radial-gradient(800px 500px at 55% 70%, rgba(236, 72, 153, .09), transparent 60%),
        #fbfbff;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(56, 189, 248, .95); /* sky */
    font-weight: 900;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    margin-top: 8px;
}

.section-text {
    color: #cdd6ea;
}

.text-gradient {
    background: var(--brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Topbar */
.topbar {
    background: linear-gradient(90deg, rgba(124, 58, 237, .25), rgba(236, 72, 153, .22), rgba(56, 189, 248, .22));
    color: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.topbar-item {
    color: rgba(255, 255, 255, .92);
}

.topbar-link {
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
}

.topbar-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Brand */
.brand-title {
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #fff;
}

.brand-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, .70);
}

/* Navbar */
.header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.nav-glass {
    background: rgba(11, 10, 20, .65);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, .84);
    font-weight: 800;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
}

/* Buttons */
.btn-brand {
    border: none;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 30px rgba(236, 72, 153, .18);
    border-radius: 999px;
    font-weight: 900;
}

.btn-brand:hover {
    filter: brightness(1.05);
    color: #fff;
}

.btn-outline-dark {
    border-radius: 999px;
    font-weight: 900;
}

.brand-logo {
    width: auto;
    height: 68px;
    object-fit: contain;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
}

.brand-mark.sm {
    width: 34px;
    height: 34px;
    border-radius: 12px;
}

.brand-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(124, 58, 237, .12),
        0 0 0 12px rgba(236, 72, 153, .10),
        0 0 0 18px rgba(56, 189, 248, .08);
}

/* Hero */
.hero {
    position: relative;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 20% 20%, rgba(124, 58, 237, .40), transparent 60%),
        radial-gradient(900px 500px at 80% 30%, rgba(56, 189, 248, .35), transparent 60%),
        radial-gradient(900px 500px at 55% 65%, rgba(236, 72, 153, .30), transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 20, .68), rgba(10, 10, 20, .88));
}

.min-vh-75 {
    min-height: 75vh;
}

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

.hero-badge {
    background: rgba(255, 255, 255, .12) !important;
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .92);
    padding: .55rem .8rem;
    border-radius: 999px;
    font-weight: 900;
}

.hero-title {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.hero-lead {
    color: rgba(255, 255, 255, .82);
    font-size: 1.06rem;
    max-width: 42rem;
}

.hero-chips {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .90);
    padding: .45rem .7rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 900;
}

.hero-card {
    border-radius: var(--radius);
    padding: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow);
}

.hero-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    margin-bottom: 12px;
}

/* About */
.icon-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 20, 24, .08);
    box-shadow: var(--shadow-soft);
}

.icon-card .ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: #0b1220;
}

/* About media + glow */
.about-media {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.glow-ring {
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(closest-side, rgba(124, 58, 237, .22), transparent 55%),
        radial-gradient(closest-side, rgba(236, 72, 153, .20), transparent 60%),
        radial-gradient(closest-side, rgba(56, 189, 248, .18), transparent 60%);
    filter: blur(10px);
    z-index: 0;
}

.about-panel {
    position: relative;
    z-index: 2;
    background: rgba(11, 10, 20, .82);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    color: #fff;
    max-width: 520px;
    flex: 1;
}

.about-tiles {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 240px;
    margin-top: 6px;
}

.about-panel-top {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.pill {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: .45rem .7rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
}

.tile {
    width: 100%;
    height: 115px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.1) brightness(1.08);
    transition: transform .35s ease, filter .35s ease;
}

.tile:hover {
    transform: translateY(-3px);
    filter: saturate(1.15) brightness(1.15);
}

/* Right side clean (single image + bubbles) */
.about-right {
    position: relative;
    padding: 18px;
    border-radius: var(--radius);
}

.about-image-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .35);
    background: rgba(255, 255, 255, .05);
    transform: translateZ(0);
}

.about-image-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(1.08) contrast(1.05) saturate(1.1);
    transition: transform .55s ease, filter .35s ease;
}

.about-image-card:hover img {
    transform: scale(1.06) rotate(-0.6deg);
    filter: brightness(1.18) contrast(1.08) saturate(1.15);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 10, 20, .10), rgba(11, 10, 20, .65));
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.overlay-pill {
    background: rgba(255, 255, 255, .92);
    color: #0b1220;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

/* Animated bubbles */
.bubble {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .20);
    filter: blur(.2px);
    z-index: 0;
    animation: floatBubble 6s ease-in-out infinite;
}

.bubble.b1 {
    width: 90px;
    height: 90px;
    top: -10px;
    left: -10px;
    animation-delay: 0s;
}

.bubble.b2 {
    width: 60px;
    height: 60px;
    top: 40px;
    right: 8px;
    animation-delay: .8s;
}

.bubble.b3 {
    width: 120px;
    height: 120px;
    bottom: 120px;
    left: 10px;
    animation-delay: 1.4s;
}

.bubble.b4 {
    width: 70px;
    height: 70px;
    bottom: 10px;
    right: 30px;
    animation-delay: 2s;
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translateY(0px);
        opacity: .85;
    }

    50% {
        transform: translateY(-14px);
        opacity: 1;
    }
}

.about-image-card,
.about-panel {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
    .about-right {
        padding: 0;
    }

    .about-image-card img {
        height: 260px;
    }
}

@media (max-width: 991px) {
    .about-media {
        flex-direction: column;
    }

    .about-tiles {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tile {
        height: 140px;
        width: calc(50% - 6px);
    }

    .tile.t3 {
        width: 100%;
        height: 170px;
    }
}

/* Services */
.service-card {
    background: #fff;
    border: 1px solid rgba(15, 20, 24, .08);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(15, 20, 24, .18);
}

.service-head {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid rgba(15, 20, 24, .08);
}

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

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

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 30px rgba(124, 58, 237, .18);
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .20);
}

.service-icon i {
    transition: transform .6s ease;
    transform-origin: center;
}

.service-card:hover .service-icon i {
    transform: rotate(360deg);
}

.service-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 10, 20, .05), rgba(11, 10, 20, .45));
    opacity: .9;
    pointer-events: none;
}

.service-card h5 {
    font-weight: 900;
    margin-bottom: 8px;
}

.note-banner {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(11, 10, 20, .92);
    color: rgba(255, 255, 255, .90);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow);
}

.note-banner a {
    color: #93c5fd;
    font-weight: 900;
    text-decoration: none;
}

.note-banner a:hover {
    text-decoration: underline;
}

@media (max-width: 575px) {
    .service-img img {
        height: 170px;
    }
}

.service-card:hover .service-icon {
    filter: brightness(1.05);
    box-shadow: 0 0 0 6px rgba(236, 72, 153, .12),
        0 18px 40px rgba(56, 189, 248, .18);
}

/* Why */
.why-list {
    display: grid;
    gap: 14px;
}

.why-item {
    display: flex;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(15, 20, 24, .08);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.why-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
}

.why-card {
    background: rgba(11, 10, 20, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 24px;
    color: #fff;
    box-shadow: var(--shadow);
}

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

.policy-list li {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .86);
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list i {
    color: #60a5fa; /* sky-ish */
    margin-top: 2px;
}

/* Achievements */
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 20, 24, .08);
    box-shadow: var(--shadow-soft);
    padding: 20px;
    text-align: center;
    height: 100%;
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px auto;
    color: #fff;
    background: var(--brand);
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-weight: 900;
    margin-top: 6px;
}

/* Gallery */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(15, 20, 24, .08);
    box-shadow: var(--shadow-soft);
    background: #fff;
    height: 100%;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}

.gallery-card:hover .gallery-thumb {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(11, 10, 20, .62));
    opacity: 0;
    transition: opacity .25s ease;
}

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

.gallery-btn {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #0b1014;
    font-weight: 900;
    text-decoration: none;
}

/* Contact */
.contact-card {
    background: #fff;
    border: 1px solid rgba(15, 20, 24, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.contact-info {
    display: grid;
    gap: 12px;
}

.contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 20, 24, .08);
    background: #f8fafc;
}

.contact-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
}

.contact-row a {
    text-decoration: none;
    font-weight: 900;
    color: #0b1220;
}

.contact-row a:hover {
    text-decoration: underline;
}

.contact-form {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(11, 10, 20, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.form-head {
    padding: 18px 18px 0 18px;
}

.form-label {
    font-weight: 900;
    color: rgba(255, 255, 255, .88);
}

.form-control,
.form-select {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .55);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 .25rem rgba(236, 72, 153, .20);
    border-color: rgba(236, 72, 153, .55);
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

/* Map */
.map-wrap {
    background: #0c0b16;
}

.map-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.map-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.ratio-mobile {
    min-height: 320px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(11, 10, 20, .92), rgba(11, 10, 20, 1));
    color: rgba(255, 255, 255, .86);
}

.footer-title {
    font-weight: 900;
    margin-bottom: 12px;
}

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

.footer-links li {
    padding: 6px 0;
}

.footer-links a,
.footer-link {
    color: rgba(255, 255, 255, .74);
    text-decoration: none;
    font-weight: 800;
}

.footer-links a:hover,
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.social {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
    text-decoration: none;
}

.social:hover {
    background: rgba(255, 255, 255, .12);
}

.footer-hr {
    border-color: rgba(255, 255, 255, .12);
}

/* Footer logo image */
.footer-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(236, 72, 153, 0.35));
}

/* Keep brand-mark clean for image */
.brand-mark.sm {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}


/* Floating Buttons */
.float-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.float-btn i {
    font-size: 1.25rem;
}

.float-btn .float-text {
    font-size: .95rem;
}

/* UPDATED: Brand style floating buttons */
.float-btn.whatsapp {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.float-btn.call {
    background: linear-gradient(135deg, var(--sky), var(--lavender));
}

/* Glow effect */
.float-btn::before {
    content: "";
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .28), transparent 45%);
    transform: rotate(18deg);
    animation: glowMove 2.8s ease-in-out infinite;
}

@keyframes glowMove {

    0%,
    100% {
        transform: translateX(-10px) rotate(18deg);
        opacity: .65;
    }

    50% {
        transform: translateX(18px) rotate(18deg);
        opacity: .95;
    }
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .section-pad {
        padding: 64px 0;
    }

    .about-tiles {
        display: none;
    }

    .min-vh-75 {
        min-height: 70vh;
    }
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.brand-title{
		font-size:12px;
	}
	.brand-logo{
		height:27px;
	}
	.cu-fnt-12{
		font-size:12px;
	}
	
}
@media (max-width: 575px) {
    .hero-title {
        font-size: 2.1rem;
    }

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

    .float-btn {
        width: 54px;
        height: 54px;
        justify-content: center;
        padding: 0;
        border-radius: 18px;
    }
}

.text-antiq {
    color: #f5f0ff; /* soft lavender-white */
}

.bright-black-btn {
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, .22);
    background-color: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
}

.bright-black-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .38);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 14px rgba(236, 72, 153, 0.18), 0 0 22px rgba(56, 189, 248, 0.10);
}
