/*close css extra for header/*/
/*.rt-header{*/
/*    background:red !important;*/
/*}*/
/* ══ CSS VARIABLES ══ */
:root {
  --rt-gold: #f5c400;
  --rt-gold-dark: #d4a800;
  --rt-dark: #0f172a;
  --rt-dark2: #1e2d4a;
  --rt-blue: #1850a0;
  --rt-blue-light: #2563eb;
  --rt-text: #1a1a2e;
  --rt-muted: #64748b;
  --rt-white: #ffffff;
  --rt-border: rgba(0,0,0,0.08);
  --rt-shadow: 0 4px 24px rgba(0,0,0,0.10);
  --rt-shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --rt-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
  --topbar-h: 40px;
}
*, *::before, *::after { box-sizing: border-box; }

/* ══ TOPBAR ══ */
.rt-topbar {
  background: linear-gradient(90deg, #0a1628 0%, #0f172a 50%, #0a1628 100%);
  height: var(--topbar-h);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1000;
  position: relative;
}
.rt-topbar__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rt-topbar__contact { display: flex; align-items: center; gap: 20px; }
.rt-topbar__contact a {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.72); text-decoration: none;
  transition: color .2s;
  letter-spacing: .2px;
}
.rt-topbar__contact a:hover { color: var(--rt-gold); }
.rt-topbar__contact a i { font-size: 12px; color: var(--rt-gold); }
.rt-topbar__right { display: flex; align-items: center; gap: 14px; }
.rt-topbar__social { display: flex; align-items: center; gap: 4px; }
.rt-topbar__social a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.60);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; text-decoration: none;
  transition: all .22s var(--rt-ease);
}
.rt-topbar__social a:hover {
  background: var(--rt-gold); border-color: var(--rt-gold);
  color: var(--rt-dark); transform: translateY(-2px);
}
.rt-topbar__div {
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.12);
}
/*new for top bar*/

/* Topbar height mobile pe chhoti karne ke liye */
/*@media (max-width: 768px) {*/
/*  :root {*/
/*    --topbar-h: 32px;*/
/*  }*/

/*  .rt-topbar__contact a {*/
/*    font-size: 10px;*/
/*    gap: 4px;*/
/*  }*/

/*  .rt-topbar__social a {*/
/*    width: 22px;*/
/*    height: 22px;*/
/*    font-size: 9px;*/
/*  }*/
/*}*/
/*new for top bar*/
/* ══ HEADER ══ */
.rt-header {
  background: var(--rt-white);
  height: var(--header-h);
  border-bottom: 1px solid var(--rt-border);
  position: relative; z-index: 998;
  transition: height .3s var(--rt-ease), box-shadow .3s, background .3s;
}
.rt-header.is-sticky {
  position: fixed; top: 0; left: 0; right: 0;
  height: 64px;
  box-shadow: 0 2px 24px rgba(15,23,42,0.12);
  z-index: 998;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.rt-header__inner {
  max-width: 1340px;
  margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.rt-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.rt-logo img { height: 52px; width: auto; transition: height .3s; }
.rt-header.is-sticky .rt-logo img { height: 40px; }

/* ══ DESKTOP NAVBAR ══ */
.rt-navbar {
  display: flex; align-items: center;
  gap: 0; list-style: none; margin: 0; padding: 0;
}
.rt-navbar > li { position: relative; }
.rt-navbar > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 9px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--rt-text); text-decoration: none;
  border-radius: 9px;
  transition: all .22s var(--rt-ease);
  white-space: nowrap; position: relative;
}
.rt-navbar > li > a::after {
  content: ''; position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 2px; background: var(--rt-gold);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--rt-ease);
}
.rt-navbar > li > a:hover,
.rt-navbar > li > a.active { color: var(--rt-blue); background: rgba(24,80,160,0.06); }
.rt-navbar > li > a:hover::after,
.rt-navbar > li > a.active::after { transform: scaleX(1); }
.rt-navbar > li > a .dd-arrow { font-size: 10px; margin-left: 1px; transition: transform .22s; }
.rt-navbar > li:hover > a .dd-arrow { transform: rotate(180deg); }

