/* ============================================
   SARVOTAM LEASE – CUSTOM CSS
   Extends rosano theme with page-specific styles
   ============================================ */

/* ─── CSS Variables ─── */
:root {
  --primary: #182978;
  --accent: #ff7a00;
  --dark-primary: #060E33;
  --dark-accent: #cc6200;
  --section-bg: #f5f5f5;
  --text-dark: #333;
  --text-muted: #666;
}

/* ─── Utility ─── */
.theme-bg2 { background-color: var(--primary) !important; }
.grey-bg    { background-color: var(--section-bg) !important; }
.white-bg   { background-color: #ffffff; }
.border-rad { border-radius: 8px; }
.p-35       { padding: 35px; }
.mt-2      { margin-top: 10px !important; }
.mt-15      { margin-top: 15px !important; }
.mt-3      { margin-top: 20px !important; }
.mb-45      { margin-bottom: 45px !important; }
.mb-50      { margin-bottom: 50px !important; }
.mb-70      { margin-bottom: 70px !important; }
.mb-95      { margin-bottom: 95px !important; }
.pt-70      { padding-top: 70px; }
.pt-80      { padding-top: 80px; }
.pt-100     { padding-top: 100px; }
.pt-120     { padding-top: 120px; }
.pt-125     { padding-top: 125px; }
.pt-140     { padding-top: 140px; }
.pb-20      { padding-bottom: 20px; }
.pb-25      { padding-bottom: 25px; }
.pb-30      { padding-bottom: 30px; }
.pb-60      { padding-bottom: 60px; }
.pb-70      { padding-bottom: 70px; }
.pb-80      { padding-bottom: 80px; }
.pb-100     { padding-bottom: 100px; }
.pb-120     { padding-bottom: 120px; }
.pb-190     { padding-bottom: 190px; }
.pt-lg-60   { }
.pb-lg-15   { }
.pt-lg-100  { }
.pb-lg-65   { }
.pe-xxl-5   { }
.ms-xxl-5   { }
.ps-xxl-3   { }
.ps-xxl-5   { }
.me-xxl-5   { }
.mb-md-30   { }
.text-dark  { color: var(--text-dark) !important; }
.fw-600     { font-weight: 600 !important; }
.fw-700     { font-weight: 700 !important; }
.p-50       { padding: 50px; }
.mr-15      { margin-right: 15px; }
.mt-25      { margin-top: 25px; }
.p-25       { padding: 25px; }
.p-30       { padding: 30px; }
.z-1        { z-index: 1; }
.z-2        { z-index: 2; }

@media (min-width: 992px) {
  .pt-lg-60  { padding-top: 60px; }
  .pb-lg-15  { padding-bottom: 15px; }
  .pb-lg-20  { padding-bottom: 20px; }
  .pb-lg-40  { padding-bottom: 40px; }
  .pb-lg-60  { padding-bottom: 60px; }
  .pt-lg-100 { padding-top: 100px; }
  .pt-lg-30  { padding-top: 30px; }
  .pb-lg-65  { padding-bottom: 65px; }
  .pb-lg-10  { padding-bottom: 10px; }
  .pb-lg-90  { padding-bottom: 90px; }
  .pb-lg-50  { padding-bottom: 50px; }
}
@media (min-width: 1400px) {
  .pe-xxl-5 { padding-right: 3rem !important; }
  .ms-xxl-5 { margin-left: 3rem !important; }
  .ps-xxl-3 { padding-left: 1.5rem !important; }
  .ps-xxl-5 { padding-left: 3rem !important; }
  .me-xxl-5 { margin-right: 3rem !important; }
  .pe-xxl-5 { padding-right: 3rem !important; }
}
@media (max-width: 767px) {
  .mb-md-30 { margin-bottom: 30px !important; }
}

/* ─── ht-btn (primary button) ─── */
.ht-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--primary);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.ht-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}
.ht-btn.bs-style,
.ht-btn.bs-btn {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}
.ht-btn.bs-style:hover,
.ht-btn.bs-btn:hover {
  background-color: var(--dark-accent);
  border-color: var(--dark-accent);
}
.ht-btn.btn-three {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary) !important;
}
.ht-btn.btn-three:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.ht-btn.style-2 {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary) !important;
}
.ht-btn.style-2:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}
.submit-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  background-color: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s;
}
.submit-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* ─── title-one ─── */
.title-one .title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 15px;
}
.title-one .description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}
.title-one p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── Hero Banner (theme-banner-five) ─── */
.theme-banner-five {
  background: linear-gradient(135deg, var(--dark-primary) 0%, var(--primary) 100%);
  padding: 80px 0 0 0;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.theme-banner-five .main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
}
.theme-banner-five .hero-description {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 36px;
}
.theme-banner-five .hero-img {
  position: relative;
  padding-top: 30px;
}
.theme-banner-five .hero-img .main-img {
  border-radius: 8px 8px 0 0;
  max-height: 500px;
  object-fit: cover;
}
.theme-banner-five .card-shape-2 {
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 180px;
}

