:root {

  --tj-fw-normal: normal;
  --tj-fw-thin: 100;
  --tj-fw-elight: 200;
  --tj-fw-light: 300;
  --tj-fw-regular: 400;
  --tj-fw-medium: 500;
  --tj-fw-sbold: 600;
  --tj-fw-bold: 700;
  --tj-fw-ebold: 800;
  --tj-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --tj-fs-body: 16px;
  --tj-fs-h1: 74px;
  --tj-fs-h2: 48px;
  --tj-fs-h3: 38px;
  --tj-fs-h4: 24px;
  --tj-fs-h5: 20px;
  --tj-fs-h6: 16px;
  /**
     @Color Declaration
   */
  --tj-color-common-white: #000;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #373A3F;
  --tj-color-text-body: #696969;
  --tj-color-theme-primary: #077CEA;
  --tj-color-theme-secondary: #FEDB5C;
  --tj-color-grey-1: #373A3F;
  --tj-color-grey-2: #c5c5c5;
  --tj-color-grey-3: #ECF1F5;
  --tj-color-border-1: #000;
  --tj-color-border-2: #D8DDE1;
  --tj-color-border-3: #535353;
  --black:#000;
  --yellow: #f09c2e;
  --white: #fff;
}


.linkedin-btn {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 100;
    right: 50px; 
    bottom: 90px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
}

.linkedin-btn i {
    font-size: 28px;
    color: #fff;
}

.linkedin-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media(max-width:499.5px){
    .linkedin-btn{
         right: 20px
    }
}

/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.tj-footer-area {
  background:#f7f9ff;
  padding: 30px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.08);
}

