:root {
  --navy: #0B1F4B;
  --navy-light: #132960;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --accent: #E8530A;
  --sky: #1E90FF;
  --soft: #F4F7FE;
  --white: #ffffff;
  --text: #2d3748;
  --muted: #718096;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* -- TOP BAR -- */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--gold);
}
.topbar a { color: #cce0ff; text-decoration: none; transition: color .3s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); margin: 0 10px; }

.btn-enquiry {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff !important;
  border-radius: 20px;
  padding: 4px 16px;
  font-weight: 700;
  font-size: .8rem;
  border: none;
  animation: pulse-btn 2s infinite;
  transition: transform .2s;
}
.btn-enquiry:hover { transform: scale(1.06); }
@keyframes pulse-btn {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,160,23,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(212,160,23,0); }
}

/* -- NAVBAR -- */
.navbar {
  background: rgba(11,31,75,.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  transition: all .4s;
  border-bottom: 1px solid rgba(212,160,23,.2);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  padding: 6px 0;
}
.navbar-brand img { height: 66px; }
.brand-text { color: #fff !important; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; line-height: 1.1; }
.brand-text span { color: var(--gold-light); display: block; font-size: .68rem; font-family: 'Nunito', sans-serif; letter-spacing: 2px; font-weight: 600; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: 6px 14px !important;
  position: relative;
  transition: color .3s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all .3s;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover { color: var(--gold-light) !important; }
.navbar-nav .nav-link:hover::after { width: 70%; }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 22px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  margin-left: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,.4); }
.btn-nav-cta::after { display: none !important; }

/* -- HERO SLIDER -- */
#heroSlider { position: relative; }
.slide-item {
  height: 92vh;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.carousel-item.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,31,75,.88) 45%, rgba(11,31,75,.3) 100%);
}
.slide-content { position: relative; z-index: 2; }
.slide-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  animation: fadeInDown .6s .2s both;
}
.slide-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInLeft .7s .3s both;
}
.slide-content h1 span { color: var(--gold-light); }
.slide-content p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
  animation: fadeInLeft .7s .45s both;
}
.slide-btns { animation: fadeInUp .7s .55s both; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,160,23,.4); color: #fff; }
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 30px;
  padding: 11px 28px;
  font-weight: 700;
  transition: all .3s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  margin: 0 4px;
  transition: all .3s;
}
.carousel-indicators .active { background: var(--gold); width: 30px; border-radius: 5px; }

/* slide backgrounds using CSS gradients */
.slide-bg-1 { background-image:url('../media/uqc-24.jpeg'); }
.slide-bg-2 { background-image: url('../media/uqc-25.jpeg'); }
.slide-bg-3 { background-image: url('../media/uqc-20.jpeg'); }

/* -- SECTION HEADERS -- */
.section-badge {
  display: inline-block;
  background: rgba(212,160,23,.15);
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(212,160,23,.3);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); line-height: 1.2; }
.section-title span { color: var(--gold); }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 2px;
  margin: 14px auto;
}
.section-divider.left { margin-left: 0; }

/* -- ABOUT -- */
#about { padding: 90px 0; background: var(--soft); }
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img-main {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(11,31,75,.18);
  position: relative;
  z-index: 2;
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 16px;
  padding: 18px 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(212,160,23,.3);
  text-align: center;
}
.about-img-badge .num { font-size: 2.2rem; line-height: 1; }
.about-img-badge .lbl { font-size: .72rem; font-family: 'Nunito', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.about-feature .icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, var(--navy), var(--sky)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }

