:root {
    --bg: #0b1014;
    --ink: #0f1418;
    --paper: #ffffff;
    --muted: #64748b;

    --green: #18b17a;
    --blue: #1e6fe6;

    --brand: linear-gradient(135deg, var(--green), var(--blue));
    --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: #0c1116;
    color: #111827;
}

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

.section-alt {
    background: radial-gradient(1200px 600px at 20% 10%, rgba(24, 177, 122, .12), transparent 60%),
        radial-gradient(900px 500px at 90% 20%, rgba(30, 111, 230, .12), transparent 60%),
        #f7fafc;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(30, 111, 230, .9);
    font-weight: 800;
}

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

.section-text {
    color: #c8d4e5;
}

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

/* Topbar */
.topbar {
    background: linear-gradient(90deg, rgba(24, 177, 122, .25), rgba(30, 111, 230, .25));
    color: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

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

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

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


.brand-title {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.75rem;
    color: #6c757d;
}



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

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

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

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

.btn-brand {
    border: none;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px rgba(24, 177, 122, .22);
    border-radius: 999px;
    font-weight: 800;
}

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

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

.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(24, 177, 122, .12), 0 0 0 12px rgba(30, 111, 230, .08);
}

.brand-title {
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
}

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

/* 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(24, 177, 122, .35), transparent 60%),
        radial-gradient(900px 500px at 80% 30%, rgba(30, 111, 230, .35), transparent 60%),
        linear-gradient(180deg, rgba(10, 14, 18, .70), rgba(10, 14, 18, .85));
}

.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: 800;
}

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

.hero-lead {
    color: rgba(255, 255, 255, .78);
    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, .88);
    padding: .45rem .7rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
}

.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: linear-gradient(135deg, rgba(24, 177, 122, .14), rgba(30, 111, 230, .14));
    color: #0b1220;
}

.about-media {
  position: relative;
  min-height: 380px;

  /* NEW: layout for panel + tiles */
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* keep glow behind */
.glow-ring {
  position: absolute;
  inset: -40px;
  background: radial-gradient(closest-side, rgba(24, 177, 122, .24), transparent 55%),
    radial-gradient(closest-side, rgba(30, 111, 230, .22), transparent 60%);
  filter: blur(10px);
  z-index: 0;
}

/* panel sits nicely */
.about-panel {
  position: relative;
  z-index: 2;
  background: rgba(11, 16, 20, .80);
  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;
}

/* NEW: tiles become normal (no absolute) */
.about-tiles {
  position: relative;   /* CHANGED */
  z-index: 1;
  display: flex;        /* CHANGED */
  flex-direction: column;
  gap: 12px;
  width: 240px;         /* fixed column width */
  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: 800;
    color: rgba(255, 255, 255, .9);
}

.about-tiles {
    position: absolute;
    right: 0;
    bottom: -10px;
    display: grid;
    gap: 10px;
    z-index: 0;
}

.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);
}

/* Single image card */
.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);
}

/* Image styling */
.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;
}

/* Hover: premium zoom + tilt */
.about-image-card:hover img{
  transform: scale(1.06) rotate(-0.6deg);
  filter: brightness(1.18) contrast(1.08) saturate(1.15);
}

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

/* Overlay pill */
.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,.18);
  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; }
}

/* Keep image and panel above bubbles */
.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);
}

/* NEW: top area with image + icon */
.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);
}

/* Icon top-left */
.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(30, 111, 230, .18);
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.20);
}

/* 360 rotation effect on hover */
.service-icon i{
  transition: transform .6s ease;
  transform-origin: center;
}

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

/* Optional: a soft gradient overlay on image for luxury feel */
.service-head::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,16,20,.05), rgba(11,16,20,.45));
  opacity: .9;
  pointer-events:none;
}

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

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

.note-banner a {
  color: #7dd3fc;
  font-weight: 800;
  text-decoration: none;
}

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

/* Responsive tweak */
@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(24,177,122,.12), 0 18px 40px rgba(30,111,230,.22);
}


/* 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: linear-gradient(135deg, rgba(24, 177, 122, .14), rgba(30, 111, 230, .14));
}

.why-card {
    background: rgba(11, 16, 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: #34d399;
    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: 800;
    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, 16, 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: linear-gradient(135deg, rgba(24, 177, 122, .16), rgba(30, 111, 230, .16));
}

.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, 16, 20, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

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

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

.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(30, 111, 230, .20);
    border-color: rgba(30, 111, 230, .55);
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

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

.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, 16, 20, .92), rgba(11, 16, 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: 700;
}

.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);
}

/* 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;
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.float-btn.call {
    background: linear-gradient(135deg, var(--blue), #0ea5e9);
}

/* 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) {
	.header{
		position:relative;
	}
    .section-pad {
        padding: 64px 0;
    }

    .about-tiles {
        display: none;
    }

    .min-vh-75 {
        min-height: 70vh;
    }
}
@media(max-width:767px)
{
	.mb-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
}

@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: antiquewhite;
}


.bright-black-btn {
  color: #e0e0e0;                 /* brighter text */
  border-color: #444;             /* visible dark border */
  background-color: transparent;
}

.bright-black-btn:hover {
  color: #fff;
  border-color: #777;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}