.rt-navbar .rt-nav-cta > a {
  background: var(--rt-dark); color: #fff !important;
  padding: 9px 18px; margin-left: 6px; border-radius: 9px;
}
.rt-navbar .rt-nav-cta > a:hover { background: var(--rt-gold) !important; color: var(--rt-dark) !important; }
.rt-navbar .rt-nav-cta > a::after { display: none; }

/* ══ LOGIN BUTTON ══ */
.rt-nav-login > a {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  margin-left: 6px !important;
  border-radius: 9px !important;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35) !important;
  transition: all .25s var(--rt-ease) !important;
  font-weight: 700 !important;
}
.rt-nav-login > a:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
  box-shadow: 0 6px 20px rgba(99,102,241,0.5) !important;
  transform: translateY(-1px);
  color: #fff !important;
}
.rt-nav-login > a::after { display: none !important; }
.rt-nav-login > a i { font-size: 14px; }

/* ══ SIMPLE DROPDOWN ══ */
.rt-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 210px; background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: var(--rt-shadow-lg);
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .22s var(--rt-ease);
  z-index: 200;
}
.rt-navbar > li:hover .rt-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.rt-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 500;
  color: var(--rt-text); text-decoration: none;
  transition: all .18s;
}
.rt-dropdown a i { font-size: 15px; color: var(--rt-muted); transition: color .18s; }
.rt-dropdown a:hover { background: rgba(24,80,160,0.05); color: var(--rt-blue); padding-left: 22px; }
.rt-dropdown a:hover i { color: var(--rt-gold); }
.rt-dropdown hr { margin: 5px 14px; border-color: rgba(0,0,0,0.07); }

/* ══ MEGA MENU ══ */
.rt-mega {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px; box-shadow: var(--rt-shadow-lg);
  padding: 22px 20px;
  opacity: 0; visibility: hidden;
  transition: all .22s var(--rt-ease); z-index: 200;
}
.rt-navbar > li:hover .rt-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.rt-mega--services {
  width: 700px;
  display: grid;
  grid-template-columns: repeat(3,1fr); gap: 8px;
}
.rt-mega--about {
  width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr; gap: 8px;
}
.rt-mega__col-title {
  grid-column: 1/-1;
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase; color: var(--rt-muted);
  padding: 0 10px 12px; border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 4px;
}
.rt-mega__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 10px; border-radius: 11px;
  text-decoration: none; color: var(--rt-text);
  transition: background .18s;
}
.rt-mega__item:hover { background: rgba(24,80,160,0.05); }
.rt-mega__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #eef2ff; color: var(--rt-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: all .2s;
}
.rt-mega__item:hover .rt-mega__icon { background: var(--rt-gold); color: var(--rt-dark); }
.rt-mega__item-title { font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--rt-text); margin-bottom: 2px; display: block; }
.rt-mega__item-sub { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--rt-muted); line-height: 1.4; display: block; }
.rt-mega__footer {
  grid-column: 1/-1; margin-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06); padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.rt-mega__footer-link {
  font-size: 13px; font-weight: 700; color: var(--rt-blue);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  transition: color .18s;
}
.rt-mega__footer-link:hover { color: var(--rt-gold); }
.rt-mega__badge {
  background: #fffbeb; color: #7a5800;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(245,196,0,0.4);
}
.rt-mega__stat-box {
  grid-column: 1/-1;
  display: flex; gap: 12px;
  background: linear-gradient(135deg, #0f172a 0%, #1e2d4a 100%);
  border-radius: 12px; padding: 16px 20px;
  margin-top: 4px;
}
.rt-mega__stat {
  flex: 1; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.rt-mega__stat:last-child { border-right: none; }
.rt-mega__stat-num {
  display: block; font-size: 22px; font-weight: 800;
  font-family: 'Syne', sans-serif; color: var(--rt-gold);
  line-height: 1;
}
.rt-mega__stat-lbl {
  display: block; font-size: 11px; color: rgba(255,255,255,0.65);
  margin-top: 4px; font-family: 'DM Sans', sans-serif;
}

/* ══ HAMBURGER ══ */
.rt-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; flex-shrink: 0; z-index: 9999;
  border-radius: 9px; transition: background .2s;
}
.rt-burger:hover { background: rgba(0,0,0,0.05); }
.rt-burger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--rt-text); border-radius: 2px;
  transition: all .28s var(--rt-ease);
}
.rt-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.rt-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rt-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══ OVERLAY ══ */
.rt-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9990; opacity: 0;
  transition: opacity .28s var(--rt-ease);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.rt-overlay.open { opacity: 1; }

