:root {
   --main-color: #1B2D4F;           /* Deep Navy — logo "K" & brand name */
  --primary-color: #1B2D4F;        /* Deep Navy — primary brand color */
  --secondary-color: #B8962E;      /* Rich Gold — logo bars & "B" icon */
  --text-color: #C9A84C;           /* Medium Gold — subheadings / accents */
  --tertiary-color: #D4AF5A;       /* Light Gold — highlights & hover */
  --button-color: #B8962E;         /* Rich Gold — CTAs & buttons */
  --text-info: #1B2D4F !important;
  /*#f0b94e; yellows tik*/
  /*#f6f4f0  servce back*/ 
   /*color:#379a4a; green*/
  
  /**/
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Special Gothic", sans-serif;
}
.body {
  position: relative;
}

/* navbar */
.navbar {
  user-select: none;
  position: sticky !important;
  top: 0px;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid black;
  /* background: var(--primary-color) !important; */
  background-color: #fff;     
  color: #1B2D4F;   
  /*background:#061626 !important;*/
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-toggler {
  box-shadow: none !important;
  border: 1px solid #fff !important;
}
.navLinks {
  justify-content: center;
  align-items: center;
}
.navLinks > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.navLinks > ul > li {
  margin: 10px 0px 0px 10px;
  
}
.navLinks > ul > li > a {
  /*color:#6ac5c5;*/
  /* color:#fff; */
   color: #1B2D4F;   
  text-decoration: none;
  cursor: pointer;
  /*transition: all 0.1s linear;*/
  font-size:18px;
  /*font-weight: 600;*/
  padding: 3px 10px;
  /*border-radius: 20px;*/
  /*background-color: #005fb804;*/
}
.navLinks > ul > li > a:hover {
  /*background-color: #005EB8;*/
  color:#f0b94e;;
}
.header-button{
  background-color: var(--button-color);
    color: white;
    border: none;
    width: fit-content;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 15px 1px 15px 1px;
    margin-bottom: 10px;
    transition: all 0.3s linear;
    text-decoration: none;
}
.header-button:hover{
  background-color: var(--button-color);
    color: white !important;
    border: none !important;
    width: fit-content;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 15px 1px 15px 1px;
    margin-bottom: 10px;
    transition: all 0.3s linear;
    text-decoration: none;
}
.offcanva-link {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}


/* services */
.services {
  position: relative;
  z-index: 50;
  max-height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #f6f4f0 !important;
}
.servicesList > ul {
  list-style: none;
}
.servicesList-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-color);

}
.servicesList-viewMore {
  text-decoration: none;
 color: #B8962E;
   
  font-weight: 600;
  font-size: 13px;
}
.servicesList-role a {
  color: black;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 5px;
}
.servicesList-role a:hover {

 color: #B8962E;
}
.servicesList-viewMoreTop {
  border-top: 1px dashed var(--primary-color);
  margin-bottom: 10px;
}
.crossIcon {
  position: fixed;
  right: 150px;
  top: 80px;
  padding: 2px 7px;
  border-radius: 50%;
  color: black;
  @media (max-width: 500px) {
    right: 40px;
  }
}
  

.crossIcon:hover {
  color: white;
  background-color:var(--primary-color);
}
/* ============================================================
   KHAJANCHI BROTHERS — FOOTER CSS
   Navy #1B2D4F | Gold #B8962E | Light Gold #D4AF5A
   ============================================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}

:root{
  --navy:     #1B2D4F;
  --navy-dk:  #0f1d33;
  --navy-lt:  #243d65;
  --gold:     #B8962E;
  --gold-lt:  #D4AF5A;
  --gold-pale:#f7f3ea;
  --gold-bdr: rgba(184,150,46,0.30);
  --white:    #ffffff;
  --white-80: rgba(255,255,255,0.80);
  --white-55: rgba(255,255,255,0.55);
  --white-30: rgba(255,255,255,0.30);
  --white-12: rgba(255,255,255,0.12);
  --white-08: rgba(255,255,255,0.08);
  --bdr:      rgba(255,255,255,0.10);
  --radius:   12px;
  --radius-sm:8px;
  --trans:    0.25s ease;
  --font:     'Segoe UI',Arial,sans-serif;
}

/* ── Container ── */
.kf-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* ══════════════════════════════════════
   PRE-FOOTER — NEWSLETTER STRIP
