:root {
  /* Pastel theme (light sky blue, light orange, light green, light pink) */
  --sky: #8fd3ff;
  --orange: #ffd2a6;
  --green: #bff2c3;
  --pink: #ffc2dd;

  --ink: #1c2330;
  --muted: #667085;

  --bg: #fbfcff;
  --card: rgba(255, 255, 255, 0.85);
  --line: rgba(28, 35, 48, 0.10);

  --radius: 18px;
  --shadow: 0 18px 45px rgba(22, 38, 62, 0.12);
  --shadowSoft: 0 12px 30px rgba(22, 38, 62, 0.10);
}
html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(143, 211, 255, .25), transparent 55%),
    radial-gradient(1000px 600px at 95% 10%, rgba(255, 194, 221, .22), transparent 55%),
    radial-gradient(900px 500px at 30% 90%, rgba(191, 242, 195, .20), transparent 60%),
    var(--bg);
}

a {
  text-decoration: none;
}

.shadow-soft {
  box-shadow: var(--shadowSoft);
}

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

.section-bg {
  background: linear-gradient(180deg, rgba(224, 224, 224, 0.65), rgba(241, 241, 241, 0.35));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(143, 211, 255, .25);
  border: 1px solid rgba(143, 211, 255, .45);
  color: #155a86;
  font-weight: 600;
}

.section-title .title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .2px;
  margin-top: 12px;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(90deg, #1f7aa8, #ff6fae, #47b75a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-soft {
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.btn-soft:hover {
  transform: translateY(-1px);
}

.btn-gradient {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), var(--pink), var(--green));
  color: #0f172a !important;
  box-shadow: 0 16px 35px rgba(143, 211, 255, .25);
  padding: 10px 16px;
}

.btn-gradient:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, rgba(143, 211, 255, .40), rgba(255, 210, 166, .35), rgba(191, 242, 195, .35), rgba(255, 194, 221, .30));
  border-bottom: 1px solid rgba(28, 35, 48, 0.08);
}

.topbar-item a {
  color: #0f172a;
  font-weight: 500;
}

.topbar-cta {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .06);
}

@media(max-width:767px){
  .topbar{
    /* display:none; */
  }
}

/* ===== Navbar | Carnival Event ===== */
.glass-nav {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Nav Links */
.navbar .nav-link {
  font-weight: 600;
  color: #0f172a;
  border-radius: 999px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  background: linear-gradient(135deg,
      rgba(255, 106, 0, 0.18),
      rgba(238, 9, 121, 0.18));
  color: #000;
}

.navbar .nav-link.active {
  background: linear-gradient(135deg,
      rgba(255, 106, 0, 0.28),
      rgba(238, 9, 121, 0.25));
  color: #000;
}

/* Brand Badge */
.brand-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(255, 106, 0, 0.75),
      rgba(238, 9, 121, 0.70));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 35px rgba(238, 9, 121, 0.35);
}

.brand-badge i {
  font-size: 1.25rem;
  color: #fff;
}

/* Brand Text */
.brand-title {
  display: block;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 1.05rem;
  color: #0f172a;
}

.brand-subtitle {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: -2px;
}

/* Logo */
.brand-logo {
  height: 84px;
  width: auto;
}




/* ===== Hero | Carnival Event ===== */
.hero{
  position:relative;
  overflow:hidden;
}

/* Carousel image fix */
.carousel-item img{
  width:100%;
  height:78vh;
  object-fit:cover;
}

/* Caption */
.carousel-caption{
  left:0;
  right:0;
  bottom:12%;
  text-align:left;
}

/* Caption Card */
.caption-card{
  max-width:720px;
  padding:28px;
  border-radius:20px;
  background:linear-gradient(135deg,
      rgba(255,106,0,.30),
      rgba(238,9,121,.35));
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 18px 45px rgba(0,0,0,.25);
}

.caption-card h1,
.caption-card h2{
  color:#fff;
  text-shadow:0 4px 14px rgba(0,0,0,.35);
}

.caption-card p{
  color:rgba(255,255,255,.95);
}

/* Chips */
.chip{
  display:inline-flex;
  align-items:center;
  padding:7px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:.85rem;
}

/* Hero Strip */
.hero-strip-wrap{
  margin-top:-40px;
  position:relative;
  z-index:5;
}