/* -- SERVICES -- */
#services { padding: 90px 0; background: #fff; }
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px 28px;
  border: 1.5px solid #e8edf8;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  height: 100%;
	text-align:center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(11,31,75,.12);
  transform: translateY(-8px);
}
.service-icon {
  width: 66px; height: 66px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #1a4a8a);
  color: #fff;
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform .3s;
	margin:0 auto;
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.1); background: linear-gradient(135deg, var(--gold), var(--accent)); }
.service-card h5 {  margin: 22px;font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.service-link { color: var(--sky); font-weight: 700; font-size: .88rem; text-decoration: none; transition: gap .3s; display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; }
.service-link:hover { color: var(--gold); }

/* -- WHY CHOOSE -- */
#whychoose { padding: 90px 0; background: var(--navy); position: relative; overflow: hidden; }
#whychoose::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(212,160,23,.06);
}
#whychoose::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(30,144,255,.06);
}
#whychoose .section-title { color: #fff; }
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all .4s;
  height: 100%;
  backdrop-filter: blur(6px);
}
.why-card:hover {
  background: rgba(212,160,23,.12);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.why-icon {
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.why-card h5 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.7; }

/* -- FEATURES -- */
#features { padding: 90px 0; background: var(--soft); }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1.5px solid #e4eaf6;
  transition: all .35s;
  height: 100%;
}
.feature-item:hover {
  box-shadow: 0 12px 40px rgba(11,31,75,.1);
  border-color: var(--sky);
  transform: translateX(6px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f4ff, #c5dcf8);
  color: var(--navy);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
}
.feature-item:hover .feature-icon { background: linear-gradient(135deg, var(--navy), var(--sky)); color: #fff; }
.feature-item h6 { color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.feature-item p { color: var(--muted); font-size: .85rem; line-height: 1.6; margin: 0; }

/* -- STATS -- */
#stats { padding: 70px 0; background: linear-gradient(135deg, var(--navy) 0%, #0f2d6b 50%, #1a1a6e 100%); }
.stat-card { text-align: center; padding: 20px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .95rem; font-weight: 600; }
.stat-divider { width: 1px; background: rgba(255,255,255,.12); height: 80px; margin: auto; }

/* -- CTA -- */
#cta { padding: 90px 0; background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%); position: relative; overflow: hidden; }
#cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
#cta::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(0,0,0,.08);
  border-radius: 50%;
}
#cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
#cta p { color: rgba(255,255,255,.88); font-size: 1.1rem; }
.btn-cta-white {
  background: #fff;
  color: var(--accent);
  border-radius: 30px;
  padding: 13px 32px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  transition: all .3s;
}
.btn-cta-white:hover { background: var(--navy); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 30px;
  padding: 11px 28px;
  font-weight: 700;
  transition: all .3s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

/* -- FAQ -- */
#faq { padding: 90px 0; background: #fff; }
.accordion-item {
  border: 1.5px solid #e4eaf6;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.accordion-item:hover { box-shadow: 0 6px 24px rgba(11,31,75,.08); }
.accordion-button {
  background: #fff !important;
  color: var(--navy) !important;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--soft), #fff) !important;
  color: var(--sky) !important;
}
.accordion-button::after { filter: hue-rotate(200deg); }
.accordion-body { font-size: .9rem; color: var(--muted); line-height: 1.8; }

/* -- FOOTER -- */
footer {
  background: #071530;
  color: rgba(255,255,255,.72);
  padding: 70px 0 0;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo .brand-text { color: #fff !important; }
footer h5 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px; background: var(--gold); border-radius: 2px; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .3s; font-size: .9rem; }
footer a:hover { color: var(--gold-light); }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { display: flex; align-items: center; gap: 8px; }
footer ul li a::before { content: ''; color: var(--gold); font-size: 1.2rem; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact .fc-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(212,160,23,.15); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  margin-top: 50px;
  font-size: .84rem;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem;
  margin-right: 6px;
  transition: all .3s;
}
.social-links a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* -- FLOATING BUTTONS -- */
.floating-btns {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: all .3s;
  position: relative;
  animation: float-anim 3s ease-in-out infinite;
}
.float-btn:hover { transform: scale(1.15); color: #fff; }
.float-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); animation-delay: 0s; }
.float-btn.call      { background: linear-gradient(135deg, var(--sky), #0052cc); animation-delay: .4s; }
.float-btn .tooltip-label {
  position: absolute;
  right: 60px;
  background: var(--navy);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.float-btn:hover .tooltip-label { opacity: 1; }
@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* -- SCROLL TO TOP -- */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 18px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(11,31,75,.35);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--gold); }

/* -- REVEAL ANIMATIONS -- */
.reveal { opacity: 0; transform: translateY(40px); transition: all .7s cubic-bezier(.25,.8,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all .7s cubic-bezier(.25,.8,.25,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all .7s cubic-bezier(.25,.8,.25,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* -- ENQUIRY MODAL -- */
.modal-header { background: linear-gradient(135deg, var(--navy), #1a4a8a); color: #fff; }
.modal-header .btn-close { filter: invert(1); }
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: 700;
  width: 100%;
  transition: all .3s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,160,23,.35); color: #fff; }

/* -- COUNTER -- */
.counter-num { display: inline-block; }

/* -- RESPONSIVE -- */
@media (max-width: 768px) {
  .slide-item { height: 70vh; }
  .about-img-badge { bottom: -12px; right: -10px; }
  .stat-divider { display: none; }
}


 :root {
      --navy:   #0b2545;
      --navy2:  #0d2f5e;
      --gold:   #c8902a;
      --gold2:  #e8a830;
      --white:  #ffffff;
      --offwht: #f6f8fc;
      --grey:   #6c7a92;
      --dark:   #060f1e;
      --radius: 16px;
      --shadow: 0 24px 64px rgba(11,37,69,.18);
    }

   

   
    /* -- HERO STRIP ----------------------- */
    .contact-hero {
      position: relative;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0d3b72 100%);
      padding: 70px 40px 90px;
      overflow: hidden;
      text-align: center;
    }
    .contact-hero::before {
      content:'';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 600px 400px at 80% 50%, rgba(200,144,42,.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 10% 80%, rgba(255,255,255,.04) 0%, transparent 70%);
    }
    /* animated rings */
    .hero-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(200,144,42,.15);
      animation: pulseRing 6s ease-in-out infinite;
    }
    .hero-ring:nth-child(1) { width:300px; height:300px; top:-80px; right:-60px; animation-delay: 0s; }
    .hero-ring:nth-child(2) { width:500px; height:500px; top:-160px; right:-140px; animation-delay:1.5s; }
    .hero-ring:nth-child(3) { width:200px; height:200px; bottom:-60px; left:-40px; animation-delay:3s; }
    @keyframes pulseRing {
      0%,100% { opacity:.4; transform:scale(1); }
      50%      { opacity:.9; transform:scale(1.06); }
    }
    /* floating dots */
    .fdot {
      position: absolute;
      border-radius: 50%;
      background: var(--gold);
      animation: floatDot 5s ease-in-out infinite;
    }
    .fdot:nth-child(4) { width:8px;  height:8px;  top:20%; left:12%; animation-delay:0s; }
    .fdot:nth-child(5) { width:5px;  height:5px;  top:60%; left:25%; animation-delay:1s; opacity:.6; }
    .fdot:nth-child(6) { width:10px; height:10px; bottom:25%; right:18%; animation-delay:2s; opacity:.4; }
    @keyframes floatDot {
      0%,100% { transform:translateY(0); }
      50%      { transform:translateY(-16px); }
    }

    .hero-label {
      position: relative;
      font-size: .72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold2);
      font-weight: 500;
      margin-bottom: 12px;
    }
    .hero-title {
      position: relative;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      color: #fff;
      font-weight: 600;
      line-height: 1.15;
    }
    .hero-title span { color: var(--gold2); }
    .hero-subtitle {
      position: relative;
      color: rgba(255,255,255,.6);
      font-size: .95rem;
      margin-top: 14px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }
    /* wave divider */
    .wave-divider {
      position: absolute;
      bottom: -2px;
      left: 0; width: 100%;
      line-height: 0;
    }
    .wave-divider svg { display:block; }
	
	.servicedetails
	{
		background: #fff;
  border-radius: 20px;
  padding: 36px 28px 28px;
  border: 1.5px solid #e8edf8;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  height: 100%;
	}