══════════════════════════════════════ */
.kf-prefooter{
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-lt) 100%);
  padding:52px 0;
  font-family:var(--font);
}
.kf-prefooter-inner{
  display:flex;
  align-items:center;
  gap:48px;
  flex-wrap:wrap;
}
.kf-pre-left{flex:1;min-width:260px;}

.kf-pre-tag{
  display:inline-block;
  background:rgba(27,45,79,0.15);
  color:var(--navy);
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:5px 14px;
  border-radius:30px;
  margin-bottom:12px;
  border:1px solid rgba(27,45,79,0.20);
}
.kf-pre-left h3{
  font-size:24px;
  font-weight:800;
  color:var(--navy);
  line-height:1.3;
  margin-bottom:10px;
}
.kf-pre-left p{
  font-size:14px;
  color:rgba(27,45,79,0.75);
  line-height:1.65;
}

.kf-newsletter{flex:1.2;min-width:280px;}
.kf-form-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:10px;
}
.kf-inp{
  flex:1;
  min-width:160px;
  padding:13px 16px;
  border:2px solid rgba(27,45,79,0.20);
  border-radius:var(--radius-sm);
  font-size:14px;
  background:rgba(255,255,255,0.85);
  color:var(--navy);
  outline:none;
  transition:border-color var(--trans);
  font-family:var(--font);
}
.kf-inp::placeholder{color:rgba(27,45,79,0.50);}
.kf-inp:focus{border-color:var(--navy);background:var(--white);}

.kf-sub-btn{
  padding:13px 24px;
  background:var(--navy);
  color:var(--white);
  border:none;
  border-radius:var(--radius-sm);
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:background var(--trans),transform var(--trans);
  white-space:nowrap;
  font-family:var(--font);
}
.kf-sub-btn:hover{background:var(--navy-dk);transform:translateX(3px);}
.kf-form-note{font-size:12px;color:rgba(27,45,79,0.65);}


/* ══════════════════════════════════════
   MAIN FOOTER
══════════════════════════════════════ */
.kf-footer{
  background:var(--navy);
  font-family:var(--font);
  padding-top:60px;
}

/* ── 4-Column Grid ── */
.kf-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.3fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid var(--bdr);
}

/* ── Column Shared ── */
.kf-col{}

.kf-col-h{
  font-size:14px;
  font-weight:700;
  color:var(--white);
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:20px;
  padding-bottom:10px;
  border-bottom:2px solid var(--gold);
  display:inline-block;
}

/* ── Brand Column ── */
.kf-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.kf-logo-icon{
  display:flex;
  align-items:center;
  background:var(--gold);
  border-radius:var(--radius-sm);
  padding:6px 10px;
  gap:0;
}
.kl-k{font-size:22px;font-weight:900;color:var(--navy);font-family:var(--font);line-height:1;}
.kl-b{font-size:22px;font-weight:900;color:var(--white);font-family:var(--font);line-height:1;}
.kf-logo-words{display:flex;flex-direction:column;gap:1px;}
.kf-lname{font-size:16px;font-weight:800;color:var(--white);line-height:1.1;}
.kf-lsub{font-size:10px;font-weight:500;color:var(--gold-lt);letter-spacing:1.5px;text-transform:uppercase;}

.kf-about{
  font-size:13.5px;
  color:var(--white-80);
  line-height:1.75;
  margin-bottom:18px;
}

.kf-certs{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:16px;
}
.kf-cert{
  font-size:12px;
  color:var(--white-80);
}