.hero-strip{
  background:rgba(255,228,228,.88);
  border-radius:24px;
  padding:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  backdrop-filter:blur(10px);
}

/* ================= MOBILE FIX ================= */
@media(max-width:768px){

  .carousel-item img{
    height:65vh;
  }

  .carousel-caption{
    bottom:10%;
    padding:0 12px;
  }

  .caption-card{
    max-width:100%;
    padding:18px;
    border-radius:16px;
  }

  .caption-card h1,
  .caption-card h2{
    font-size:1.4rem;
    line-height:1.3;
  }

  .caption-card p{
    font-size:.9rem;
  }

  .hero-strip-wrap{
    margin-top:-20px;
    padding:0 10px;
  }

  .hero-strip{
    grid-template-columns:repeat(2,1fr);
    padding:12px;
    gap:10px;
  }
}

@media(max-width:480px){

  .carousel-item img{
    height:60vh;
  }

  .hero-strip{
    grid-template-columns:1fr;
  }
}












/* About Section – Premium Look */
.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(28, 35, 48, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.info-card i {
  font-size: 1.4rem;
  color: #1f9d55;
  background: rgba(191, 242, 195, 0.35);
  padding: 10px;
  border-radius: 14px;
}

/* About Image Area */
.about-media {
  position: relative;
  padding: 18px;
}

.about-photo {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(28, 35, 48, 0.10);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.10);
}

.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-photo:hover img {
  transform: scale(1.05);
}

/* Decorative Floating Bubbles */
.media-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.7;
  z-index: -1;
}

.bubble-sky {
  width: 160px;
  height: 160px;
  background: rgba(143, 211, 255, 0.55);
  top: -30px;
  left: -30px;
}

.bubble-pink {
  width: 180px;
  height: 180px;
  background: rgba(255, 194, 221, 0.55);
  bottom: 10px;
  right: -40px;
}

.bubble-green {
  width: 130px;
  height: 130px;
  background: rgba(191, 242, 195, 0.55);
  top: 40%;
  right: -30px;
}

/* Experience Badge */
.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(28, 35, 48, 0.10);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.badge-number {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #1f7aa8, #ff6fae);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: "Playfair Display", serif;
}


.badge-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.4px;
}





/* Services */
.service-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(28, 35, 48, 0.08);
  transition: all .35s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

.service-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  color: #fff;
}

.tag-sky {
  background: linear-gradient(135deg, #1f7aa8, #6fd6ff);
}

.tag-orange {
  background: linear-gradient(135deg, #ff9a3d, #ff6a00);
}

.tag-green {
  background: linear-gradient(135deg, #3bb273, #2ecc71);
}

.tag-pink {
  background: linear-gradient(135deg, #ff6fae, #ff3d85);
}

.service-body {
  padding: 26px 22px 28px;
}

.service-body h5 {
  font-weight: 700;
  margin-top: 12px;
}

.service-body p {
  color: #6b7280;
  font-size: .95rem;
  margin-bottom: 0;
}

/* Icon Pill */
.icon-pill {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.pill-sky {
  background: rgba(143, 211, 255, .35);
  color: #1f7aa8;
}

.pill-orange {
  background: rgba(255, 166, 87, .35);
  color: #ff7a18;
}

.pill-green {
  background: rgba(191, 242, 195, .35);
  color: #2f9b4a;
}

.pill-pink {
  background: rgba(255, 194, 221, .35);
  color: #ff3d85;
}












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

.why-item {
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(28, 35, 48, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .06);
}

.why-item i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(143, 211, 255, .30);
  border: 1px solid rgba(143, 211, 255, .35);
  color: #155a86;
}

.why-media {
  border-radius: 26px;
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(28, 35, 48, 0.10);
  overflow: hidden;
  min-height: 420px;
}

.why-media-inner {
  position: relative;
  padding: 22px;
  height: 100%;
  display: grid;
  gap: 14px;
}

.feature-box {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(28, 35, 48, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .06);
  position: relative;
  z-index: 2;
}

.feature-box i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 194, 221, .30);
  border: 1px solid rgba(255, 194, 221, .35);
}

.soft-blob {
  position: absolute;
  filter: blur(25px);
  opacity: .75;
  z-index: 1;
}

.blob-1 {
  width: 220px;
  height: 220px;
  background: rgba(143, 211, 255, .55);
  top: 10px;
  right: 10px;
  border-radius: 50%;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: rgba(191, 242, 195, .55);
  bottom: 0;
  left: 0;
  border-radius: 50%;
}

.blob-3 {
  width: 190px;
  height: 190px;
  background: rgba(255, 210, 166, .55);
  bottom: 40px;
  right: 30px;
  border-radius: 50%;
}

/* Achievements */
.stat-card {
  text-align: center;
  padding: 20px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(28, 35, 48, 0.10);
}

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(28, 35, 48, 0.10);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Playfair Display", serif;
}

.stat-label {
  color: var(--muted);
  font-weight: 600;
}

/* Gallery */
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(28, 35, 48, 0.10);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .08);
  transition: transform .25s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .55));
  opacity: 0;
  transition: opacity .25s ease;
}

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