/* ─── fun-fact-section ─── */
.fun-fact-section {
  position: relative;
  overflow: hidden;
}
.fun-fact-section .shape-1 {
  opacity: 0.08;
  height: 200px;
}
.fun-fact-section .shape-2 {
  opacity: 0.08;
  height: 200px;
}

/* ─── counter-wrap-1 ─── */
.counter-wrap-1 {
  text-align: center;
  padding: 20px 10px;
}
.counter-wrap-1 .number {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.counter-wrap-1 .counter-title {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ─── counter-wrap-4 ─── */
.counter-wrap-4 {
  padding: 15px 0;
}
.counter-wrap-4 .counter-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.counter-wrap-4 .counter-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 10px;
}
.counter-wrap-4 .number {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-wrap-4 .description {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ─── service-wrap-6 ─── */
.service-wrap-6 {
  background: #fff;
  padding: 30px 25px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
  margin-bottom: 2px;
}
.service-wrap-6:hover {
  box-shadow: 0 6px 30px rgba(24,41,120,0.1);
  transform: translateY(-2px);
}
.service-wrap-6 .icon {
  width: 70px;
  min-width: 70px;
  height: 70px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  margin-bottom: 15px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.service-wrap-6:hover .icon { background: var(--primary); }
.service-wrap-6 .icon .front-icon { width: 34px; height: 34px; transition: opacity 0.3s; }
.service-wrap-6 .icon .back-icon  { width: 34px; height: 34px; position: absolute; opacity: 0; transition: opacity 0.3s; }
.service-wrap-6:hover .icon .front-icon { opacity: 0; }
.service-wrap-6:hover .icon .back-icon  { opacity: 1; }
.service-wrap-6 .content .service-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-wrap-6 .content .service-title a { color: inherit; text-decoration: none; }
.service-wrap-6 .content .description { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.service-wrap-6 .content .more-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.service-wrap-6 .content .more-btn:hover { color: var(--accent); }
.service-wrap-6 .content .more-btn img { width: 14px; }

/* ─── service-wrap-4 ─── */
.service-wrap-4 {
  background: #fff;
  padding: 28px;
  transition: all 0.3s;
  border: 1px solid #eee;
}
.service-wrap-4:hover { box-shadow: 0 8px 32px rgba(24,41,120,0.1); border-color: var(--accent); }
.service-wrap-4 .icon {
  width: 64px;
  min-width: 64px;
  height: 64px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  margin-bottom: 15px;
  flex-shrink: 0;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-wrap-4:hover .icon { background: var(--primary); }
.service-wrap-4 .icon .front-icon { width: 32px; height: 32px; transition: opacity 0.3s; }
.service-wrap-4 .icon .back-icon  { width: 32px; height: 32px; position: absolute; opacity: 0; transition: opacity 0.3s; }
.service-wrap-4:hover .icon .front-icon { opacity: 0; }
.service-wrap-4:hover .icon .back-icon  { opacity: 1; }
.service-wrap-4 .content .service-title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-wrap-4 .content .description { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.service-wrap-4 .content ul { padding-left: 18px; font-size: 14px; color: var(--text-muted); }
.service-wrap-4 .content .more-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-wrap-4 .content .more-btn:hover { color: var(--accent); }

/* ─── service-wrap-5 ─── */
.service-wrap-5 {
  background: #fff;
  padding: 30px 24px;
  margin-bottom: 24px;
  border: 1px solid #eee;
  transition: all 0.3s;
  position: relative;
}
.service-wrap-5:hover { box-shadow: 0 6px 28px rgba(24,41,120,0.1); border-color: var(--primary); }
.service-wrap-5 .icon {
  width: 60px;
  height: 60px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-wrap-5:hover .icon { background: var(--primary); }
.service-wrap-5 .icon .front-icon { width: 28px; transition: opacity 0.3s; }
.service-wrap-5 .icon .back-icon  { width: 28px; position: absolute; opacity: 0; transition: opacity 0.3s; }
.service-wrap-5:hover .icon .front-icon { opacity: 0; }
.service-wrap-5:hover .icon .back-icon  { opacity: 1; }
.service-wrap-5 .service-title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-wrap-5 .service-title a { color: inherit; text-decoration: none; }
.service-wrap-5 .description { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.service-wrap-5 .arrow-btn { display: inline-block; }
.service-wrap-5 .arrow-btn img { width: 16px; }

/* ─── feature-wrap-1 ─── */
.feature-wrap-1 {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #f0f0f0;
}
.feature-wrap-1:last-child { border-bottom: none; }
.feature-wrap-1 .icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.feature-wrap-1:hover .icon { background: var(--primary); }
.feature-wrap-1 .icon .front-icon { width: 28px; transition: opacity 0.3s; }
.feature-wrap-1 .icon .back-icon  { width: 28px; position: absolute; opacity: 0; transition: opacity 0.3s; }
.feature-wrap-1:hover .icon .front-icon { opacity: 0; }
.feature-wrap-1:hover .icon .back-icon  { opacity: 1; }
.feature-wrap-1 .content .feature-title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.feature-wrap-1 .content .description { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ─── feature-wrap-7 (How to Apply steps) ─── */
.feature-wrap-7 {
  text-align: center;
  padding: 20px;
  position: relative;
}
.feature-wrap-7 .icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-wrap-7 .icon .front-icon { width: 40px; }
.feature-wrap-7 .feature-title { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.feature-wrap-7 .feature-title a { color: inherit; text-decoration: none; }
.feature-wrap-7 .description { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.feature-wrap-7 .arrow-shape1,
.feature-wrap-7 .arrow-shape2 {
  position: absolute;
  top: 32px;
  width: 50px;
}
.feature-wrap-7 .arrow-shape1 { left: -20px; }
.feature-wrap-7 .arrow-shape2 { right: -20px; }

/* ─── feature-list-two ─── */
.feature-list-two {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}
.feature-list-two .number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  min-width: 40px;
}
.feature-list-two .feature-title {
  font-weight: 600;
  color: var(--primary);
}

/* ─── team-wrap-3 ─── */
.team-wrap-3 {
  text-align: center;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s;
  overflow: hidden;
}
.team-wrap-3:hover { box-shadow: 0 8px 30px rgba(24,41,120,0.12); transform: translateY(-4px); }
.team-wrap-3 .team-thumb { position: relative; overflow: hidden; }
.team-wrap-3 .team-thumb img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-wrap-3 .team-social {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 0.3s;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
}
.team-wrap-3:hover .team-social { bottom: 15px; }
.team-wrap-3 .team-social a { color: #fff; font-size: 15px; }
.team-wrap-3 .content { padding: 18px; }
.team-wrap-3 .content .name { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-wrap-3 .content .name a { color: inherit; text-decoration: none; }
.team-wrap-3 .content .designation { font-size: 13px; color: var(--accent); font-weight: 600; margin: 0; }

/* ─── feedback-wrap-6 ─── */
.feedback-wrap-6 {
  background: #fff;
  padding: 30px;
  border: 1px solid #f0f0f0;
  position: relative;
}
.feedback-wrap-6 .feedback-text {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.feedback-wrap-6 .author-info { display: flex; align-items: center; gap: 14px; }
.feedback-wrap-6 .author-avatar img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.feedback-wrap-6 .author-content .name { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.feedback-wrap-6 .author-content .designation { font-size: 12px; color: var(--accent); margin: 0; }
.feedback-wrap-6 .quote-icon { position: absolute; top: 20px; right: 20px; opacity: 0.15; }
.feedback-wrap-6 .quote-icon img { width: 36px; }

/* ─── feedback-wrap-4 ─── */
.feedback-wrap-4 {
  background: #fff;
  padding: 24px;
  margin-right: 20px;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.3s;
}
.feedback-wrap-4:hover { box-shadow: 0 6px 24px rgba(24,41,120,0.1); }
.feedback-wrap-4 .content .flag-box img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.feedback-wrap-4 .content .quote img { width: 28px; opacity: 0.2; }
.feedback-wrap-4 .feedback-text { font-size: 14px; color: #555; line-height: 1.75; margin: 16px 0; font-style: italic; }
.feedback-wrap-4 .author-content .name { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.feedback-wrap-4 .author-content .designation { font-size: 12px; color: var(--text-muted); margin: 0; }
.feedback-wrap-4 .rating a { color: var(--accent); font-size: 12px; }

/* ─── about-section ─── */
.about-section { background: #fff; }
.img-wrapper-seven { position: relative; }
.img-wrapper-seven .main-img { width: 100%; border-radius: 8px; }
.img-wrapper-seven .main-img2 {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 45%;
  border-radius: 8px;
  border: 6px solid #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ─── Page Title / Breadcrumb ─── */
.page-title-area { position: relative; }
.breadcrumb-wrapper {
  padding: 80px 0 60px;
  background: var(--primary);
  background-size: cover;
  background-position: center;
  position: relative;
}
.breadcrumb-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,14,51,0.75);
}
.breadcrumb-content { position: relative; z-index: 1; }
.breadcrumb-content .breadcrumb-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.breadcumb-menu {
  list-style: none;
  display: inline-flex;
  gap: 0;
  padding: 0;
  margin: 0;
}
.breadcumb-menu li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.breadcumb-menu li + li::before {
  content: ' / ';
  color: var(--accent);
  margin: 0 6px;
}
.breadcumb-menu li a { color: #fff; text-decoration: none; }
.breadcumb-menu li a:hover { color: var(--accent); }

/* ─── service-detail ─── */
.service-detail-content img.img-fluid { border-radius: 6px; }
.service-detail-content h2 { color: var(--primary); font-size: 28px; font-weight: 700; }
.service-detail-content h4 { color: var(--primary); font-size: 18px; font-weight: 700; }
.service-detail-content ul { padding-left: 0; list-style: none; }
.service-detail-content ul li { padding: 4px 0; font-size: 15px; color: #444; }

/* ─── service sidebar ─── */
.service-sidebar {}
.sidebar-widget {}

/* ─── contact section ─── */
.contact-bg-one { background: #fff; }
.contact-form-wrapper-2 { padding: 40px 35px; }
.contact-img-box { height: 100%; }
.contact-img-box img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; border-radius: 4px; }
.contact-form .input-wrapper { margin-bottom: 18px; }
.contact-form .input-wrapper input,
.contact-form .input-wrapper select,
.contact-form .input-wrapper textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #dde;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
}
.contact-form .input-wrapper input:focus,
.contact-form .input-wrapper select:focus,
.contact-form .input-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form .input-wrapper.message textarea { min-height: 120px; resize: vertical; }
.contact-form .submit-btn,
button.submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form .submit-btn:hover { background: var(--accent); }

/* ─── faq-section / accordion ─── */
.faq-section {}
.faq-que-list.faq-style-5 .accordion-button {
  background: #f8f9ff;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 20px;
}
.faq-que-list.faq-style-5 .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}
.faq-que-list.faq-style-5 .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}
.faq-que-list.faq-style-5 .accordion-body {
  padding: 18px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}
.faq-que-list.faq-style-5 .accordion-item {
  border: 1px solid #e8e8e8;
  margin-bottom: 8px;
}

/* ─── CTA section ─── */
.cta-section { }
.theme-bg { background-color: #f0f4ff; }

/* ─── portfolio-section bg ─── */
.portfolio-section-bg {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  z-index: -1;
}

/* ─── Testimonials pagination ─── */
.number-wrapper { display: flex; align-items: center; gap: 12px; }
.number-pagination { font-size: 28px; font-weight: 700; color: var(--primary); }
.total-pagination { font-size: 28px; font-weight: 700; color: var(--text-muted); }
.divider-line { width: 40px; height: 2px; background: var(--accent); }

/* ─── Feedback slider arrows ─── */
.arrow-style-2 button {
  background: none;
  border: 1.5px solid var(--primary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.arrow-style-2 button:hover { background: var(--primary); }
.arrow-style-2 button:hover img { filter: invert(1); }

/* ─── How We Works section ─── */
.how-we-works-section { }

/* ─── Footer enhanced ─── */
.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  margin-right: 6px;
  font-size: 14px;
  transition: background 0.3s;
  text-decoration: none;
}
.footer-social-icons a:hover { background: var(--accent); }

/* ─── VMV tabs (about page) ─── */
#vmvTabs .nav-link:not(.active) {
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  background: transparent !important;
}
#vmvTabs .nav-link.active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

/* ─── Balance Sheet ─── */
.rounded-3 { border-radius: 0.5rem; }

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .theme-banner-five { padding: 60px 0 0; min-height: auto; }
  .theme-banner-five .hero-img { display: none !important; }
  .theme-banner-five .main-title { font-size: 30px; }
  .counter-wrap-1 { margin-bottom: 20px; }
  .about-section { padding-top: 60px !important; padding-bottom: 40px !important; }
  .img-wrapper-seven .main-img2 { display: none !important; }
  .feature-wrap-7 .arrow-shape1,
  .feature-wrap-7 .arrow-shape2 { display: none; }
  .service-wrap-6 { flex-direction: column !important; }
  .service-wrap-6 .icon { margin-right: 0; }
  .service-wrap-4 { flex-direction: column !important; }
  .service-wrap-4 .icon { margin-right: 0; }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper { padding: 60px 0 40px; }
  .breadcrumb-content .breadcrumb-title { font-size: 26px; }
  .contact-form-wrapper-2 { padding: 24px 20px; }
  .team-wrap-3 .team-thumb img { height: 240px; }
  .feature-wrap-1 { flex-direction: column; gap: 10px; }
}