.kf-google-rating{
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--white-08);
  border:1px solid var(--bdr);
  border-radius:var(--radius-sm);
  padding:8px 14px;
  margin-bottom:20px;
}
.kf-gstars{color:var(--gold);font-size:14px;letter-spacing:1px;}
.kf-gtext{font-size:12px;color:var(--white-80);}

/* ── Social Icons ── */
.kf-socials{display:flex;gap:8px;flex-wrap:wrap;}
.kf-soc{
  width:36px;height:36px;
  border-radius:var(--radius-sm);
  background:var(--white-08);
  border:1px solid var(--bdr);
  display:flex;align-items:center;justify-content:center;
  color:var(--white-80);
  text-decoration:none;
  transition:all var(--trans);
}
.kf-soc:hover{transform:translateY(-3px);}
.kf-soc-fb:hover{background:#1877F2;border-color:#1877F2;color:var(--white);}
.kf-soc-x:hover{background:#000;border-color:#000;color:var(--white);}
.kf-soc-li:hover{background:#0A66C2;border-color:#0A66C2;color:var(--white);}
.kf-soc-ig:hover{background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%);border-color:transparent;color:var(--white);}
.kf-soc-wa:hover{background:#25d366;border-color:#25d366;color:var(--white);}
.kf-soc-yt:hover{background:#FF0000;border-color:#FF0000;color:var(--white);}

/* ── Links List ── */
.kf-links{list-style:none;display:flex;flex-direction:column;gap:10px;}
.kf-links li a{
  font-size:13px;
  color:var(--white-80);
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
  transition:color var(--trans),padding-left var(--trans);
  line-height:1.4;
}
.kf-links li a:hover{
  color:var(--gold-lt);
  padding-left:5px;
  text-decoration:none;
}

/* ── Contact Column ── */
.kf-contact-list{display:flex;flex-direction:column;gap:18px;margin-bottom:22px;}
.kf-ci{display:flex;gap:12px;align-items:flex-start;}
.kf-ci-ico{font-size:18px;flex-shrink:0;margin-top:2px;}
.kf-ci strong{
  display:block;
  font-size:12px;
  font-weight:700;
  color:var(--gold-lt);
  letter-spacing:0.5px;
  text-transform:uppercase;
  margin-bottom:4px;
}
.kf-ci p{font-size:13px;color:var(--white-80);line-height:1.6;}
.kf-ci p a{
  color:var(--white-80);
  text-decoration:none;
  transition:color var(--trans);
}
.kf-ci p a:hover{color:var(--gold-lt);}

.kf-wa-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25d366;
  color:var(--white);
  padding:12px 22px;
  border-radius:var(--radius-sm);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:background var(--trans),transform var(--trans);
  width:100%;
  justify-content:center;
  margin-top:4px;
}
.kf-wa-btn:hover{background:#1ebe5d;transform:translateY(-2px);color:var(--white);text-decoration:none;}


/* ══════════════════════════════════════
   DUE DATES BAR
══════════════════════════════════════ */
.kf-due{
  background:var(--white-08);
  border:1px solid var(--bdr);
  border-radius:var(--radius);
  padding:22px 26px;
  margin:40px 0 0;
}
.kf-due-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  font-size:13px;
  font-weight:700;
  color:var(--gold-lt);
  letter-spacing:0.5px;
  text-transform:uppercase;
}
.kf-due-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.kf-due-item{
  background:var(--white-08);
  border:1px solid var(--bdr);
  border-radius:var(--radius-sm);
  padding:12px 14px;
  display:flex;
  flex-direction:column;
  gap:4px;
  transition:background var(--trans);
}
.kf-due-item:hover{background:rgba(184,150,46,0.12);}
.kf-due-d{
  font-size:12px;
  font-weight:700;
  color:var(--gold);
}
.kf-due-n{
  font-size:11.5px;
  color:var(--white-80);
  line-height:1.4;
}


/* ══════════════════════════════════════
   BOTTOM BAR
══════════════════════════════════════ */
.kf-bottom{
  background:var(--navy-dk);
  border-top:1px solid var(--bdr);
  padding:22px 0;
  margin-top:40px;
}
.kf-bottom-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
}
.kf-copy{
  font-size:12.5px;
  color:var(--white-80);
}
.kf-copy strong{color:var(--white);}

.kf-bottom-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.kf-bottom-nav a{
  font-size:12px;
  color:var(--white-55);
  text-decoration:none;
  transition:color var(--trans);
}
.kf-bottom-nav a:hover{color:var(--gold-lt);}
.kf-bottom-nav span{color:var(--white-30);font-size:11px;}

.kf-disc{
  font-size:11px;
  color:rgba(255,255,255,0.40);
  max-width:820px;
  line-height:1.65;
  text-align:center;
}


/* ══════════════════════════════════════
   SCROLL-TO-TOP BUTTON
══════════════════════════════════════ */
.kf-scroll-top{
  position:fixed;
  bottom:28px;
  right:24px;
  width:44px;
  height:44px;
  background:var(--gold);
  color:var(--white);
  border:none;
  border-radius:50%;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(184,150,46,0.45);
  transition:all var(--trans);
  opacity:0;
  pointer-events:none;
  z-index:999;
}
.kf-scroll-top.visible{opacity:1;pointer-events:all;}
.kf-scroll-top:hover{background:var(--gold-lt);transform:translateY(-3px);}


/* ══════════════════════════════════════
   RESPONSIVE — TABLET LARGE (max 1199px)
══════════════════════════════════════ */
@media(max-width:1199px){
  .kf-grid{grid-template-columns:1fr 1fr 1fr 1fr;gap:28px;}
  .kf-due-grid{grid-template-columns:repeat(3,1fr);}
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 991px)
══════════════════════════════════════ */
@media(max-width:991px){
  .kf-prefooter{padding:40px 0;}
  .kf-prefooter-inner{gap:28px;}
  .kf-pre-left h3{font-size:20px;}
  .kf-grid{grid-template-columns:1fr 1fr;gap:32px;}
  .kf-col-brand{grid-column:1/-1;}
  .kf-certs{flex-direction:row;flex-wrap:wrap;gap:10px;}
  .kf-due-grid{grid-template-columns:repeat(3,1fr);}
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE LANDSCAPE (max 768px)
══════════════════════════════════════ */
@media(max-width:768px){
  .kf-prefooter{padding:32px 0;}
  .kf-prefooter-inner{flex-direction:column;gap:24px;}
  .kf-pre-left h3{font-size:18px;}
  .kf-grid{grid-template-columns:1fr 1fr;gap:24px;}
  .kf-due-grid{grid-template-columns:repeat(2,1fr);}
  .kf-copy{font-size:11.5px;}
  .kf-form-row{flex-direction:column;}
  .kf-inp,.kf-sub-btn{width:100%;}
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE PORTRAIT (max 540px)
══════════════════════════════════════ */
@media(max-width:540px){
  .kf-grid{grid-template-columns:1fr;}
  .kf-col-brand{grid-column:auto;}
  .kf-due-grid{grid-template-columns:repeat(2,1fr);}
  .kf-pre-left h3{font-size:17px;}
  .kf-copy{font-size:11px;}
  .kf-bottom-nav{gap:6px;}
  .kf-footer{padding-top:44px;}
  .kf-certs{flex-direction:column;}
}

/* ══════════════════════════════════════
   RESPONSIVE — VERY SMALL (max 360px)
══════════════════════════════════════ */
@media(max-width:360px){
  .kf-due-grid{grid-template-columns:1fr 1fr;}
  .kf-lname{font-size:14px;}
  .kf-col-h{font-size:13px;}
  .kf-pre-left h3{font-size:15px;}
}