.gallery-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .60);
  font-size: .85rem;
  font-weight: 700;
}

/* Contact */
.contact-card,
.form-card {
  border-radius: 26px;
  padding: 22px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(28, 35, 48, 0.10);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(28, 35, 48, 0.08);
}

.contact-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(191, 242, 195, .45);
  border: 1px solid rgba(191, 242, 195, .55);
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid rgba(28, 35, 48, 0.12);
  padding: 12px 12px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(143, 211, 255, .9);
  box-shadow: 0 0 0 .25rem rgba(143, 211, 255, .25);
}

/* Map */
.map-wrap {
  padding: 70px 0 90px;
}

.map-card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(28, 35, 48, 0.10);
}

.map-title {
  padding: 18px 18px 10px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .80));
  border-top: 1px solid var(--line);
  padding-top: 42px;
}

.footer-head {
  font-weight: 800;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: #0f172a;
  font-weight: 600;
}

.footer-links a:hover {
  color: #155a86;
}

.footer-title {
  font-weight: 900;
}

.footer-sub {
  font-size: .85rem;
  color: var(--muted);
  margin-top: -3px;
}

.footer-line {
  border-color: rgba(28, 35, 48, 0.10);
}

/* Floating buttons */
.float-btn {
  position: fixed;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  z-index: 999;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
  transition: transform .2s ease;
}

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

.float-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.float-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(15, 23, 42, .85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: .82rem;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: .2s ease;
  white-space: nowrap;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.float-whatsapp {
  bottom: 96px;
  background: rgb(10 169 22);
  animation: glowGreen 1.8s infinite ease-in-out;
}

.float-call {
  bottom: 228px;
  background: rgb(225 119 15);
  animation: glowOrange 1.8s infinite ease-in-out;
}

@keyframes glowGreen {

  0%,
  100% {
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18), 0 0 0 0 rgba(47, 155, 74, .25);
  }

  50% {
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18), 0 0 0 12px rgba(47, 155, 74, .12);
  }
}

@keyframes glowOrange {

  0%,
  100% {
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18), 0 0 0 0 rgba(209, 122, 36, .22);
  }

  50% {
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18), 0 0 0 12px rgba(209, 122, 36, .10);
  }
}

/* Scroll top */
.scroll-top {
  position: fixed;
  left: 18px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 16px;
  background: rgba(143, 211, 255, .45);
  display: none;
  place-items: center;
  z-index: 998;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .16);
}

.scroll-top i {
  font-size: 1.6rem;
}

/* Responsive */
@media (max-width: 992px) {
  .carousel-caption {
    bottom: 10%;
  }

  .caption-card {
    max-width: 92%;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-photo img {
    height: 420px;
  }
}

@media(max-width:767px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
}
@media (max-width: 576px) {
	
  .section-pad {
    padding: 70px 0;
  }

  .hero-img {
    height: 66vh;
    min-height: 460px;
  }

  .caption-card {
    padding: 16px;
  }

  .hero-strip {
    margin-top: -22px;
  }

  .strip-item {
    padding: 10px;
  }

  .gallery-item img {
    height: 200px;
  }
}
@media(max-width:424px)
{
	.cu-fn{
		font-size:12px;
	}
}
@media(max-width:374px)
{
	.cu-fn{
		font-size:10px;
	}
}