.tj-footer-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(5%, 3%);
      -ms-transform: translate(5%, 3%);
          transform: translate(5%, 3%);
  z-index: -1;
}
.tj-footer-top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-top-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    row-gap: 25px;
  }
}
.tj-footer-top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tj-footer-top-wrap .tj-footer-top-wrap-icon span {
  width: 50px;
  height: 50px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--yellow);
 color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.tj-footer-top-wrap .tj-footer-top-wrap-icon span i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.tj-footer-top-wrap-content .sub-title {
  font-size: 14px;
  color: var(--tj-color-common-white);
  display: block;
}
.tj-footer-top-wrap-content .location {
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-common-white);
  font-size: 24px;
}
@media (max-width: 575px) {
  .tj-footer-top-wrap-content .location {
    font-size: 20px;
  }
}
.tj-footer-top-wrap-content a {
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 16px;
  color: var(--tj-color-common-white);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-footer-top-wrap-content a {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .tj-footer-top-wrap-content a {
    font-size: 17px;
  }
}
.tj-footer-top-wrap-content a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  right: 0;
  background: var(--tj-color-common-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-footer-top-wrap-content a:hover {
  color: var(--tj-color-common-white);
}
.tj-footer-top-wrap-content a:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-top-wrap {
    max-width: 350px;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-top-wrap {
    width: 100% !important;
  }
}

@media(max-width:530px){
  .tj-footer-top-wrap-content .location br{
    display: none;
  }
}
.tj-footer-bottom {
  padding-top: 60px;
}
.tj-footer-bottom-row {
  border-bottom: 1px solid #000;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .tj-footer-col-1 {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-col-2 {
    margin-left: 0px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-footer-col-2 {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .tj-footer-col-2 {
    margin-left: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .tj-footer-col-3 {
    margin-bottom: 10px;
  }
}
.tj-footer-col-4 {
  margin-left: 17px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-footer-col-4 {
    margin-left: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-col-4 {
    margin-left: 35px;
  }
}
@media (max-width: 575px) {
  .tj-footer-col-4 {
    margin-left: 0;
    margin-bottom: 0px;
  }
}
.tj-footer-widget-logo {
  max-width: 120px;
  margin-bottom: 28px;
}
.tj-footer-widget-paragraph {
  color: var(--tj-color-common-white);
  max-width: 370px;
  width: 100%;
  margin-bottom: 0px;
  font-size: 14px;
}
@media (max-width: 991.5px) {
  .tj-footer-widget-paragraph {
    max-width: 100%;
      font-size: 13px;
  }
}

.tj-footer-copyright-content .tj-footer-widget-paragraph{
  color: var(--tj-color-common-white);
  max-width: 500px;
  width: 100%;
  margin-bottom: 0px;
}
@media (max-width: 991.5px) {
  .tj-footer-widget-paragraph {
    max-width: 100%;
  }
}

.tj-footer-widget-socail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tj-footer-widget-socail ul li {
  list-style: none;
  margin-right: 11px;
}
.tj-footer-widget-socail ul li:last-child {
  margin-right: 0;
}
.tj-footer-widget-socail ul li a {
  width: 40px;
  height: 40px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--tj-color-common-white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.tj-footer-widget-socail ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  background: var(--tj-color-theme-secondary);
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  border-radius: 50%;
}
.tj-footer-widget-socail ul li a:hover {
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-secondary);
  border-color: var(--tj-color-theme-secondary);
}
.tj-footer-widget-socail ul li a:hover::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.tj-footer-widget-title {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: var(--tj-color-common-white);
  margin-bottom: 30px;
}

.tj-footer-widget-title:before{
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: var(--second);
  left: 0;
  bottom: -6px;
}
.tj-footer-widget-title.two {
  text-align: left;
  margin-left: 33px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-widget-title.two {
    margin-left: 0;
  }
}
.tj-footer-widget.widget_nav_menu ul li {
  list-style: none;
  margin-bottom: 8px;
}
.tj-footer-widget.widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}
.tj-footer-widget.widget_nav_menu ul li:hover a {
  margin-left: 10px;
  opacity: 1;
}
.tj-footer-widget.widget_nav_menu ul li a {
  color: var(--tj-color-common-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  opacity: 0.8;
  font-size: 14px;
  font-weight: 600;
}
.tj-footer-widget.widget_nav_menu ul li a span i {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  font-size: 16px;
}
.tj-footer-widget.widget_nav_menu ul li a:hover{
  color: var(--second);
}
.tj-footer-widget-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.tj-footer-widget-post:last-child {
  margin-bottom: 0;
}
.tj-footer-widget-post-thumb {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.tj-footer-widget-post-thumb a {
  display: inline-block;
}
.tj-footer-widget-post-thumb a img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.tj-footer-widget-post-date span {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--tj-color-common-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.tj-footer-widget-post-title {
  font-size: 16px;
  color: var(--tj-color-common-white);
  line-height: 1.62;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-footer-widget-post-title {
    font-size: 14px;
  }
}
.tj-footer-widget-post-title:hover {
  color: var(--tj-color-theme-secondary);
}
.tj-footer-widget-post:hover .tj-footer-widget-post-thumb a img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}
.tj-footer-copyright-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-copyright-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-copyright-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.tj-footer-copyright {
  padding: 5px 0 5px;
}
.tj-footer-copyright-paragraph {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-copyright-paragraph {
    margin-bottom: 10px;
    text-align: center;
  }
}
.tj-footer-copyright-paragraph a {
  position: relative;
  z-index: 1;
}
.tj-footer-copyright-paragraph a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--tj-color-theme-secondary);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.tj-footer-copyright-paragraph a:hover {
  color: var(--tj-color-theme-secondary);
}
.tj-footer-copyright-paragraph a:hover::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.tj-footer-copyright-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-copyright-menu ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.tj-footer-copyright-menu ul li {
  list-style: none;
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.tj-footer-copyright-menu ul li:last-child {
  margin-right: 0;
}
.tj-footer-copyright-menu ul li:last-child::before {
  display: none;
}
.tj-footer-copyright-menu ul li::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 18px;
  top: 4px;
  right: -20px;
  background: var(--tj-color-common-white);
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
}
.tj-footer-copyright-menu ul li a {
  color: var(--tj-color-common-white);
}
.tj-footer-copyright-menu ul li a:hover {
  color: var(--tj-color-theme-secondary);
}

.tj-footer-widget-menu.two-column ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 25px;
}


.tj-footer-area .container {
  max-width: 1400px;  /* default se zyada kar diya */
}

.tj-footer-widget-menu.two-column ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media(max-width:991.5px){
 .tj-footer-bottom-row {
    padding-bottom: 20px;
}
}
/* Tablet & below (991px) → services ek column */
@media (max-width: 767.5px) {
  .tj-footer-widget-menu.two-column ul {
    grid-template-columns: 1fr !important;
  }

.tj-footer-top-wrap .tj-footer-top-wrap-icon span {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
}


.tj-footer-extra-row {
  border-top: 1px solid #000;
  padding: 15px 0;
}

.tj-footer-license {
  font-size: 16px;  /* 👈 bigger font */
  font-weight: 500;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tj-footer-license .divider {
  color: #888;
}

.tj-footer-serving {
  font-size: 18px;
  color: var(--main-colour);
  margin-top: 5px;
  font-weight: 700;
}

@media(max-width:767.5px){
  .tj-footer-license{
    font-size: 16px;
  }
  .tj-footer-serving{
    font-size: 15px;
  }
}

.tj-footer-license span strong{
  color: var(--second);
}