/* ══ MOBILE DRAWER ══ */
.rt-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--rt-white);
  z-index: 9995;
  overflow-y: auto; overflow-x: hidden;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .32s var(--rt-ease);
  -webkit-overflow-scrolling: touch;
}
.rt-drawer.open { transform: translateX(0); }

.rt-drawer__banner {
  background: linear-gradient(135deg, #0a1628 0%, #0f172a 60%, #1a2744 100%);
  padding: 16px 20px 14px;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.rt-drawer__banner-logo img { height: 40px; width: auto; }
.rt-drawer__close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; transition: all .2s;
}
.rt-drawer__close:hover { background: #ef4444; border-color: #ef4444; }

.rt-drawer__contact-bar {
  background: #f0f4ff;
  border-bottom: 1px solid rgba(24,80,160,0.12);
  padding: 12px 20px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.rt-drawer__contact-bar a {
  display: flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600;
  color: var(--rt-blue); text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: color .18s;
}
.rt-drawer__contact-bar a i { font-size: 14px; }
.rt-drawer__contact-bar a:hover { color: var(--rt-gold-dark); }

.rt-drawer__search { padding: 16px 18px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.rt-drawer__search-box {
  display: flex; align-items: center; gap: 12px;
  background: #f1f5f9; border: 2px solid #e2e8f0;
  border-radius: 12px; padding: 12px 16px;
  transition: border-color .2s;
}
.rt-drawer__search-box:focus-within { border-color: var(--rt-blue); background: #fff; }
.rt-drawer__search-box i { color: var(--rt-muted); font-size: 17px; }
.rt-drawer__search-box input {
  border: none; background: none; outline: none;
  font-size: 15px; color: var(--rt-text); width: 100%;
  font-family: 'DM Sans', sans-serif;
}
.rt-drawer__search-box input::placeholder { color: #94a3b8; }

.rt-drawer__nav { padding: 12px 16px; flex: 1; }

.rt-drawer__item {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 16px; border-radius: 14px;
  text-decoration: none; color: var(--rt-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  transition: all .2s var(--rt-ease);
  margin-bottom: 4px;
}
.rt-drawer__item:hover,
.rt-drawer__item.active { background: #eef2ff; color: var(--rt-blue); }
.rt-drawer__item .di-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: #eef2ff; color: var(--rt-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; transition: all .2s;
}
.rt-drawer__item:hover .di-icon { background: var(--rt-gold); color: var(--rt-dark); }
.rt-drawer__item .di-label { flex: 1; }
.rt-drawer__item .di-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  background: #fef9c3; color: #7a5800;
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid rgba(245,196,0,.4);
  white-space: nowrap;
}
.rt-drawer__item .di-arr { font-size: 15px; color: #cbd5e1; }

.rt-acc-btn {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 15px 16px; border-radius: 14px;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--rt-text); text-align: left;
  transition: all .2s; margin-bottom: 4px;
}
.rt-acc-btn:hover { background: #eef2ff; color: var(--rt-blue); }
.rt-acc-btn .di-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: #eef2ff; color: var(--rt-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; transition: all .2s;
}
.rt-acc-btn:hover .di-icon { background: var(--rt-gold); color: var(--rt-dark); }
.rt-acc-btn .di-label { flex: 1; }
.rt-acc-btn .di-chevron { font-size: 15px; color: #94a3b8; transition: transform .25s; }
.rt-acc-btn.open .di-chevron { transform: rotate(180deg); }

.rt-acc-panel {
  display: none; flex-direction: column;
  padding: 4px 14px 12px 76px; gap: 3px;
}
.rt-acc-panel.open { display: flex; }
.rt-acc-panel a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 11px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 15.5px; font-weight: 600;
  color: var(--rt-text); transition: all .18s;
}
.rt-acc-panel a i { font-size: 18px; color: #94a3b8; }
.rt-acc-panel a:hover { color: var(--rt-blue); background: #eef2ff; padding-left: 18px; }
.rt-acc-panel a:hover i { color: var(--rt-gold); }

.rt-drawer__sep { height: 1px; background: #e8edf5; margin: 8px 16px 10px; }

.rt-drawer__login-row { padding: 0 16px 4px; }
.rt-drawer__login-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  color: #fff !important;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700;
  text-decoration: none; transition: all .22s;
  box-shadow: 0 4px 16px rgba(99,102,241,0.35);
  letter-spacing: .2px;
}
.rt-drawer__login-btn:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  box-shadow: 0 6px 24px rgba(99,102,241,0.5);
  transform: translateY(-1px);
  color: #fff !important;
}
.rt-drawer__login-btn i { font-size: 18px; }

.rt-drawer__footer {
  padding: 14px 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
  background: #fafbff; flex-shrink: 0;
}
.rt-drawer__cta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%; padding: 16px;
  background: var(--rt-dark); color: #fff !important;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700;
  text-decoration: none; transition: all .22s;
  letter-spacing: .2px;
}
.rt-drawer__cta:hover { background: var(--rt-gold); color: var(--rt-dark) !important; }
.rt-drawer__social {
  display: flex; gap: 10px; margin-top: 14px; justify-content: center;
}
.rt-drawer__social a {
  flex: 1; max-width: 52px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #e2e8f0; border-radius: 12px;
  font-size: 18px; color: var(--rt-muted);
  text-decoration: none; transition: all .2s;
}
.rt-drawer__social a:hover { border-color: var(--rt-gold); color: var(--rt-blue); background: #fffbeb; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  .rt-navbar > li > a { padding: 8px 10px; font-size: 13px; }
}
@media (max-width: 1024px) {
  .rt-navbar, .rt-desktop-only { display: none !important; }
  .rt-burger { display: flex; }
  .rt-overlay { display: block; pointer-events: none; }
  .rt-overlay.open { pointer-events: auto; }
}
@media (max-width: 640px) {
  .rt-topbar__contact a + a { display: none; }
  .rt-topbar__social { display: none !important; }
  .rt-topbar__div { display: none; }
  .rt-topbar { height: auto; }
  .rt-topbar__inner { padding: 8px 16px; justify-content: center; margin: 0; }
  .rt-header__inner { padding: 0 16px; }
}
@media (max-width: 400px) {
  .rt-logo img { height: 42px; }
  .rt-header { height: 64px; }
}
@media (max-width: 390px) {
  .rt-drawer__item,
  .rt-acc-btn { font-size: 18px; padding: 17px 16px; }
  .rt-acc-panel a { font-size: 16px; padding: 14px 14px; }
  .rt-drawer__item .di-icon,
  .rt-acc-btn .di-icon { width: 50px; height: 50px; font-size: 22px; }
}

/* WhatsApp Float Button */
.rt-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waBounce 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.rt-whatsapp-float:hover { transform: scale(1.1); color: white; }
@keyframes waBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }

/* Scroll To Top Button */
.rt-scroll-top {
  position: fixed; bottom: 90px; right: 24px; z-index: 999;
  width: 42px; height: 42px; background: #2563eb; color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.rt-scroll-top.show { opacity: 1; pointer-events: all; }
.rt-scroll-top:hover { background: #1d4ed8; transform: translateY(-2px); color: white; }