@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap');

/* ============================================
   Theme: WebClickLab logo ke hisaab
   Web = golden, Click = charcoal, Lab = blue – text readable rahe
   ============================================ */
:root {
  /* Web – golden yellow */
  --theme-color1: #C9A227;
  --theme-color2: #B8860B;
  --theme-color1-rgb: 201, 162, 39;
  --theme-color2-rgb: 184, 134, 11;
  /* Click – dark gray / charcoal */
  --theme-color3: #2d2d2d;
  --theme-color4: #4b5563;
  --theme-color3-rgb: 45, 45, 45;
  --theme-color4-rgb: 75, 85, 99;
  /* Lab – vibrant blue (secondary accent) */
  --theme-color-lab: #2563EB;
  --theme-color-lab-dark: #1D4ED8;
  --theme-color-lab-rgb: 37, 99, 235;
  /* Text – readable contrast */
  --headings-color: #1a1a1a;
  --text-color: #374151;
  --text-muted: #6b7280;
  --gradient-1: linear-gradient(135deg, #C9A227 0%, #B8860B 100%);
  --gradient-lab: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

/* ============================================
   Horizontal scroll fix - sirf scroll hide, layout same
   ============================================ */
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  margin: 0;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Logo palette – headings & text readable */
h1, h2, h3, h4, h5, h6,
.site-heading .title,
.section-title,
.section-heading,
.block-title,
.heading {
  color: var(--headings-color) !important;
}
p, .text, .lead, .section-text {
  color: var(--text-color);
}
a:not(.theme-btn):not(.btn) {
  color: var(--theme-color1);
}
a:not(.theme-btn):not(.btn):hover {
  color: var(--theme-color2);
}

/* ============================================
   Scrollbar: desktop pe dikhe (visible), mobile pe hide
   ============================================ */
@media (min-width: 768px) {
  html {
    overflow-y: scroll;
  }
  /* Desktop: scrollbar visible, theme-friendly styling */
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
    border-radius: 6px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color2);
  }
  /* Firefox – main document scrollbar */
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--theme-color1) #f1f1f1;
  }
}

@media (max-width: 767.98px) {
  html {
    overflow-y: auto;
  }
  /* Mobile: scrollbar hide – content scroll ho, scrollbar na dikhe */
  * {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  *::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

/* ============================================
   Sticky header: scroll pe fixed, smooth slide + transition
   ============================================ */
body {
  transition: padding-top 0.35s ease;
}

/* Sticky bar – pehle upar chhupa, phir smooth neeche aaye (style-two bhi white) */
body.header-sticky .main-header.header-style-two .main-box {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999 !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box {
  transform: translateY(0);
  background-color: #ffffff !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

body.header-sticky .main-header.header-style-one .header-lower {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999 !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

body.header-sticky.header-sticky-visible .main-header.header-style-one .header-lower {
  transform: translateY(0);
  background-color: #ffffff !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Mobile: header-style-one white bg + black text (desktop jaisa) */
@media (max-width: 991.98px) {
  .main-header.header-style-one,
  .main-header.header-style-one .header-lower,
  .main-header.header-style-one .header-lower .main-box,
  .main-header.header-style-one .header-lower .logo-box {
    background-color: #ffffff !important;
  }
  .main-header.header-style-one .header-lower .mobile-nav-toggler,
  .main-header.header-style-one .header-lower .mobile-nav-toggler .icon {
    color: #1a1a1a !important;
  }
  /* header-style-two (inner pages) bhi index jaisa – white bg */
  .main-header.header-style-two {
    background-color: #ffffff !important;
  }
  .main-header.header-style-two .main-box,
  .main-header.header-style-two .main-box .logo-box {
    background-color: #ffffff !important;
  }
  body.header-sticky .main-header.header-style-two .main-box,
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box {
    transform: none !important;
    transition: none !important;
    background-color: #ffffff !important;
  }
  body.header-sticky .main-header.header-style-one .header-lower,
  body.header-sticky.header-sticky-visible .main-header.header-style-one .header-lower {
    transform: none !important;
    transition: none !important;
    background-color: #ffffff !important;
  }
}

/* Scroll pe header-style-two bhi white bg, black text (index jaisa) */
body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box .main-menu .navigation > li > a {
  color: #1a1a1a !important;
}
body.header-sticky.header-sticky-visible .main-header.header-style-two .main-menu .navigation > li:hover > a,
body.header-sticky.header-sticky-visible .main-header.header-style-two .main-menu .navigation > li.current > a {
  color: var(--theme-color1) !important;
}
/* Header-style-one sticky: white bg, black text */
body.header-sticky.header-sticky-visible .main-header.header-style-one .header-lower .main-menu .navigation > li > a {
  color: #1a1a1a !important;
}
body.header-sticky.header-sticky-visible .main-header.header-style-one .main-menu .navigation > li:hover > a,
body.header-sticky.header-sticky-visible .main-header.header-style-one .main-menu .navigation > li.current > a,
body.header-sticky.header-sticky-visible .main-header.header-style-one .header-lower .main-menu .navigation > li:hover > a,
body.header-sticky.header-sticky-visible .main-header.header-style-one .header-lower .main-menu .navigation > li.current > a {
  color: var(--theme-color1) !important;
}
body.header-sticky.header-sticky-visible .main-header .logo-box .logo img,
body.header-sticky.header-sticky-visible .main-header .header-lower .logo-box .logo img {
  max-height: 62px !important;
  height: auto !important;
  width: auto !important;
}
body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .info-btn,
body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .info-btn a {
  color: #1a1a1a !important;
}
/* style-two Get in Touch button: theme colored on white */
body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .btn-box .theme-btn {
  color: inherit !important;
  border-color: var(--theme-color1) !important;
}
body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .btn-box .theme-btn:hover {
  background: var(--theme-color1) !important;
  color: #fff !important;
  border-color: var(--theme-color1) !important;
}

/* Sticky header hide - duplicate menu avoid */
.main-header .sticky-header {
  display: none !important;
}

/* Search aur account wale buttons hata do - sabhi pages pe */
.main-header .outer-box .ui-btn-box {
  display: none !important;
}

/* Header right: Get in Touch – Demo 271 style (animated gradient glow on hover) */
.main-header .outer-box .btn-box .theme-btn.btn-style-one,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one {
  color: #fff !important;
  font-family: "Signika", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  border: none !important;
  position: relative !important;
  z-index: 1 !important;
  transition: all 0.3s ease-in-out !important;
  background: transparent !important;
  overflow: visible !important;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one:hover,
.main-header .outer-box .btn-box .theme-btn.btn-style-one:focus,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one:hover,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one:focus {
  color: #fff !important;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one .btn-title,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one .btn-title {
  position: relative;
  z-index: 1;
  color: inherit;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one::before,
.main-header .outer-box .btn-box .theme-btn.btn-style-one::after,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one::before,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one::after {
  content: "" !important;
  border-radius: 10px !important;
  position: absolute !important;
  z-index: -1 !important;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one::before,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one::before {
  background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3) !important;
  background-size: 400% !important;
  width: calc(100% + 4px) !important;
  height: calc(100% + 4px) !important;
  top: -2px !important;
  left: -2px !important;
  filter: blur(5px) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease-in-out !important;
  animation: headerBtnGlow 20s linear infinite !important;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one::after,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one::after {
  background:#1555b4 !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  transition: background 0.3s ease-in-out !important;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one:hover::before,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one:hover::before {
  opacity: 1 !important;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one:hover::after,
.main-header .header-lower .outer-box .btn-box .theme-btn.btn-style-one:hover::after {
  background: var(--theme-color1) !important;
  transition: background 0.3s ease-in-out !important;
}
@keyframes headerBtnGlow {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
/* Sticky header-style-two: white bar pe Get in Touch theme color (index jaisa) */
body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .btn-box .theme-btn.btn-style-one,
body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .btn-box .theme-btn.btn-style-one:hover {
  color: inherit !important;
  border-color: transparent !important;
}
body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .btn-box .theme-btn.btn-style-one:hover {
  background: transparent !important;
}

/* Desktop: header-style-one scroll pe bhi white bar, black text */
@media (min-width: 992px) {
  body.header-sticky.header-sticky-visible .main-header.header-style-one .header-lower {
    background-color: #ffffff !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-one .header-lower .logo-box {
    background-color: #ffffff !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box {
    background-color: #ffffff !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box .logo-box {
    background-color: #ffffff !important;
  }
  /* Scroll pe inner pages bhi index jaisa: logo + menu thoda right me (padding 60px jaisa index) */
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  /* Scroll pe inner pages layout bhi index jaisa: logo left, nav beech, outer-box right */
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box .logo-box {
    order: 1 !important;
    border-top-left-radius: 25px !important;
    border-bottom-left-radius: 25px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    clip-path: path("M0 28.4C0 12.7 12.7 0 28.4 0H235.5C256.4 0 270.2 21.5 261.6 40.3L224.9 120H0V28.4Z") !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box .nav-outer {
    order: 2 !important;
    margin-right: 0 !important;
    padding-left: 67px !important;
    padding-right: 18px !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box .outer-box {
    order: 3 !important;
  }
  /* Desktop scroll: header-style-two bhi white bar, black text */
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box .main-menu .navigation > li > a {
    color: #1a1a1a !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-menu .navigation > li:hover > a,
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-menu .navigation > li.current > a {
    color: var(--theme-color1) !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .info-btn,
  body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .info-btn a {
    color: #1a1a1a !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .btn-box .theme-btn {
    color: inherit !important;
    border-color: var(--theme-color1) !important;
  }
  body.header-sticky.header-sticky-visible .main-header.header-style-two .outer-box .btn-box .theme-btn:hover {
    background: var(--theme-color1) !important;
    color: #fff !important;
    border-color: var(--theme-color1) !important;
  }
}
@media (max-width: 1199.98px) {
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (max-width: 767.98px) {
  body.header-sticky.header-sticky-visible .main-header.header-style-two .main-box {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* 4) Header-style-two (inner pages): index jaisa – white bg, black text */
.header-style-two .main-box {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 84px !important;
  border-radius: 0 !important;
  border-top-left-radius: 0 !important;
  background-color: #fff !important;
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header-style-two .main-box .nav-outer .main-menu .navigation > li > a {
  color: #1a1a1a !important;
}
.header-style-two .main-box .nav-outer .main-menu .navigation > li:hover > a,
.header-style-two .main-box .nav-outer .main-menu .navigation > li.current > a {
  color: var(--theme-color1) !important;
}
.header-style-two .main-box .outer-box .mobile-nav-toggler,
.header-style-two .main-box .outer-box .mobile-nav-toggler .icon {
  color: #1a1a1a !important;
}
/* Desktop bina scroll: logo left, outer-box beech, menu right */
@media (min-width: 992px) {
  .header-style-two .main-box {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .header-style-two .main-box .logo-box {
    order: 1;
  }
  .header-style-two .main-box .nav-outer {
    order: 2;
    padding-left: 85px;
    padding-right: 18px;
    margin-left: auto;
  }
  .header-style-two .main-box .outer-box {
    order: 3;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header-style-two .main-box {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
.header-style-two .main-box .logo-box {
  position: relative;
  width: 280px;
  height: 83px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  clip-path: path("M0 28.4C0 12.7 12.7 0 28.4 0H235.5C256.4 0 270.2 21.5 261.6 40.3L224.9 120H0V28.4Z");
  background-color: #ffffff;
}
.header-style-two .main-box .logo-box .logo {
  position: relative;
  width: 160px;
  flex-shrink: 0;
  display: block;
}
.header-style-two .main-box .logo-box .logo img {
  width: 100%;
  height: 100%;
  max-height: 78px;
  object-fit: contain;
}
/* 575: logo-box white (index jaisa sabhi pages) */
@media (max-width: 575.98px) {
  .header-style-two .main-box .logo-box {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    clip-path: path("M0 28.4C0 12.7 12.7 0 28.4 0H235.5C256.4 0 270.2 21.5 261.6 40.3L224.9 120H0V28.4Z");
    background-color: #ffffff;
  }
}

/* Header: sabhi pages full width, koi round corner nahi (index + inner dono) */
.main-header {
  width: 100% !important;
}
.main-header .header-lower,
.main-header .main-box,
.header-style-two .main-box,
.header-style-two.style-two .main-box {
  border-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Header-style-one (index): banner se alag – upar header, neeche banner (absolute hatao) */
.main-header.header-style-one {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background-color: #ffffff !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header-style-one .header-top {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
.header-style-one .header-lower {
  padding-top: 0 !important;
  background-color: #ffffff !important;
}
.header-style-one .header-lower .main-box,
.header-style-one .header-lower .logo-box {
  background-color: #ffffff !important;
}
/* Header style one: text black (desktop + mobile) */
.main-header.header-style-one .main-menu .navigation > li > a,
.main-header.header-style-one .header-lower .main-menu .navigation > li > a {
  color: #1a1a1a !important;
}
.main-header.header-style-one .main-menu .navigation > li:hover > a,
.main-header.header-style-one .main-menu .navigation > li.current > a,
.main-header.header-style-one .header-lower .main-menu .navigation > li:hover > a,
.main-header.header-style-one .header-lower .main-menu .navigation > li.current > a {
  color: var(--theme-color1) !important;
}
.main-header.header-style-one .header-lower .mobile-nav-toggler,
.main-header.header-style-one .header-lower .mobile-nav-toggler .icon {
  color: #1a1a1a !important;
}
/* Index page banner – header ke neeche alag section, extra padding nahi */
.page-wrapper:not(.inner-page) .banner-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
@media (max-width: 991.98px) {
  .header-style-one .header-top { display: none !important; }
}
@media (max-width: 575.98px) {
  .page-wrapper:not(.inner-page) .banner-section {
    padding-top: 0 !important;
  }
}

/* Mobile: text reveal off – text normal dikhe, char opacity force 1 */
@media (max-width: 991.98px) {
  .text-reveal-anim .char,
  .text-reveal-anim .word,
  .text-reveal-anim .line {
    opacity: 1 !important;
  }
}

/* Mobile: banner bilkul hilna nahi - sab animation/transition band */
@media (max-width: 991.98px) {
  .banner-section .bounce-x,
  .banner-section .animate-x,
  .banner-section .animate-2,
  .banner-section .animate-4 {
    animation: none !important;
    -webkit-animation: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    -webkit-transition: none !important;
  }
  .banner-section .swiper-wrapper {
    transition-timing-function: linear !important;
  }
}
@media (max-width: 991.98px) {
  .banner-section .banner-swiper.swiper {
    touch-action: pan-y;
  }
  .banner-section .banner-swiper .swiper-wrapper {
    transition-duration: 0ms !important;
  }
}

/* Discover More - desktop pe banner ke andar hi, mobile pe niche alag block */
.banner-discover-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .banner-section .btn-box {
    display: none !important;
  }
  .banner-discover-mobile {
    display: block;
    padding: 24px 20px 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.02) 0%, #fff 100%);
  }
  .banner-discover-mobile__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px 14px 24px;
    background: #0a0a0a;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(10, 10, 10, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .banner-discover-mobile__btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10, 10, 10, 0.25);
  }
  .banner-discover-mobile__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
    transition: background 0.2s ease;
  }
  .banner-discover-mobile__btn:hover .banner-discover-mobile__arrow {
    background: rgba(255, 255, 255, 0.3);
  }
}

@media (min-width: 992px) {
  .banner-discover-mobile {
    display: none !important;
  }
}

/* Banner: text aur image ke beech space kam - sab screens */
.banner-section .outer-box .inner-box {
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 1699px) {
  .banner-section .outer-box .inner-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991.98px) {
  .banner-section .outer-box .inner-box {
    padding: 80px 20px 0;
  }
  .banner-section .outer-box .content-column {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 767.98px) {
  .banner-section .outer-box .inner-box {
    padding: 28px 16px 0;
  }
  .banner-section .outer-box .content-column {
    margin-bottom: 12px !important;
  }
  .banner-section .outer-box .content-column .inner-column {
    padding-top: 0 !important;
  }
  .banner-section .outer-box .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .banner-section .outer-box .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 575.98px) {
  .banner-section .outer-box .inner-box {
    padding: 20px 14px 0;
  }
  .banner-section .outer-box .content-column {
    margin-bottom: 8px !important;
  }
  .banner-section .outer-box .content-column .inner-column {
    padding-top: 0 !important;
  }
}

/* Hero section - 2 lines: top orange, bottom typewriter */
.banner-section .outer-box .content-column .inner-column .title.hero-two-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #000 !important;
}
.banner-section .hero-line-top {
  font-size: 42px !important;
  color: var(--theme-color1) !important;
  line-height: 1.2;
}
.banner-section .hero-line-bottom {
  font-size: 42px !important;
  color: var(--theme-color3) !important;
  line-height: 1.2;
}
.banner-section .hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 14px 0 22px;
  max-width: 480px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .banner-section .hero-subtitle {
    font-size: 16px;
    margin: 12px 0 18px;
  }
}
@media (max-width: 767.98px) {
  .banner-section .hero-subtitle {
    font-size: 14px;
    margin: 10px 0 16px;
    line-height: 1.5;
  }
}

/* Hero section - font size kam + black color (fallback) */
.banner-section .outer-box .content-column .inner-column .title {
  font-size: 42px !important;
  color: var(--headings-color) !important;
}
@media only screen and (max-width: 1399.98px) {
  .banner-section .outer-box .content-column .inner-column .title {
    font-size: 36px !important;
  }
  .banner-section .hero-line-top,
  .banner-section .hero-line-bottom {
    font-size: 36px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-section .outer-box .content-column .inner-column .title {
    font-size: 32px !important;
  }
  .banner-section .hero-line-top,
  .banner-section .hero-line-bottom {
    font-size: 32px !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .banner-section .outer-box .content-column .inner-column .title {
    font-size: 26px !important;
  }
  .banner-section .hero-line-top,
  .banner-section .hero-line-bottom {
    font-size: 26px !important;
  }
}
@media (max-width: 767.98px) {
  .banner-section .outer-box .content-column .inner-column .title {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }
  .banner-section .hero-line-top,
  .banner-section .hero-line-bottom {
    font-size: 16px !important;
  }
}

/* Hero text prefix - black, static */
.banner-section .hero-text-float {
  display: inline-block;
  color: #000 !important;
  animation: none;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); opacity: 1; }
  25% { transform: translateY(-2px); opacity: 0.98; }
  50% { transform: translateY(0); opacity: 1; }
  75% { transform: translateY(1px); opacity: 0.99; }
}

/* Hero typewriter - black text + smooth blinking cursor */
.banner-section .typewriter-wrap {
  display: inline-block;
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}
.banner-section .typewriter-cursor {
  display: inline-block;
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: var(--theme-color3) !important;
  color: var(--theme-color3) !important;
  animation: typewriter-blink 1s ease-in-out infinite;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes typewriter-blink {
  0%, 40% { opacity: 1; }
  50%, 90% { opacity: 0; }
  100% { opacity: 1; }
}

/* Header-style-one (index): full width, no rounding; sirf logo ke piche black */
.header-style-one .header-lower {
  width: 100% !important;
}
.header-style-one .header-lower .main-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 100px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}
.header-style-one .header-lower .logo-box {
  position: relative;
  width: 280px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  clip-path: path("M0 28.4C0 12.7 12.7 0 28.4 0H235.5C256.4 0 270.2 21.5 261.6 40.3L224.9 120H0V28.4Z");
  background-color: var(--theme-color3);
}

/* Index pe bina scroll: header bar transparent (banner dikhe), sirf logo ke piche black – desktop only */
@media (min-width: 992px) {
  .page-wrapper:not(.inner-page) .main-header.header-style-one .header-lower {
    background-color: transparent !important;
    box-shadow: none !important;
  }
  .page-wrapper:not(.inner-page) .main-header.header-style-one .header-lower .main-box {
    background-color: transparent !important;
  }
}
/* Logo thoda chota – sabhi pages (index + inner) */
.header-style-one .header-lower .logo-box .logo {
  position: relative;
  width: 168px !important;
  max-width: 168px !important;
  flex-shrink: 0;
  display: block;
}
.header-style-one .header-lower .logo-box .logo img {
  width: 100% !important;
  height: 100% !important;
  max-height: 78px !important;
  object-fit: contain;
}
.header-style-one .header-lower .nav-outer {
  padding-left: 18px !important;
  flex: 1;
  min-width: 0;
}
/* Mobile/tablet header – header-style-one: white bg, black text (index jaisa) */
@media (max-width: 991.98px) {
  .header-style-one .header-lower {
    padding-left: 8px !important;
    padding-right: 8px !important;
    overflow: hidden !important;
    min-height: 92px !important;
    max-height: 92px !important;
    background-color: #ffffff !important;
  }
  .header-style-one .header-lower .main-box {
    background: transparent !important;
    min-height: 92px !important;
    max-height: 92px !important;
    align-items: center;
    overflow: hidden;
  }
  .header-style-one .header-lower .logo-box {
    position: relative;
    width: 260px;
    max-width: 260px;
    height: 92px;
    min-height: 92px;
    max-height: 92px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    clip-path: path("M0 28.4C0 12.7 12.7 0 28.4 0H235.5C256.4 0 270.2 21.5 261.6 40.3L224.9 120H0V28.4Z");
    background-color: #ffffff;
    overflow: hidden;
  }
  .header-style-one .header-lower .logo-box .logo {
    max-width: 220px !important;
  }
  .header-style-one .header-lower .logo-box .logo img {
    max-height: 100px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
  .header-style-one .header-lower .mobile-nav-toggler,
  .header-style-one .header-lower .mobile-nav-toggler .icon {
    color: #1a1a1a !important;
  }
}

@media (max-width: 575.98px) {
  .header-style-one .header-lower {
    padding-left: 6px !important;
    padding-right: 6px !important;
    min-height: 84px !important;
    max-height: 84px !important;
  }
  .header-style-one .header-lower .main-box {
    min-height: 84px !important;
    max-height: 84px !important;
  }
  .header-style-one .header-lower .logo-box {
    position: relative;
    width: 220px;
    max-width: 220px;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    clip-path: path("M0 28.4C0 12.7 12.7 0 28.4 0H235.5C256.4 0 270.2 21.5 261.6 40.3L224.9 120H0V28.4Z");
    background-color: #ffffff;
    overflow: hidden;
  }
  .header-style-one .header-lower .logo-box .logo {
    width: 100%;
    max-width: 190px !important;
    display: block;
  }
  .header-style-one .header-lower .logo-box .logo img {
    max-height: 88px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
  .header-style-one .header-lower .nav-outer {
    padding-left: 10px !important;
  }
}
@media (max-width: 1199.98px) {
  .header-style-one .header-lower .nav-outer {
    padding-left: 14px !important;
  }
}

/* ============================================
   Attractive 2-Column Dropdown Menu Design
   ============================================ */

.main-header .main-menu .navigation > li > ul.dropdown-two-col {
  width: 400px !important;
  min-width: 400px !important;
  max-width: 400px !important;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 16px 0 18px !important;
  column-gap: 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(108, 67, 227, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(108, 67, 227, 0.1) !important;
  border-top: 3px solid var(--theme-color1, #6c43e3) !important;
  margin-top: 8px !important;
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.main-header .main-menu .navigation > li.dropdown:hover > ul.dropdown-two-col {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  top: 100% !important;
  margin-top: 8px !important;
  grid-template-columns: 1fr 1fr;
  transform: translateY(0);
  box-shadow: 0 14px 48px rgba(108, 67, 227, 0.18), 0 6px 16px rgba(0, 0, 0, 0.1) !important;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col > li {
  border-bottom: 1px solid rgba(108, 67, 227, 0.08);
  border-right: none;
  width: auto !important;
  max-width: 100%;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col > li:last-child,
.main-header .main-menu .navigation > li > ul.dropdown-two-col > li:nth-last-child(2) {
  border-bottom: none;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col > li:nth-child(odd) {
  border-right: 1px solid rgba(108, 67, 227, 0.12);
  padding-right: 12px;
  margin-right: 0;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col > li:nth-child(even) {
  padding-left: 12px;
  margin-left: 0;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col > li > a {
  margin: 0 14px !important;
  padding: 10px 12px !important;
  width: auto !important;
  border-radius: 8px;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: var(--theme-color3, #1b152c) !important;
  transition: all 0.25s ease !important;
  position: relative;
  display: block;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-color1, #6c43e3), var(--theme-color2, #ed8a33));
  border-radius: 2px;
  transition: width 0.25s ease;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col > li:hover > a {
  color: var(--theme-color1, #6c43e3) !important;
  padding-left: 20px !important;
  background: rgba(108, 67, 227, 0.06) !important;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col > li:hover > a::before {
  width: 4px;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col.from-right {
  left: auto !important;
  right: 0 !important;
  border-top: 3px solid var(--theme-color2, #ed8a33) !important;
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col.from-right > li > a::before {
  left: auto;
  right: 0;
  background: linear-gradient(90deg, var(--theme-color2, #ed8a33), var(--theme-color1, #6c43e3));
}

.main-header .main-menu .navigation > li > ul.dropdown-two-col.from-right > li:hover > a {
  padding-left: 14px !important;
  padding-right: 20px !important;
}

/* Service description - CKEditor 5 output */
.service-rich-content h2, .service-rich-content h3, .service-rich-content h4 {
  margin-top: 1.25em; margin-bottom: 0.5em; font-weight: 600;
}
.service-rich-content h2 { font-size: 1.5em; }
.service-rich-content h3 { font-size: 1.25em; }
.service-rich-content h4 { font-size: 1.1em; }
.service-rich-content p { margin-bottom: 0.75em; }
.service-rich-content ul, .service-rich-content ol { margin: 0.75em 0; padding-left: 1.5em; }
.service-rich-content blockquote {
  border-left: 4px solid var(--theme-color1, #6c43e3);
  margin: 1em 0; padding: 0.5em 1em;
  background: rgba(108, 67, 227, 0.06); font-style: italic;
}
.service-rich-content img { max-width: 100%; height: auto; }
.service-rich-content a { color: var(--theme-color1, #6c43e3); }

/* ============================================
   We Offer Area - Our Services Design
   ============================================ */
.we-offer-area .item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.we-offer-area .item-link:hover { color: inherit; }

.bg-gray { background-color: #f9f9f9; }

.we-offer-area .site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.we-offer-area .site-heading h2 span { color: var(--theme-color1, #6c43e3); }
.we-offer-area .site-heading h4 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}
.we-offer-area .site-heading h4::before {
  background: var(--theme-color1, #6c43e3) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 50px;
}
.we-offer-area .site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}
@media (max-width: 991.98px) {
  .we-offer-area .site-heading { margin-bottom: 40px; }
}
@media (max-width: 575.98px) {
  .we-offer-area .site-heading { margin-bottom: 28px; }
}

.we-offer-area .our-offer-items.less-carousel .equal-height { margin-bottom: 30px; }

.we-offer-area.text-center .item {
  background: #fff;
  border: none;
  padding: 67px 40px 64px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px #ccc;
  transition: all 0.35s ease;
}
.we-offer-area .item i {
  background: var(--theme-color1, #6c43e3);
  border-radius: 50%;
  color: #fff;
  font-size: 40px;
  height: 80px;
  line-height: 80px;
  width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}
.we-offer-area .item i::after {
  border: 2px solid var(--theme-color1, #6c43e3);
  border-radius: 50%;
  content: "";
  height: 90px;
  left: -5px;
  top: -5px;
  width: 90px;
  position: absolute;
  z-index: -1;
  transition: all 0.35s ease;
}
.we-offer-area .item h4 { font-weight: 600; text-transform: capitalize; }
.we-offer-area .item p { margin: 0; }

.we-offer-area .item::after {
  background: var(--theme-color1, #6c43e3);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.35s ease;
}
.we-offer-area .item:hover::after { left: 0; }
.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p { color: #fff !important; }
.we-offer-area.text-center .item:hover i::after { border-color: #fff !important; }
.we-offer-area.text-center .item:hover i {
  background-color: #fff !important;
  color: var(--theme-color1, #6c43e3) !important;
}

@media (max-width: 767.98px) {
  .we-offer-area.text-center .item { padding: 40px 24px 36px; }
  .we-offer-area .item i { height: 64px; line-height: 64px; width: 64px; font-size: 28px; }
  .we-offer-area .item i::after { height: 74px; width: 74px; left: -5px; top: -5px; }
}

/* ============================================
   Our Services - Attractive cards, fully responsive
   ============================================ */
.we-offer-effect-section {
  position: relative;
  padding: 9px 0 64px;
  background: linear-gradient(165deg, #f8f7ff 0%, #fff 30%, #faf8ff 70%, #fff 100%);
}
.we-offer-effect-section .we-offer-section-heading .sub-title {
  color: var(--theme-color1, #6c43e3) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 1;
  visibility: visible;
  text-transform: uppercase;
}
.we-offer-effect-section .we-offer-section-heading .title {
  color: var(--headings-color) !important;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0;
  opacity: 1;
  visibility: visible;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.we-offer-effect-section .we-offer-section-heading .title span {
  background: linear-gradient(135deg, var(--theme-color1, #6c43e3), var(--theme-color2, #ed8a33));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.we-offer-effect-section .effect-grid-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  padding-top: 36px;
  gap: 0;
}
.we-offer-effect-section .effect-col {
  padding: 12px;
  box-sizing: border-box;
}
.we-offer-effect-section .effect-col > .effect,
.we-offer-effect-section .effect-col > a.effect {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
}
.we-offer-effect-section .effect-col-4 { width: 33.333%; }
.we-offer-effect-section .effect-col-6 { width: 50%; }
.we-offer-effect-section .effect-col-8 { width: 66.666%; }
.we-offer-effect-section .effect-col-3 { width: 25%; }
@media (max-width: 991.98px) {
  .we-offer-effect-section .effect-col-4,
  .we-offer-effect-section .effect-col-6,
  .we-offer-effect-section .effect-col-8,
  .we-offer-effect-section .effect-col-3 {
    width: 50%;
  }
  .we-offer-effect-section .effect-grid-row { padding-top: 28px; margin: 0 -8px; }
  .we-offer-effect-section .effect-col { padding: 8px; }
}
@media (max-width: 575.98px) {
  .we-offer-effect-section .effect-col-4,
  .we-offer-effect-section .effect-col-6,
  .we-offer-effect-section .effect-col-8,
  .we-offer-effect-section .effect-col-3 {
    width: 100%;
  }
  .we-offer-effect-section { padding: 40px 0 1px; }
  .we-offer-effect-section .effect-grid-row { padding-top: 24px; margin: 0 -6px; }
  .we-offer-effect-section .effect-col { padding: 6px; }
  .we-offer-effect-section .effect-col > .effect,
  .we-offer-effect-section .effect-col > a.effect { min-height: 0; }
}

/* Card: white, shadow, rounded, image on top + text below */
.we-offer-effect-section .effect {
  margin: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.we-offer-effect-section .effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(108, 67, 227, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Image wrap: responsive aspect ratio */
.we-offer-effect-section .effect .effect-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
}
.we-offer-effect-section .effect .effect-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.we-offer-effect-section .effect:hover .effect-img-wrap img {
  transform: scale(1.06);
}
/* Fallback when no wrap (img direct child) */
.we-offer-effect-section .effect > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  transition: transform 0.4s ease;
}
.we-offer-effect-section .effect:hover > img {
  transform: scale(1.06);
}

/* Text block: always visible, below image */
.we-offer-effect-section .effect .tab-text {
  padding: 24px 20px 20px;
  color: #1e1b4b;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  z-index: 2;
  pointer-events: auto;
}
.we-offer-effect-section .effect .tab-text::before {
  display: none;
}
.we-offer-effect-section .effect .tab-text h2 {
  position: relative;
  left: auto;
  bottom: auto;
  padding: 0;
  margin: 0 0 10px 0;
  font-family: var(--heading-font-family, inherit);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #0f0d1a !important;
  line-height: 1.3;
  text-shadow: none;
  transition: color 0.25s ease;
}
.we-offer-effect-section .effect:hover .tab-text h2 {
  color: var(--theme-color1, #6c43e3) !important;
}
.we-offer-effect-section .effect .tab-text p {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  max-width: none;
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
  padding: 0;
  margin: 0;
  border: none;
  transform: none;
  opacity: 1;
  color: #5c5c6d !important;
  text-shadow: none;
  flex: 1;
}
.we-offer-effect-section .effect .tab-text p::after,
.we-offer-effect-section .effect .tab-text p::before {
  display: none;
}

/* Arrow icon - over image, top right */
.we-offer-effect-section .effect .effect-img-wrap .icons-block {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  text-align: right;
}
.we-offer-effect-section .effect .icons-block {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
}
.we-offer-effect-section .effect .icons-block .social-icon-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--theme-color1, #6c43e3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 1;
  transition: all 0.3s ease;
}
.we-offer-effect-section .effect:hover .icons-block .social-icon-1 {
  background: var(--theme-color1, #6c43e3);
  color: #fff;
  transform: translate(3px, -3px);
}
.we-offer-effect-section .effect .icons-block i {
  font-size: 14px;
}
.we-offer-effect-section__cta {
  margin-top: 32px;
}

/* Responsive: text padding & font */
@media (max-width: 991.98px) {
  .we-offer-effect-section .effect .tab-text {
    padding: 20px 16px 16px;
  }
  .we-offer-effect-section .effect .tab-text h2 { font-size: 18px; }
  .we-offer-effect-section .effect .tab-text p { font-size: 14px; }
  .we-offer-effect-section .effect .icons-block .social-icon-1 {
    width: 36px;
    height: 36px;
  }
  .we-offer-effect-section .effect .icons-block i { font-size: 12px; }
  .we-offer-effect-section__cta { margin-top: 28px; }
}
@media (max-width: 575.98px) {
  .we-offer-effect-section .effect .tab-text {
    padding: 18px 14px 14px;
  }
  .we-offer-effect-section .effect .tab-text h2 { font-size: 17px; margin-bottom: 8px; }
  .we-offer-effect-section .effect .tab-text p { font-size: 14px; line-height: 1.55; }
  .we-offer-effect-section .effect .effect-img-wrap,
  .we-offer-effect-section .effect > img {
    aspect-ratio: 16 / 9;
  }
  .we-offer-effect-section__cta { margin-top: 24px; }
}

/* ============================================
   Our Services - Premium attractive design (legacy)
   ============================================ */
.services-modern {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(165deg, #f0eeff 0%, #fff 25%, #faf8ff 50%, #fff 75%, #f5f3ff 100%);
  overflow: hidden;
}

.services-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.services-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.services-bg-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(108,67,227,0.15) 0%, rgba(237,138,51,0.1) 100%);
  top: -100px;
  right: -50px;
}
.services-bg-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(237,138,51,0.12) 0%, rgba(108,67,227,0.08) 100%);
  bottom: 10%;
  left: -80px;
}
.services-bg-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(108,67,227,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-header {
  position: relative;
  text-align: center;
  margin-bottom: 64px;
}
.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--theme-color1, #6c43e3) 0%, var(--theme-color2, #ed8a33) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(108, 67, 227, 0.35);
  animation: float-badge 4s ease-in-out infinite;
}
.services-badge i { font-size: 11px; opacity: 0.9; }
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.services-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: #0f0d1a;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.services-title span {
  background: linear-gradient(135deg, var(--theme-color1, #6c43e3), var(--theme-color2, #ed8a33));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-subtitle {
  font-size: 18px;
  color: #5c5c6d;
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.services-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color1, #6c43e3), var(--theme-color2, #ed8a33));
  margin: 0 auto;
  border-radius: 2px;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 36px;
  margin-bottom: 56px;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.15s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.35s; }

.service-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: card-fade-up 0.8s ease both;
  border: 1px solid rgba(255,255,255,0.8);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(108,67,227,0.3), rgba(237,138,51,0.2), rgba(108,67,227,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
@keyframes card-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 30px 60px rgba(108, 67, 227, 0.25), 0 10px 30px rgba(0,0,0,0.1);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #e0dcf5 0%, #f5f2ff 50%, #fce8e0 100%);
}
.service-card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,13,26,0.4) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover .service-card__img-wrap::after {
  opacity: 1;
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-card__img-wrap img {
  transform: scale(1.12);
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,26,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover .service-card__overlay {
  opacity: 1;
}
.service-card__icon {
  position: absolute;
  bottom: 24px;
  left: 28px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--theme-color1, #6c43e3) 0%, var(--theme-color2, #ed8a33) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(108, 67, 227, 0.4);
}
.service-card:hover .service-card__icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 14px 40px rgba(108, 67, 227, 0.5);
}
.service-card__icon .icon {
  font-size: inherit;
}

.service-card__body {
  padding: 32px 28px;
  position: relative;
}
.service-card__title {
  font-size: 24px;
  font-weight: 800;
  color: #0f0d1a;
  margin-bottom: 14px;
  transition: color 0.35s ease;
  letter-spacing: -0.3px;
}
.service-card:hover .service-card__title {
  color: var(--theme-color1, #6c43e3);
}
.service-card__desc {
  font-size: 15px;
  color: #5c5c6d;
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.service-card__features li {
  font-size: 14px;
  color: #4a4a5a;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__features li {
  transform: translateX(4px);
}
.service-card__features li i {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--theme-color1, #6c43e3);
  transition: all 0.35s ease;
}
.service-card__link i {
  transition: transform 0.35s ease;
}
.service-card:hover .service-card__link {
  gap: 14px;
}
.service-card:hover .service-card__link i {
  transform: translateX(4px);
}

.service-card--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.services-cta {
  text-align: center;
  position: relative;
}
.btn-services-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--theme-color1, #6c43e3) 0%, #5a34c7 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 40px rgba(108, 67, 227, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-services-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--theme-color2, #ed8a33) 0%, var(--theme-color1, #6c43e3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-services-all:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(108, 67, 227, 0.5);
  color: #fff;
}
.btn-services-all:hover::before {
  opacity: 1;
}
.btn-services-all > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .services-modern { padding: 56px 0; }
  .services-header { margin-bottom: 36px; }
  .services-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .service-card__img-wrap { aspect-ratio: 16/9; }
  .service-card__body { padding: 26px 22px; }
}
@media (max-width: 575.98px) {
  .services-modern { padding: 40px 0; }
  .services-header { margin-bottom: 28px; }
  .services-grid { gap: 20px; margin-bottom: 28px; }
}

/* ============================================
   Responsive: puri website mobile/tablet friendly
   ============================================ */
/* Mobile/tablet header – header-style-two: white bg, black text (index jaisa) */
@media (max-width: 991.98px) {
  .header-style-two .main-box {
    padding-left: 8px !important;
    padding-right: 8px !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    min-height: 92px !important;
    max-height: 92px !important;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  .header-style-two .main-box .outer-box,
  .header-style-two .main-box .nav-outer,
  .header-style-two .main-box .logo-box {
    order: unset;
  }
  .header-style-two .main-box .logo-box {
    position: relative;
    width: 260px;
    max-width: 260px;
    height: 92px;
    min-height: 92px;
    max-height: 92px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    clip-path: path("M0 28.4C0 12.7 12.7 0 28.4 0H235.5C256.4 0 270.2 21.5 261.6 40.3L224.9 120H0V28.4Z");
    background-color: #ffffff;
    overflow: hidden;
  }
  .header-style-two .main-box .logo-box .logo {
    max-width: 200px;
  }
  .header-style-two .main-box .logo-box .logo img {
    max-height: 90px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
  .header-style-two .main-box .outer-box .mobile-nav-toggler,
  .header-style-two .main-box .outer-box .mobile-nav-toggler .icon {
    color: #1a1a1a !important;
  }
  .header-style-two .main-box .nav-outer .main-menu .navigation > li > a {
    color: #1a1a1a !important;
  }
}

@media (max-width: 575.98px) {
  .header-style-two .main-box {
    padding-left: 6px !important;
    padding-right: 6px !important;
    min-height: 84px !important;
    max-height: 84px !important;
    overflow: hidden;
  }
  .header-style-two .main-box .logo-box {
    position: relative;
    width: 220px;
    max-width: 220px;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    clip-path: path("M0 28.4C0 12.7 12.7 0 28.4 0H235.5C256.4 0 270.2 21.5 261.6 40.3L224.9 120H0V28.4Z");
    background-color: #ffffff;
    overflow: hidden;
  }
  .header-style-two .main-box .logo-box .logo {
    max-width: 170px;
    width: 100%;
  }
  .header-style-two .main-box .logo-box .logo img {
    max-height: 78px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
}

/* Dropdown menu chhote screen pe full width, overflow na ho */
@media (max-width: 480px) {
  .main-header .main-menu .navigation > li > ul.dropdown-two-col {
    width: 100% !important;
    min-width: 100% !important;
    max-width: calc(100vw - 24px) !important;
    grid-template-columns: 1fr !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .main-header .main-menu .navigation > li > ul.dropdown-two-col > li:nth-child(odd) {
    border-right: none;
    border-bottom: 1px solid rgba(108, 67, 227, 0.08);
  }
  .main-header .main-menu .navigation > li > ul.dropdown-two-col > li:nth-child(even) {
    padding-left: 14px;
  }
}

/* Map ka color - grayscale remove (fika na lage) */
.map-section-three iframe,
.main-footer .map-section-three iframe {
  filter: none !important;
  -webkit-filter: none !important;
}

/* Footer – pure width, acha design */
.main-footer {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
}
.main-footer.footer-style-one {
  margin: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}
.main-footer.footer-style-one .outer-box {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  padding: 30px 0 1px !important;
  background: #0a0a0a !important;
  border: none !important;
  box-shadow: none !important;
}
.main-footer.footer-style-one .outer-box .bg.bg-pattern-7 {
  display: none !important;
  background: none !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}
.main-footer.footer-style-one .outer-box::before,
.main-footer.footer-style-one .outer-box::after {
  display: none !important;
}
.main-footer.footer-style-one::before,
.main-footer.footer-style-one::after {
  display: none !important;
}
.main-footer.footer-style-one .footer-bottom .inner-container::before {
  display: none !important;
}

/* Footer Bottom – Copyright + 4 links in one row, separate from contact */
.main-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.main-footer .footer-bottom .auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.main-footer .footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.main-footer .footer-copyright {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  letter-spacing: 0.02em;
}
.main-footer .footer-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.main-footer .footer-bottom-nav a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.main-footer .footer-bottom-nav a:hover {
  color: #C9A227 !important;
}
.main-footer .footer-bottom-nav a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .main-footer .footer-bottom {
    padding: 18px 0;
  }
  .main-footer .footer-bottom-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 16px;
  }
  .main-footer .footer-copyright {
    font-size: 13px;
    line-height: 1.5;
    padding: 0;
    word-wrap: break-word;
  }
  .main-footer .footer-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 14px;
  }
  .main-footer .footer-bottom-nav a {
    font-size: 12px;
    padding: 4px 0;
    display: inline-block;
  }
  .main-footer .footer-bottom-nav a:not(:last-child)::after {
    right: -8px;
  }
}
@media (max-width: 575.98px) {
  .main-footer .footer-bottom {
    padding: 16px 0;
  }
  .main-footer .footer-bottom .auto-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .main-footer .footer-bottom-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 12px;
  }
  .main-footer .footer-copyright {
    font-size: 12px;
    text-align: left;
    padding: 0;
  }
  .main-footer .footer-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 6px 10px;
  }
  .main-footer .footer-bottom-nav a {
    font-size: 11px;
    padding: 4px 0;
    display: inline-block;
  }
  .main-footer .footer-bottom-nav a:not(:last-child)::after {
    display: inline;
    right: -6px;
  }
}

.main-footer .widgets-section {
  padding: 0 !important;
}
.main-footer .auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.main-footer .footer-column {
  margin-bottom: 32px;
}

/* Footer – 5 equal columns (About Us | Contact Info | Menu | Menu | Get In Touch) */
.main-footer .footer-widgets-5 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.main-footer .footer-widgets-5 .footer-column.footer-col-5 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .main-footer .footer-widgets-5 .footer-column.footer-col-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .main-footer .footer-widgets-5 .footer-column.footer-col-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 991.98px) {
  .main-footer.footer-style-one .outer-box {
    padding: 40px 0 32px !important;
  }
}
@media (max-width: 575.98px) {
  .main-footer.footer-style-one .outer-box {
    padding: 32px 0 24px !important;
  }
  .main-footer .auto-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Footer text color white */
.main-footer,
.main-footer .text,
.main-footer .widget-title,
.main-footer .user-links a,
.main-footer .footer-bottom .copyright-text,
.main-footer .footer-bottom .scroll-to-top {
  color: #fff !important;
}
.main-footer .user-links a:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}
.main-footer .widget-title {
  font-weight: 600 !important;
  margin-bottom: 18px !important;
}
.main-footer .about-widget .text {
  opacity: 0.9;
  line-height: 1.6 !important;
}

/* Footer About Us – contact info with icons */
.main-footer .footer-contact-info-widget {
  padding-left: 20px;
}
.main-footer .footer-contact-info {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.main-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.95);
}
.main-footer .footer-contact-item:last-child {
  margin-bottom: 0;
}
.main-footer .footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-top: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.2);
  color: #C9A227;
  border-radius: 8px;
  font-size: 14px;
}
.main-footer .footer-contact-text {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}
.main-footer .footer-contact-text a {
  color: inherit !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-footer .footer-contact-text a:hover {
  color: #C9A227 !important;
}
@media (max-width: 991.98px) {
  .main-footer .footer-contact-info-widget {
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .main-footer .footer-contact-info {
    margin-top: 16px;
    padding-top: 14px;
  }
  .main-footer .footer-contact-item {
    gap: 10px;
    margin-bottom: 12px;
  }
  .main-footer .footer-contact-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .main-footer .footer-contact-text {
    font-size: 13px;
  }
}

/* Footer Get In Touch form – name, email, phone, message */
.main-footer .footer-contact-form-widget {
  margin-left: -24px;
}
.main-footer .footer-contact-form-widget .widget-title {
  margin-bottom: 16px !important;
}
.main-footer .footer-contact-form .form-group {
  margin-bottom: 12px;
}
.main-footer .footer-contact-form .form-group:last-child {
  margin-bottom: 0;
  margin-top: 4px;
}
.main-footer .footer-contact-form input,
.main-footer .footer-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}
.main-footer .footer-contact-form input::placeholder,
.main-footer .footer-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.main-footer .footer-contact-form input:focus,
.main-footer .footer-contact-form textarea:focus {
  outline: none;
  border-color: #C9A227;
  background: rgba(255, 255, 255, 0.1);
}
.main-footer .footer-contact-form textarea {
  min-height: 80px;
  resize: vertical;
}
.main-footer .footer-contact-form .theme-btn {
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #C9A227 0%, #B8860B 100%) !important;
  color: #fff !important;
  border: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.main-footer .footer-contact-form .theme-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}
@media (max-width: 991.98px) {
  .main-footer .footer-contact-form-widget {
    margin-left: 0;
  }
}

/* Social icons – actual brand colors (sab jagah: header, footer, mobile, pages) */
.social-icon-one li a .fa-facebook-f,
.social-icon-two li a .fa-facebook-f,
.social-links li a .fa-facebook-f,
.social-icon-four li a .fa-facebook-f,
.social-icon-five li a .fa-facebook-f { color: #1877F2 !important; }
.social-icon-one li a .fa-facebook-f:hover,
.social-icon-two li a:hover .fa-facebook-f,
.social-links li a:hover .fa-facebook-f,
.social-icon-four li a:hover .fa-facebook-f,
.social-icon-five li a:hover .fa-facebook-f { color: #0d65d9 !important; }

.social-icon-one li a .fa-instagram,
.social-icon-two li a .fa-instagram,
.social-links li a .fa-instagram,
.social-icon-four li a .fa-instagram,
.social-icon-five li a .fa-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-icon-one li a:hover .fa-instagram,
.social-icon-two li a:hover .fa-instagram,
.social-links li a:hover .fa-instagram,
.social-icon-four li a:hover .fa-instagram,
.social-icon-five li a:hover .fa-instagram {
  opacity: 0.9;
  -webkit-text-fill-color: transparent;
}

.social-icon-one li a .fa-youtube,
.social-icon-two li a .fa-youtube,
.social-links li a .fa-youtube,
.social-icon-four li a .fa-youtube,
.social-icon-five li a .fa-youtube { color: #FF0000 !important; }
.social-icon-one li a:hover .fa-youtube,
.social-icon-two li a:hover .fa-youtube,
.social-links li a:hover .fa-youtube,
.social-icon-four li a:hover .fa-youtube,
.social-icon-five li a:hover .fa-youtube { color: #cc0000 !important; }

.social-icon-one li a .fa-linkedin-in,
.social-icon-two li a .fa-linkedin-in,
.social-links li a .fa-linkedin-in,
.social-icon-four li a .fa-linkedin-in,
.social-icon-five li a .fa-linkedin-in { color: #0A66C2 !important; }
.social-icon-one li a:hover .fa-linkedin-in,
.social-icon-two li a:hover .fa-linkedin-in,
.social-links li a:hover .fa-linkedin-in,
.social-icon-four li a:hover .fa-linkedin-in,
.social-icon-five li a:hover .fa-linkedin-in { color: #004182 !important; }

.social-icon-one li a .fa-x-twitter,
.social-icon-two li a .fa-x-twitter,
.social-links li a .fa-x-twitter,
.social-icon-four li a .fa-x-twitter,
.social-icon-five li a .fa-x-twitter { color: #000000 !important; }
.social-icon-one li a:hover .fa-x-twitter,
.social-icon-two li a:hover .fa-x-twitter,
.social-links li a:hover .fa-x-twitter,
.social-icon-four li a:hover .fa-x-twitter,
.social-icon-five li a:hover .fa-x-twitter { color: #333333 !important; }

/* Header top light: icon colors visible on dark bg */
.main-header .social-icon-one.light li a .fa-facebook-f { color: #1877F2 !important; }
.main-header .social-icon-one.light li a .fa-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-header .social-icon-one.light li a .fa-youtube { color: #FF0000 !important; }
.main-header .social-icon-one.light li a .fa-linkedin-in { color: #0A66C2 !important; }
.main-header .social-icon-one.light li a .fa-x-twitter { color: #ffffff !important; }

.main-footer .social-icon-two li a:hover {
  color: inherit !important;
}
.main-footer .social-icon-two li a:hover .fa-facebook-f { color: #0d65d9 !important; }
.main-footer .social-icon-two li a:hover .fa-youtube { color: #cc0000 !important; }
.main-footer .social-icon-two li a:hover .fa-linkedin-in { color: #004182 !important; }
.main-footer .social-icon-two li a:hover .fa-instagram { opacity: 0.9; -webkit-text-fill-color: transparent; }

/* Footer: mobile view – Explore ke right me links (title left, links right) */
@media (max-width: 767.98px) {
  .main-footer .footer-widget.links-widget {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }
  .main-footer .footer-widget.links-widget .widget-title {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .main-footer .footer-widget.links-widget .user-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .main-footer .footer-widget.links-widget .user-links li {
    margin-bottom: 0;
  }
}

/* Images / iframes kabhi viewport se bahar na jayein */
img, iframe, video, embed {
  max-width: 100%;
  height: auto;
}
iframe {
  max-height: 400px;
}

/* Mobile menu – animated open (slide + bounce + staggered items) */
@media (max-width: 991.98px) {
  .mobile-menu {
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .mobile-menu .menu-backdrop {
    background: rgba(10, 10, 10, 0.75);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
  }
  .mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
  }
  .mobile-menu .menu-box {
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15), -2px 0 0 0 var(--theme-color1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 3px solid var(--theme-color1);
    background: linear-gradient(180deg, #ffffff 0%, #fefefe 50%, #fafafa 100%);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s ease;
  }
  .mobile-menu-visible .mobile-menu .menu-box {
    transform: translateX(0);
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s ease;
  }
  .mobile-menu .navigation > li {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.2s ease;
  }
  .mobile-menu-visible .mobile-menu .navigation > li {
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-menu-visible .mobile-menu .navigation > li:nth-child(1) { transition-delay: 0.08s; }
  .mobile-menu-visible .mobile-menu .navigation > li:nth-child(2) { transition-delay: 0.12s; }
  .mobile-menu-visible .mobile-menu .navigation > li:nth-child(3) { transition-delay: 0.16s; }
  .mobile-menu-visible .mobile-menu .navigation > li:nth-child(4) { transition-delay: 0.2s; }
  .mobile-menu-visible .mobile-menu .navigation > li:nth-child(5) { transition-delay: 0.24s; }
  .mobile-menu-visible .mobile-menu .navigation > li:nth-child(6) { transition-delay: 0.28s; }
  .mobile-menu-visible .mobile-menu .navigation > li:nth-child(7) { transition-delay: 0.32s; }
  .mobile-menu-visible .mobile-menu .navigation > li:nth-child(8) { transition-delay: 0.36s; }
  .mobile-menu .close-btn {
    opacity: 0;
    transform: translateY(-12px) scale(0.9);
    transition: opacity 0.3s ease 0.25s, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) 0.25s, background 0.2s ease;
  }
  .mobile-menu-visible .mobile-menu .close-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.3s ease 0.3s, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) 0.3s, background 0.2s ease;
  }
  .mobile-menu .upper-box {
    border-bottom: 2px solid rgba(201, 162, 39, 0.25);
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.06) 0%, transparent 100%);
  }
  .mobile-menu .close-btn {
    background: var(--theme-color3);
    color: #fff !important;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .mobile-menu .close-btn:hover {
    background: var(--theme-color1);
    opacity: 1;
  }
  .mobile-menu .nav-logo {
    display: flex;
    align-items: center;
  }
  .mobile-menu .nav-logo img {
    max-height: 48px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
  .mobile-menu .navigation {
    border-top: none;
    padding: 12px 0;
  }
  .mobile-menu .navigation li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .mobile-menu .navigation li > a {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  }
  .mobile-menu .navigation li:hover > a,
  .mobile-menu .navigation li.current > a {
    color: var(--theme-color1);
    background: rgba(201, 162, 39, 0.08);
    padding-left: 24px;
  }
  .mobile-menu .navigation li.dropdown .dropdown-btn {
    color: #333;
  }
  .mobile-menu .contact-list-one {
    padding: 20px 20px 16px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
  }
  .mobile-menu .contact-list-one li .icon {
    color: var(--theme-color1);
  }
  .mobile-menu .social-links {
    border-top: 2px solid rgba(201, 162, 39, 0.2);
  }
  .mobile-menu .social-links li a:hover {
    color: var(--theme-color1);
  }
}

/* Touch-friendly: tap targets kam se kam 44px */
@media (max-width: 767.98px) {
  .main-header .main-menu .navigation > li > a,
  .main-header .outer-box .info-btn a,
  .theme-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Marquee section - Digital Marketing: premium attractive design */
.marquee-section-digital {
  position: relative;
  background: linear-gradient(145deg, #0a0a12 0%, #12121f 35%, #1a1a2e 65%, #0d1117 100%);
  padding: 48px 0 !important;
  overflow: hidden;
  border-top: 1px solid rgba(108, 67, 227, 0.2);
  border-bottom: 1px solid rgba(237, 138, 51, 0.2);
}

.marquee-section-digital::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(108, 67, 227, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.marquee-section-digital .marquee-container {
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-section-digital .marquee .text {
  color: #f1f5f9 !important;
  font-size: 54px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(108, 67, 227, 0.25), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marquee-section-digital .marquee .text.two {
  background: linear-gradient(90deg, #ed8a33, #fbbf24, #ed8a33);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(237, 138, 51, 0.4));
  animation: marquee-glow 4s ease-in-out infinite;
}

@keyframes marquee-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(237, 138, 51, 0.4)); }
  50% { filter: drop-shadow(0 0 30px rgba(237, 138, 51, 0.6)); }
}

.marquee-sep {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ed8a33, #6c43e3);
  margin: 0 32px;
  align-self: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(108, 67, 227, 0.5), 0 0 8px rgba(237, 138, 51, 0.3);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .marquee-section-digital .marquee .text { font-size: 44px !important; }
  .marquee-sep { margin: 0 24px; width: 8px; height: 8px; min-width: 8px; }
}

@media (max-width: 767.98px) {
  .marquee-section-digital { padding: 36px 0 !important; }
  .marquee-section-digital .marquee .text { font-size: 26px !important; }
  .marquee-sep { margin: 0 14px; width: 6px; height: 6px; min-width: 6px; box-shadow: 0 0 8px rgba(108, 67, 227, 0.4); }
}

/* Coding Tools marquee - Font Awesome icons with actual brand colors */
.client-section .coding-tools-marquee .client-block .image {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-section .coding-tools-marquee .client-block .image i {
  font-size: 42px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.client-section .coding-tools-marquee .client-block:hover .image i {
  transform: scale(1.1);
  opacity: 1;
}
/* Actual brand colors */
.client-section .coding-tools-marquee .fa-php { color: #777BB4 !important; }
.client-section .coding-tools-marquee .fa-laravel { color: #FF2D20 !important; }
.client-section .coding-tools-marquee .fa-js-square { color: #F7DF1E !important; }
.client-section .coding-tools-marquee .fa-react { color: #61DAFB !important; }
.client-section .coding-tools-marquee .fa-node-js { color: #339933 !important; }
.client-section .coding-tools-marquee .fa-html5 { color: #E34F26 !important; }
.client-section .coding-tools-marquee .fa-css3-alt { color: #1572B6 !important; }
.client-section .coding-tools-marquee .fa-git-alt { color: #F05032 !important; }
.client-section .coding-tools-marquee .fa-database { color: #4a5568 !important; }
@media (max-width: 575.98px) {
  .client-section .coding-tools-marquee .client-block .image i {
    font-size: 32px;
  }
}

/* Project section - poora card clickable */
.project-block-link {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}
.project-block-link:hover {
  color: inherit;
}

/* Project section – card & image responsive */
/* Homepage: project-block (swiper) */
.project-section .project-block .inner-box {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.project-section .project-block .inner-box .image-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.project-section .project-block .inner-box .image-box .image {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
.project-section .project-block .inner-box .image-box .image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

/* Content & readmore – responsive */
@media (max-width: 767.98px) {
  .project-section .project-block .inner-box .content-box {
    padding: 20px 20px !important;
  }
  .project-section .project-block .inner-box .content-box .title {
    font-size: 18px !important;
  }
  .project-section .project-block .inner-box .readmore {
    width: 48px !important;
    height: 48px !important;
    top: 14px !important;
    right: 14px !important;
    font-size: 16px !important;
  }
}
@media (max-width: 575.98px) {
  .project-section .project-block .inner-box .image-box {
    aspect-ratio: 16 / 10;
  }
  .project-section .project-block .inner-box .content-box {
    padding: 16px 16px !important;
  }
  .project-section .project-block .inner-box .content-box .cat-box {
    padding: 6px 8px !important;
  }
  .project-section .project-block .inner-box .content-box .cat-box .cat {
    font-size: 12px !important;
  }
  .project-section .project-block .inner-box .content-box .title {
    font-size: 16px !important;
  }
}

/* Project section – mobile responsive: card–dots gap kam, layout thik */
.project-section .outer-box {
  padding-bottom: 0;
}
.project-section .outer-box .swiper-pagination {
  margin-top: 24px;
}
/* Project cards – remove blue overlay from base theme */
.project-section .project-block .inner-box::before,
.project-section .project-block .inner-box::after {
  display: none !important;
}

/* Project cards – text hamesha visible aur readable */
.project-section .project-block .inner-box .content-box {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  padding: 20px 24px 24px !important;
  width: 100%;
  box-sizing: border-box;
}
.project-section .project-block .inner-box .content-box .cat-box {
  transform: none !important;
  opacity: 1 !important;
  margin-bottom: 10px;
}
.project-section .project-block .inner-box .content-box .cat-box .cat {
  -webkit-text-fill-color: var(--theme-color1);
  color: var(--theme-color1);
}
.project-section .project-block .inner-box .content-box .title {
  transform: none !important;
  opacity: 1 !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  margin: 0 !important;
}
.project-section .project-block.swiper-slide-active .inner-box .content-box .cat-box,
.project-section .project-block.swiper-slide-active .inner-box .content-box .title {
  transform: none !important;
  opacity: 1 !important;
}
@media (max-width: 767.98px) {
  .project-section {
    padding: 40px 16px 24px;
  }
  .project-section .outer-box {
    padding-top: 16px;
  }
  .project-section .outer-box .swiper-pagination {
    margin-top: 16px;
  }
  .project-section .sec-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .project-section {
    padding: 32px 12px 20px;
  }
  .project-section .outer-box .swiper-pagination {
    margin-top: 12px;
  }
}

/* ============================================
   Funfact section – attractive canvas design, text clearly visible
   ============================================ */
.funfact-section.funfact-section-canvas {
  position: relative;
  background: #050507;
  overflow: hidden;
  padding: 3px 0 1px !important;
}
/* Section-level canvas – animated particles on black background */
.funfact-section.funfact-section-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(201, 162, 39, 0.6) 0 1.2px, transparent 1.2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px);
  background-size: 140px 140px, 220px 220px, 180px 180px;
  background-position: 0 0, 60px 80px, -40px 120px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
  animation: funfactParticlesMove 40s linear infinite;
}
.funfact-section.funfact-section-canvas .outer-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, #141418 0%, #0f0f12 50%, #0c0c0e 100%) !important;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 6px,
      rgba(255, 255, 255, 0.12) 6px,
      rgba(255, 255, 255, 0.12) 7px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 6px,
      rgba(255, 255, 255, 0.12) 6px,
      rgba(255, 255, 255, 0.12) 7px
    ),
    linear-gradient(165deg, #16161a 0%, #111114 50%, #0d0d10 100%) !important;
  background-size: auto auto, auto auto, 100% 100%;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@keyframes funfactParticlesMove {
  0% {
    background-position: 0 0, 60px 80px, -40px 120px;
  }
  50% {
    background-position: -80px 60px, 20px 140px, 40px 200px;
  }
  100% {
    background-position: 0 0, 60px 80px, -40px 120px;
  }
}
.funfact-section.funfact-section-canvas .outer-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #D4AF37 0%, var(--theme-color1) 50%, var(--theme-color2) 100%);
  border-radius: 24px 0 0 24px;
  z-index: 0;
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.4);
}
.funfact-section.funfact-section-canvas .auto-container {
  position: relative;
  z-index: 2;
}
/* Counter & title – text clearly visible (white, strong contrast) */
.funfact-section.funfact-section-canvas .counter-block .inner-box .count-box,
.funfact-section.funfact-section-canvas .counter-block .inner-box .count-box .count-text,
.funfact-section.funfact-section-canvas .counter-block .inner-box .text,
.funfact-section.funfact-section-canvas .title-box .title {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.2);
}
.funfact-section.funfact-section-canvas .counter-block .inner-box .count-box {
  font-weight: 700;
}
.funfact-section.funfact-section-canvas .counter-block .inner-box .text {
  color: rgba(255, 255, 255, 0.92) !important;
}
.funfact-section.funfact-section-canvas .title-box .title {
  font-weight: 600;
  line-height: 1.4;
}
.funfact-section.funfact-section-canvas .title-box .exp-box .circular-text text {
  fill: rgba(255, 255, 255, 0.9) !important;
}
.funfact-section.funfact-section-canvas .counter-block .inner-box .icon-box .icon {
  width: 82px;
  height: 88px;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #38bdf8, #6366f1);
  color: #020617 !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.funfact-section.funfact-section-canvas .title-box .exp-box .icon-box .icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #38bdf8, #6366f1);
  color: #020617 !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.7);
}
.funfact-section.funfact-section-canvas .counter-block .inner-box .icon-box:before {
  border-top-color: #020617 !important;
}
.funfact-section.funfact-section-canvas .counter-block .inner-box:hover .icon-box .icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
}
/* Counter cards – subtle gold border, readable */
.funfact-section.funfact-section-canvas .counter-block .inner-box {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(201, 162, 39, 0.25) !important;
  border-top: 3px solid var(--theme-color1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.funfact-section.funfact-section-canvas .counter-block .inner-box:hover {
  border-color: rgba(201, 162, 39, 0.45) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 162, 39, 0.15);
}
@media (max-width: 991.98px) {
  .funfact-section.funfact-section-canvas {
    padding: 56px 0 70px !important;
  }
}
@media (max-width: 767.98px) {
  .funfact-section.funfact-section-canvas {
    padding: 48px 0 56px !important;
  }
}

/* ============================================
   Project section – canvas design, text clearly visible
   ============================================ */
.project-section {
  position: relative;
  background: #050507;
  overflow: hidden;
}
.project-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(201, 162, 39, 0.65) 0 1.2px, transparent 1.2px),
    radial-gradient(circle, rgba(184, 134, 11, 0.5) 0 1.1px, transparent 1.1px);
  background-size: 160px 160px, 260px 260px, 200px 200px;
  background-position: 0 0, 80px 120px, -60px 200px;
  pointer-events: none;
  z-index: 0;
  animation: projectParticlesMove 45s linear infinite;
}
.project-section .outer-box {
  position: relative;
  z-index: 1;
}
.project-section .sec-title.light .sub-title,
.project-section .sec-title.light h2,
.project-section .sec-title.light .text-reveal-anim {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.project-section .sec-title.light .sub-title {
  color: rgba(255, 255, 255, 0.9) !important;
}
.project-section .theme-btn.btn-style-one {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
}
.project-section .theme-btn.btn-style-one:hover {
  background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
  color: #fff !important;
  border-color: var(--theme-color1);
}
.project-section .outer-box .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
}
.project-section .outer-box .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--theme-color1);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
}

@keyframes projectParticlesMove {
  0% {
    background-position: 0 0, 80px 120px, -60px 200px;
  }
  50% {
    background-position: -90px 50px, 10px 180px, 40px 260px;
  }
  100% {
    background-position: 0 0, 80px 120px, -60px 200px;
  }
}

/* Projects index: project-block-four (grid swiper) */
.project-block-four .inner-box .image-box {
  width: 100%;
  overflow: hidden;
}
.project-block-four .inner-box .image-box .image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  margin: 0;
}
.project-block-four .inner-box .image-box .image a {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.project-block-four .inner-box .image-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 575.98px) {
  .project-block-four .inner-box .image-box .image {
    aspect-ratio: 16/10;
  }
}

/* Project detail: main image */
.service-details-section .image-box {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.service-details-section .image-box .image,
.service-details-section .image-box .image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* ============================================
   Service Details Page – Attractive design
   ============================================ */
.service-details-section {
  padding: 56px 0 3px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 20%, #fff 100%);
}
.service-details-section .service-details-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 44px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.service-details-section .service-content {
  margin-bottom: 0;
}
.service-details-section .service-details-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--theme-color1);
  display: inline-block;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .service-details-section .service-details-title {
    font-size: 2.25rem;
  }
}
.service-details-section .service-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}
.service-details-section .service-rich-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-color);
}
.service-details-section .service-rich-content p {
  margin-bottom: 1em;
}
.service-details-section .service-rich-content h2,
.service-details-section .service-rich-content h3 {
  color: var(--headings-color);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.service-details-section .service-image-wrap {
  margin-top: 3px;
  margin-bottom: 3px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.service-details-section .service-image-wrap .image,
.service-details-section .service-image-wrap .image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.service-details-section .service-features-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.service-details-section .features-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-details-section .features-heading i {
  color: var(--theme-color1);
  font-size: 1.25rem;
}
.service-details-section .service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 576px) {
  .service-details-section .service-features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-details-section .service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(184, 134, 11, 0.05) 100%);
  border-radius: 12px;
  border-left: 3px solid var(--theme-color1);
  font-weight: 500;
  color: var(--headings-color);
  transition: background 0.25s ease, transform 0.2s ease;
}
.service-details-section .service-features-list li:hover {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(184, 134, 11, 0.08) 100%);
  transform: translateX(4px);
}
.service-details-section .service-features-list li i {
  color: var(--theme-color1);
  margin-top: 2px;
  flex-shrink: 0;
}
.service-details-section .service-features-list li span {
  flex: 1;
}

/* Sidebar – Service List: JS-based sticky (overflow:hidden ki wajah CSS sticky nahi chalta) */
.service-details-section .row {
  align-items: stretch;
}
.service-details-section .sidebar-column {
  align-self: stretch;
}
.service-details-section .service-sidebar-spacer {
  display: none;
  flex-shrink: 0;
  transition: height 0.2s ease-out;
}
.service-details-section .service-sidebar-card.widget-sidber {
  padding: 28px 24px 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.service-details-section .service-sidebar-card.widget-sidber.is-sticky {
  position: fixed !important;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s ease, left 0.2s ease-out, width 0.2s ease-out, top 0.2s ease-out;
}
.service-details-section .service-sidebar-card .sidebar-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--theme-color1);
}
.service-details-section .service-sidebar-card .widget-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-details-section .service-sidebar-card .widget-category ul li {
  margin-bottom: 8px;
}
.service-details-section .service-sidebar-card .widget-category ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--headings-color);
  background: #f8f8f8;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}
.service-details-section .service-sidebar-card .widget-category ul li a:hover {
  background: var(--theme-color1);
  color: #fff;
}
.service-details-section .service-sidebar-card .widget-category ul li a:hover .icon {
  color: #fff;
  transform: translateX(4px);
}
.service-details-section .service-sidebar-card .widget-category ul li.current a {
  background: var(--gradient-1);
  color: #fff;
}
.service-details-section .service-sidebar-card .widget-category ul li.current a .icon {
  color: #fff;
}
.service-details-section .service-sidebar-card .widget-category ul li .icon {
  transition: transform 0.25s ease;
  font-size: 14px;
}
.service-details-section .service-sidebar-card .widget-category ul li a::before {
  display: none !important;
}
.service-details-section .contents-column {
  padding-left: 24px;
}
@media (max-width: 991.98px) {
  .service-details-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .service-details-section .sidebar-column {
    align-self: auto;
  }
  .service-details-section .service-sidebar-card.widget-sidber,
  .service-details-section .service-sidebar-card.widget-sidber.is-sticky {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
  }
  .service-details-section .service-sidebar-spacer {
    display: none !important;
  }
  .service-details-section .contents-column {
    padding-left: 15px;
  }
  .service-details-section .service-details-card {
    padding: 24px 16px 28px;
  }
  .service-details-section .service-features-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .service-details-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .service-details-section .service-details-card {
    padding: 20px 14px 24px;
  }
}

/* ============================================
   Project Details Page – Attractive Design
   ============================================ */
.project-details-section {
  padding: 60px 0 2px;
}
.project-details-section .image-box {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.project-details-section .image-box .image,
.project-details-section .image-box .image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: cover;
}
.project-details-section .project-column .inner-box {
  padding: 32px 28px;
  background: linear-gradient(145deg, #f8f7ff 0%, #fff 100%);
  border: 1px solid rgba(108, 67, 227, 0.12);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(108, 67, 227, 0.06);
}
.project-details-section .project-column .project-title .title {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color3);
  margin-bottom: 16px;
}
.project-details-section .project-column .project-title .text {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 24px;
}
.project-details-section .project-column .project-name .project {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-details-section .project-column .project-name .project li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color3);
}
.project-details-section .project-column .project-name .project li:last-child {
  border-bottom: none;
}
.project-details-section .project-column .project-name .project li span {
  font-weight: 500;
  color: #6b7280;
}
.project-details-section .content-column .inner-box {
  margin-left: 0;
  padding-left: 40px;
}
.project-details-section .project-title-main {
  font-size: 32px;
  font-weight: 700;
  color: var(--theme-color3);
  margin-bottom: 24px;
  line-height: 1.3;
}
.project-details-section .project-desc,
.project-details-section .project-rich-content {
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 20px;
}
.project-details-section .project-rich-content p {
  margin-bottom: 16px;
}
.project-details-section .project-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.project-details-section .project-btn .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--theme-color3);
  background: #f3f4f6;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.project-details-section .project-btn .btn:hover {
  background: linear-gradient(135deg, #6c43e3 0%, #8b5cf6 100%);
  color: #fff;
}
.project-details-section .project-btn .btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .project-details-section .content-column .inner-box {
    padding-left: 0;
    padding-top: 30px;
  }
  .project-details-section .project-title-main {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .project-details-section {
    padding: 40px 0 60px;
  }
  .project-details-section .image-box {
    max-width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
  }
  .project-details-section .image-box .image img {
    max-height: 280px;
  }
  .project-details-section .project-column {
    order: 2;
    margin-top: 24px;
  }
  .project-details-section .content-column {
    order: 1;
  }
  .project-details-section .project-btn {
    flex-direction: column;
    margin-top: 32px;
  }
}

/* Related Projects Carousel – attractive design, 3 sec autoplay */
.related-projects-carousel-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #faf9ff 0%, #fff 100%);
}
.related-projects-carousel-section .sec-title .title {
  font-size: 32px;
  font-weight: 700;
  color: var(--theme-color3);
  margin-bottom: 40px;
}
.related-projects-swiper-wrapper {
  position: relative;
  padding: 0 50px;
}
.related-projects-swiper {
  overflow: hidden;
}
.related-projects-swiper .swiper-slide {
  height: auto;
}
.related-projects-swiper .project-card-modern {
  height: 100%;
}
.related-projects-pagination {
  position: relative;
  margin-top: 28px;
}
.related-projects-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
  transition: all 0.3s ease;
}
.related-projects-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 5px;
  background: linear-gradient(90deg, #6c43e3, #8b5cf6);
}
.related-projects-prev,
.related-projects-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #6c43e3;
  box-shadow: 0 4px 16px rgba(108, 67, 227, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-projects-prev {
  left: 0;
}
.related-projects-next {
  right: 0;
}
.related-projects-prev:after,
.related-projects-next:after {
  display: none;
}
.related-projects-prev i,
.related-projects-next i {
  font-size: 16px;
}
.related-projects-prev:hover,
.related-projects-next:hover {
  background: linear-gradient(135deg, #6c43e3, #8b5cf6);
  color: #fff;
  box-shadow: 0 6px 24px rgba(108, 67, 227, 0.4);
}
@media (max-width: 767.98px) {
  .related-projects-carousel-section {
    padding: 40px 0 60px;
  }
  .related-projects-swiper-wrapper {
    padding: 0 40px;
  }
  .related-projects-prev,
  .related-projects-next {
    width: 40px;
    height: 40px;
  }
}

/* Related Services Carousel – service detail page, slide */
.related-services-section {
  padding: 44px 0 42px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 50%, #fff 100%);
}
.related-services-section .sec-title .sub-title {
  color: var(--theme-color1);
  font-weight: 600;
}
.related-services-section .sec-title .title {
  font-size: 32px;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 36px;
}
.related-services-swiper-wrapper {
  position: relative;
  padding: 0 50px;
}
.related-services-swiper {
  overflow: hidden;
}
.related-services-swiper .swiper-slide {
  height: auto;
}
.related-service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.related-service-card:hover {
  box-shadow: 0 12px 36px rgba(201, 162, 39, 0.18);
  border-color: rgba(201, 162, 39, 0.25);
  transform: translateY(-4px);
}
.related-service-card__img {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  background: #f0f0f0;
}
.related-service-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.related-service-card:hover .related-service-card__img img {
  transform: scale(1.06);
}
.related-service-card__arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--theme-color1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translate(4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.related-service-card:hover .related-service-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}
.related-service-card__body {
  padding: 20px 20px 24px;
}
.related-service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--headings-color);
  margin: 0 0 8px;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.related-service-card:hover .related-service-card__title {
  color: var(--theme-color1);
}
.related-service-card__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-color);
  margin: 0;
}
.related-services-pagination {
  position: relative;
  margin-top: 0px;
}
.related-services-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
  transition: all 0.3s ease;
}
.related-services-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 5px;
  background: var(--gradient-1);
}
.related-services-prev,
.related-services-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--theme-color1);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-services-prev { left: 0; }
.related-services-next { right: 0; }
.related-services-prev:after,
.related-services-next:after { display: none; }
.related-services-prev i,
.related-services-next i { font-size: 16px; }
.related-services-prev:hover,
.related-services-next:hover {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.4);
}
@media (max-width: 767.98px) {
  .related-services-section {
    padding: 24px 0 32px;
  }
  .related-services-section .sec-title .title {
    margin-bottom: 20px;
  }
  .related-services-swiper-wrapper {
    padding: 0 4px;
  }
  .related-services-prev,
  .related-services-next {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   Project Cards - Modern Attractive Design
   ============================================ */
.project-card-modern {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}
.project-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(108, 67, 227, 0.15);
}
.project-card-modern__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card-modern__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.project-card-modern:hover .project-card-modern__img img {
  transform: scale(1.08);
}
.project-card-modern__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.project-card-modern:hover .project-card-modern__overlay {
  opacity: 1;
}
.project-card-modern__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--theme-color2, #6b43e3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.project-card-modern:hover .project-card-modern__arrow {
  transform: scale(1);
  opacity: 1;
}
.project-card-modern__body {
  padding: 20px 24px;
  border-top: none;
}
.project-card-modern__cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--theme-color2, #6b43e3);
  margin-bottom: 8px;
}
.project-card-modern__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--theme-color3, #1e1b4b);
  transition: color 0.25s ease;
}
.project-card-modern:hover .project-card-modern__title {
  color: var(--theme-color2, #6b43e3);
}
.project-card-modern__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}
.project-cards-grid .col-lg-4,
.project-cards-grid .col-md-6 {
  display: flex;
}
.project-cards-grid .project-card-modern {
  flex: 1;
  min-width: 0;
}
.recent-projects-section .title {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-color3, #1e1b4b);
}

/* Plans section: equal-height cards, button always visible at bottom */
.pricing-section .pricing-block {
  display: flex;
  flex-direction: column;
}
.pricing-section .pricing-block .inner-box {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pricing-section .pricing-block .inner-box .content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: visible !important;
  clip-path: none !important;
  border-radius: 150px 20px 20px 20px;
}
.pricing-section .pricing-block .inner-box .content .btn-box {
  margin-top: auto;
  padding-top: 24px;
  flex-shrink: 0;
  visibility: visible !important;
}

/* ============================================
   Breadcrumb Section – canvas design clearly dikhne wala
   ============================================ */
.breadcume-section {
  position: relative;
  padding: 100px 20px 1px !important;
  background: #0a0a0a;
  overflow: visible;
  min-height: 120px;
}
/* Canvas – clearly visible grid (bold lines) */
.breadcume-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 7px,
      rgba(255, 255, 255, 0.22) 7px,
      rgba(255, 255, 255, 0.22) 8px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 7px,
      rgba(255, 255, 255, 0.22) 7px,
      rgba(255, 255, 255, 0.22) 8px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 10px,
      rgba(201, 162, 39, 0.12) 10px,
      rgba(201, 162, 39, 0.12) 11px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 10px,
      rgba(201, 162, 39, 0.1) 10px,
      rgba(201, 162, 39, 0.1) 11px
    );
  pointer-events: none;
  z-index: 0;
}
.breadcume-section .outer-box {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  overflow: visible;
  z-index: 1;
  background-color: #151515 !important;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 6px,
      rgba(255, 255, 255, 0.18) 6px,
      rgba(255, 255, 255, 0.18) 7px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 6px,
      rgba(255, 255, 255, 0.18) 6px,
      rgba(255, 255, 255, 0.18) 7px
    ),
    linear-gradient(155deg, #1a1a1a 0%, #141414 50%, #0f0f0f 100%) !important;
  background-size: auto auto, auto auto, 100% 100%;
  border: none;
  border-radius: 20px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
/* Gold left stripe – clearly visible */
.breadcume-section .outer-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #D4AF37 0%, #C9A227 50%, #B8860B 100%);
  border-radius: 20px 0 0 20px;
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.45);
}
/* Inner canvas frame – border hata diya */
.breadcume-section .outer-box::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  border: none;
  pointer-events: none;
}
.breadcume-section .outer-box .auto-container {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.breadcume-section .breadcumb-content {
  position: relative;
  text-align: center;
  padding: 36px 28px 40px !important;
  z-index: 1;
  overflow: visible;
}
.breadcume-section .breadcumb-content .breadcumb-title {
  margin-bottom: 14px;
  position: relative;
}
.breadcume-section .breadcumb-content .breadcumb-title .title {
  font-size: 30px !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #C9A227;
}
.breadcume-section .breadcumb-content .breadcumb-title .title::after {
  display: none;
}
.breadcume-section .breadcume-pull {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}
.breadcume-section .breadcume-pull li {
  display: inline-flex !important;
  align-items: center;
  color: #ffffff;
}
.breadcume-section .breadcume-pull li .title-line {
  color: #ffffff !important;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.breadcume-section .breadcume-pull li .title-line:hover {
  color: #E5C158 !important;
  background: rgba(201, 162, 39, 0.2);
}
.breadcume-section .breadcume-pull li .title-line:focus {
  outline: none;
}
.breadcume-section .breadcume-pull li .title-line span {
  display: none;
}
.breadcume-section .breadcume-pull li:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  color: #C9A227;
  margin: 0 4px 0 8px;
}
.breadcume-section .breadcume-pull li:last-child {
  color: #E5C158;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .breadcume-section {
    padding: 56px 16px 32px !important;
  }
  .breadcume-section .breadcumb-content {
    padding: 28px 20px 28px !important;
  }
  .breadcume-section .breadcumb-content .breadcumb-title .title {
    font-size: 26px !important;
    padding-bottom: 10px;
  }
  .breadcume-section .breadcume-pull {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .breadcume-section {
    padding: 48px 12px 24px !important;
  }
  .breadcume-section .outer-box {
    border-radius: 20px;
  }
  .breadcume-section .outer-box::before {
    border-radius: 20px 0 0 20px;
    width: 3px;
  }
  .breadcume-section .breadcumb-content {
    padding: 9px 6px 7px !important;
  }
  .breadcume-section .breadcumb-content .breadcumb-title .title {
    font-size: 20px !important;
    line-height: 1.35 !important;
    padding-bottom: 8px;
  }
  .breadcume-section .breadcume-pull {
    font-size: 12px;
    gap: 2px 0;
  }
  .breadcume-section .breadcume-pull li .title-line {
    padding: 4px 8px;
  }
}

/* ============================================
   Privacy Policy / Terms & Conditions – attractive legal pages
   ============================================ */
.legal-content-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
}
.legal-content-section .auto-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.legal-content-box {
  max-width: 100%;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 48px 52px 56px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #C9A227;
  box-sizing: border-box;
}
.legal-updated {
  font-size: 13px;
  color: #666;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.legal-block {
  margin-bottom: 28px;
}
.legal-block:last-child {
  margin-bottom: 0;
}
.legal-block h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.legal-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}
.legal-block p:last-child {
  margin-bottom: 0;
}
.legal-block ul {
  margin: 12px 0 0;
  padding-left: 24px;
  list-style: none;
}
.legal-block ul li {
  position: relative;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 8px;
  padding-left: 20px;
}
.legal-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #C9A227;
  border-radius: 50%;
}
.legal-block a {
  color: #C9A227;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-block a:hover {
  color: #B8860B;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .legal-content-section {
    padding: 40px 0 56px;
  }
  .legal-content-box {
    padding: 28px 20px 36px;
    border-radius: 12px;
    border-left-width: 3px;
  }
  .legal-block h2 {
    font-size: 18px;
  }
  .legal-block p,
  .legal-block ul li {
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .legal-content-section .auto-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .legal-content-box {
    padding: 24px 16px 32px;
  }
}

/* ============================================
   Contact Us Page – responsive + attractive design
   ============================================ */
.contact-section-five {
  padding: 80px 0 80px;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
}
.contact-section-five .outer-box {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  margin: 0 !important;
}
.contact-section-five .outer-box .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.contact-section-five .outer-box .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Content column (form) – left */
.contact-section-five .content-column .inner-column {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 44px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  border-left: 4px solid #C9A227;
}
.contact-section-five .content-column .inner-column .sec-title {
  margin-bottom: 28px;
}
.contact-section-five .content-column .inner-column .sec-title h2 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #0a0a0a !important;
  letter-spacing: -0.02em;
}

/* Contact form – cleaner inputs */
.contact-section-five .contact-form-three input:not([type=submit]),
.contact-section-five .contact-form-three textarea {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  padding: 16px 20px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-section-five .contact-form-three input:focus,
.contact-section-five .contact-form-three textarea:focus {
  border-color: #C9A227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
  outline: none;
}
.contact-section-five .contact-form-three textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-section-five .contact-form-three .btn-box .theme-btn {
  background: linear-gradient(135deg, #C9A227 0%, #B8860B 100%);
  color: #fff !important;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-section-five .contact-form-three .btn-box .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35);
}

/* Contact column (info) – right, card style */
.contact-section-five .contact-column {
  padding-left: 20px;
}
.contact-section-five .contact-column .inner-column {
  background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 40px 32px 44px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-section-five .contact-column .inner-column .inner-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.contact-section-five .contact-column .inner-column .inner-box:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-section-five .contact-column .inner-column .inner-box .title {
  color: #C9A227 !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.contact-section-five .contact-column .inner-column .inner-box .text,
.contact-section-five .contact-column .inner-column .inner-box .text a {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}
.contact-section-five .contact-column .inner-column .inner-box .text a:hover {
  color: #C9A227 !important;
}
.contact-section-five .contact-column .inner-column .social-icon-four {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- Mobile: contact-column full width, form pehle order fix ---- */
@media (max-width: 991.98px) {
  .contact-section-five {
    padding: 48px 0 48px;
  }
  .contact-section-five .outer-box {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    border-radius: 0;
  }
  .contact-section-five .outer-box .row {
    margin-left: -12px;
    margin-right: -12px;
    flex-direction: column;
  }
  .contact-section-five .outer-box .row > .content-column,
  .contact-section-five .outer-box .row > .contact-column {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .contact-section-five .content-column {
    order: 1;
  }
  .contact-section-five .contact-column {
    order: 2;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-top: 24px;
  }
  .contact-section-five .content-column .inner-column,
  .contact-section-five .contact-column .inner-column {
    padding: 28px 20px 32px;
  }
  .contact-section-five .content-column .inner-column .sec-title h2 {
    font-size: 24px !important;
  }
}
@media (max-width: 767.98px) {
  .contact-section-five {
    padding: 36px 0 36px;
  }
  .contact-section-five .outer-box .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .contact-section-five .outer-box .row > .content-column,
  .contact-section-five .outer-box .row > .contact-column {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .contact-section-five .contact-column {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-top: 20px;
  }
  .contact-section-five .content-column .inner-column,
  .contact-section-five .contact-column .inner-column {
    padding: 24px 16px 28px;
    border-radius: 12px;
  }
  .contact-section-five .content-column .inner-column {
    border-left-width: 3px;
  }
  .contact-section-five .contact-form-three .form-group .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .contact-section-five .contact-form-three .form-group .row [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact-section-five .contact-column .inner-column .inner-box .text,
  .contact-section-five .contact-column .inner-column .inner-box .text a {
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .contact-section-five {
    padding: 28px 0 28px;
  }
  .contact-section-five .outer-box .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .contact-section-five .outer-box .row > .content-column,
  .contact-section-five .outer-box .row > .contact-column {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .contact-section-five .contact-column {
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-top: 16px;
  }
  .contact-section-five .content-column .inner-column .sec-title h2 {
    font-size: 22px !important;
  }
  .contact-section-five .contact-form-three input:not([type=submit]),
  .contact-section-five .contact-form-three textarea {
    padding: 14px 16px;
    font-size: 16px;
  }
}

/* Add contact-section-five to global section padding list for consistency */
@media (max-width: 991.98px) {
  section.contact-section-five {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
@media (max-width: 767.98px) {
  section.contact-section-five {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
@media (max-width: 575.98px) {
  section.contact-section-five {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
}

/* About section heading "Welcome to Our Smart Digital Marketing Agency" - font size thik */
.about-section .sec-title h2 {
  font-size: 40px !important;
  line-height: 1.25 !important;
}
@media (max-width: 991.98px) {
  .about-section .sec-title h2 {
    font-size: 36px !important;
  }
}
@media (max-width: 767.98px) {
  .about-section .sec-title h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 575.98px) {
  .about-section .sec-title h2 {
    font-size: 24px !important;
  }
}

/* ============================================
   Responsive: section ke beech zyada space na ho - sabhi pages
   (banner-section exclude - uski alag padding hai)
   ============================================ */
@media (max-width: 991.98px) {
  section.about-section,
  section.client-section,
  section.funfact-section,
  section.benefit-section,
  section.contact-section,
  section.news-section,
  section.breadcume-section,
  section.blog-details-section,
  section.service-details-section,
  .sidebar-page .content-side,
  .call-to-action,
  section.marquee-section,
  section[class*="pull-down"] {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sec-title {
    margin-bottom: 20px !important;
  }
  .we-offer-area .our-offer-items.less-carousel .equal-height {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  section.about-section,
  section.client-section,
  section.funfact-section,
  section.benefit-section,
  section.contact-section,
  section.news-section,
  section.breadcume-section,
  section.blog-details-section,
  section.service-details-section,
  .sidebar-page .content-side,
  .call-to-action,
  section.marquee-section,
  section[class*="pull-down"] {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .sec-title {
    margin-bottom: 18px !important;
  }
  .we-offer-area .our-offer-items.less-carousel .equal-height {
    margin-bottom: 16px;
  }
}
@media (max-width: 575.98px) {
  section.about-section,
  section.client-section,
  section.funfact-section,
  section.benefit-section,
  section.contact-section,
  section.news-section,
  section.breadcume-section,
  section.blog-details-section,
  section.service-details-section,
  .sidebar-page .content-side,
  .call-to-action,
  section.marquee-section,
  section[class*="pull-down"] {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .sec-title {
    margin-bottom: 14px !important;
  }
  .recent-projects-section.mt-5.pt-5 {
    margin-top: 24px !important;
    padding-top: 24px !important;
  }
}

/* ============================================
   Mobile-only sticky bottom footer bar (max-width: 767px)
   Scroll pe smooth aata hai
   ============================================ */
.mobile-sticky-footer {
  display: none;
}

@media (max-width: 767px) {
  .mobile-sticky-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 8px 10px 10px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08), 0 -2px 0 rgba(201, 162, 39, 0.25);
    border-top: 3px solid var(--theme-color1);
    -webkit-tap-highlight-color: transparent;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    pointer-events: none;
  }
  .mobile-sticky-footer.mobile-sticky-footer-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sticky-footer-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 4px;
    max-width: 100%;
  }

  .mobile-sticky-footer-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px;
    color: #4b5563;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s ease;
    min-width: 0;
  }

  .mobile-sticky-footer-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.25s ease;
  }

  .mobile-sticky-footer-item:hover,
  .mobile-sticky-footer-item:focus,
  .mobile-sticky-footer-item:active {
    color: #111827;
    background-color: rgba(108, 67, 227, 0.06);
    transform: translateY(-1px);
  }

  /* Services – theme accent */
  .mobile-sticky-footer-item.mobile-sticky-footer-services .mobile-sticky-footer-icon {
    background: linear-gradient(135deg, rgba(108, 67, 227, 0.15) 0%, rgba(139, 92, 246, 0.12) 100%);
    color: #6c43e3;
  }

  .mobile-sticky-footer-item.mobile-sticky-footer-services:hover .mobile-sticky-footer-icon,
  .mobile-sticky-footer-item.mobile-sticky-footer-services.active .mobile-sticky-footer-icon {
    background: linear-gradient(135deg, #6c43e3 0%, #8b5cf6 100%);
    color: #fff;
  }

  /* Projects – gold/theme accent, folder icon */
  .mobile-sticky-footer-item.mobile-sticky-footer-projects {
    color: #8b6914;
  }

  .mobile-sticky-footer-item.mobile-sticky-footer-projects .mobile-sticky-footer-icon {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(184, 134, 11, 0.15) 100%);
    color: var(--theme-color1);
  }

  .mobile-sticky-footer-item.mobile-sticky-footer-projects:hover,
  .mobile-sticky-footer-item.mobile-sticky-footer-projects:focus,
  .mobile-sticky-footer-item.mobile-sticky-footer-projects:active {
    color: #6b5310;
    background-color: rgba(201, 162, 39, 0.12);
    transform: translateY(-1px);
  }

  .mobile-sticky-footer-item.mobile-sticky-footer-projects:hover .mobile-sticky-footer-icon,
  .mobile-sticky-footer-item.mobile-sticky-footer-projects.active .mobile-sticky-footer-icon {
    background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
  }

  .mobile-sticky-footer-item.mobile-sticky-footer-projects.active {
    color: var(--theme-color2);
    background-color: rgba(201, 162, 39, 0.12);
  }

  /* Get Quote – CTA highlight */
  .mobile-sticky-footer-item.mobile-sticky-footer-cta {
    flex: 1.15;
    color: #fff;
    background: linear-gradient(135deg, #6c43e3 0%, #8b5cf6 100%);
    box-shadow: 0 4px 20px rgba(108, 67, 227, 0.4);
  }

  .mobile-sticky-footer-item.mobile-sticky-footer-cta .mobile-sticky-footer-icon {
    font-size: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .mobile-sticky-footer-item.mobile-sticky-footer-cta:hover,
  .mobile-sticky-footer-item.mobile-sticky-footer-cta:focus,
  .mobile-sticky-footer-item.mobile-sticky-footer-cta:active {
    color: #fff;
    background: linear-gradient(135deg, #5b32d4 0%, #7c3aed 100%);
    box-shadow: 0 6px 24px rgba(108, 67, 227, 0.5);
    transform: translateY(-2px);
  }

  /* Active state: current page */
  .mobile-sticky-footer-item.active {
    color: #6c43e3;
    background-color: rgba(108, 67, 227, 0.1);
    font-weight: 600;
  }

  .mobile-sticky-footer-item.active .mobile-sticky-footer-icon {
    opacity: 1;
  }

  .mobile-sticky-footer-item.mobile-sticky-footer-cta.active {
    color: #fff;
    background: linear-gradient(135deg, #5b32d4 0%, #7c3aed 100%);
    box-shadow: 0 3px 16px rgba(108, 67, 227, 0.5);
  }

  .mobile-sticky-footer-icon {
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-sticky-footer-label {
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* Prevent page content from sitting under the sticky bar */
  .page-wrapper {
    padding-bottom: 62px;
  }
}

@media (min-width: 768px) {
  .page-wrapper {
    padding-bottom: 0;
  }
}

/* Blog sidebar – Recent Posts: choti image thumbnail */
.blog-details-section .blog-sidebar .blog-sidebar-area .blog-post .recent-post-wrap .recent-post .post-img {
  width: 70px;
  min-width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 8px;
}
.blog-details-section .blog-sidebar .blog-sidebar-area .blog-post .recent-post-wrap .recent-post .post-img a,
.blog-details-section .blog-sidebar .blog-sidebar-area .blog-post .recent-post-wrap .recent-post .post-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Blog posts section – clean card layout (news-section + news-section-two)
   ============================================ */

/* News section blocks – responsive layout */
@media (max-width: 1199.98px) {
  .news-section .blocks-column .inner-column {
    margin-right: 0 !important;
    padding-left: 0 !important;
  }
}

/* Blog cards – unified vertical layout: image top, content below, Read More andar */
.news-section .news-block .inner-box,
.news-section-two .news-block .inner-box {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Image – full width, fixed ratio */
.news-section .news-block .inner-box .image-box,
.news-section-two .news-block .inner-box .image-box {
  padding-left: 0 !important;
  flex-shrink: 0;
}
.news-section .news-block .inner-box .image-box .image,
.news-section-two .news-block .inner-box .image-box .image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.news-section .news-block .inner-box .image-box .image img,
.news-section-two .news-block .inner-box .image-box .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Date box – image ke andar position */
.news-section .news-block .inner-box .image-box .date-box,
.news-section-two .news-block .inner-box .image-box .date-box {
  bottom: 15px !important;
  right: 15px !important;
}

/* Content box – flexible, Read More niche */
.news-section .news-block .inner-box .content-box,
.news-section-two .news-block .inner-box .content-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px !important;
  padding-left: 24px !important;
  border-radius: 0 !important;
  margin-top: 0 !important;
  background: transparent !important;
  border: none !important;
}
.news-section .news-block .inner-box .content-box:before,
.news-section-two .news-block .inner-box .content-box:before {
  display: none !important;
}
.news-section .news-block .inner-box .content-box .content,
.news-section-two .news-block .inner-box .content-box .content {
  flex: 1;
  padding: 0 !important;
}
.news-section .news-block .inner-box .content-box .btn-box,
.news-section-two .news-block .inner-box .content-box .btn-box {
  margin-top: 16px;
  flex-shrink: 0;
}

/* Swiper slide height – homepage blog slider */
.news-section .news-swiper-two .swiper-slide {
  height: auto;
}

/* Blog details page – breadcrumb aur section ke beech gap kam */
.breadcume-section {
  padding-bottom: 24px !important;
}
.blog-details-section {
  padding-top: 48px !important;
  padding-bottom: 80px !important;
}
@media (max-width: 991.98px) {
  .blog-details-section {
    padding-top: 36px !important;
    padding-bottom: 60px !important;
  }
}
@media (max-width: 575.98px) {
  .breadcume-section {
    padding-bottom: 20px !important;
  }
  .blog-details-section {
    padding-top: 28px !important;
    padding-bottom: 48px !important;
  }
}

/* Blog details page – main featured image choti (badi na ho); gallery pe nahi */
.blog-details-section .contents-column .image-box:not(.mt-3) {
  max-width: 560px;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 12px;
}
.blog-details-section .contents-column .image-box:not(.mt-3) .image,
.blog-details-section .contents-column .image-box:not(.mt-3) .image img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767.98px) {
  .blog-details-section .contents-column .image-box:not(.mt-3) .image img {
    max-height: 280px;
  }
}
@media (max-width: 575.98px) {
  .blog-details-section .contents-column .image-box:not(.mt-3) {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .blog-details-section .contents-column .image-box:not(.mt-3) .image img {
    max-height: 220px;
  }
}

/* Blog details page – mobile title size thoda kam */
@media (max-width: 575.98px) {
  .blog-details-section .contents-column .blog-content .title {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }
}

/* ============================================
   Enquiry Side Panel – right side floating button + slide-in form
   ============================================ */
#enquiry-side-panel-wrap { position: relative; }

.enquiry-float-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 14px 24px;
  background: #dc3545 !important;
  color: #fff !important;
  border: none;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 4px 20px rgba(var(--theme-color1-rgb), 0.35);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  writing-mode: horizontal-tb;
}
.enquiry-float-btn:hover {
  color: #fff !important;
  padding-right: 28px;
  box-shadow: -6px 6px 28px rgba(var(--theme-color1-rgb), 0.45);
}
.enquiry-float-icon {
  font-size: 18px;
  opacity: 0.95;
}
.enquiry-float-text { letter-spacing: 0.3px; }

.enquiry-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
}
.enquiry-panel-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.enquiry-side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #fff !important;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.enquiry-side-panel.is-open {
  transform: translateX(0);
  box-shadow: -12px 0 50px rgba(0,0,0,0.18);
}

.enquiry-panel-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.enquiry-panel-header {
  padding: 28px 24px 20px;
  background: #ffbf2e!important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.enquiry-panel-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.enquiry-panel-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.enquiry-panel-close:hover {
  background: rgba(255,255,255,0.35);
  color: #fff;
}

.enquiry-panel-body {
  padding: 28px 24px 40px;
  flex: 1;
  background: #f9fafb !important;
}
.enquiry-panel-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.enquiry-side-form .enquiry-form-group {
  margin-bottom: 18px;
}
.enquiry-side-form label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--headings-color);
  margin-bottom: 6px;
}
.enquiry-side-form input,
.enquiry-side-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: #1a1a1a;
}
.enquiry-side-form input:focus,
.enquiry-side-form textarea:focus {
  outline: none;
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
.enquiry-side-form textarea {
  resize: vertical;
  min-height: 100px;
}

.enquiry-submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px 20px;
  background: #b7881f !important;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.enquiry-submit-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  color: #fff !important;
}
.enquiry-submit-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 479px) {
  .enquiry-side-panel { max-width: 100%; }
  .enquiry-float-text { display: none; }
  .enquiry-float-btn { padding: 14px 16px 14px 20px; }
}
