:root {
  --primary: #0d376d;
  --primary-dark: #062653;
  --secondary: #53b51f;
  --secondary-dark: #3c9512;
  --light: #f5f8fc;
  --white: #ffffff;
  --text: #1b2738;
  --muted: #657184;
  --border: #e3e9f1;
  --shadow: 0 14px 40px rgba(13, 55, 109, 0.10);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

section,
article,
.quick-card,
.service-card,
.process-card,
.testimonial-card,
.contact-info-card,
.contact-form,
.partner-logo,
.why-card,
.counter-wrap {
  transition: all 0.4s ease;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 35px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.section-tag::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--secondary);
}

.section-tag.light {
  color: #a8ed7f;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--secondary);
}

.section-heading {
  max-width: 780px;
}

.section-heading p,
.section-lead {
  color: var(--muted);
  line-height: 1.8;
}

/* TOP BAR */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  padding: 9px 0;
  font-size: 0.88rem;
}

.topbar a {
  color: #fff;
  transition: 0.3s ease;
}

.topbar a:hover {
  color: #a8ed7f;
  transform: translateY(-2px);
}

.topbar-social a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
}

/* HEADER */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 18px rgba(7, 36, 78, 0.07);
  z-index: 1040;
}

.navbar {
  padding: 5px 0;
}

.navbar-brand img {
  width: 170px;
  height: 58px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 11px !important;
  position: relative;
  transition: 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 7px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-dark);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.dropdown-toggle::after {
  margin-left: 6px;
  position: static !important;
  transform: none !important;
  background: none !important;
  height: auto !important;
}

.dropdown-menu {
  min-width: 290px;
  border-radius: 14px;
  padding: 10px;
  margin-top: 10px !important;
  animation: dropdownFade 0.25s ease;
}

.dropdown-item {
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
}

.dropdown-item i {
  width: 24px;
  text-align: center;
  color: var(--secondary-dark);
}

.dropdown-item:hover {
  background: #eff8ea;
  color: var(--primary);
  transform: translateX(5px);
}

@keyframes dropdownFade {
  from {opacity: 0; transform: translateY(8px);}
  to {opacity: 1; transform: translateY(0);}
}

.btn-brand {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border: 0;
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 12px 20px;
  box-shadow: 0 9px 22px rgba(83, 181, 31, 0.25);
  transition: 0.35s ease;
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(83, 181, 31, 0.35);
}

/* HERO */
.hero-slide {
    min-height:500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,38,83,0.96) 0%, rgba(6,38,83,0.83) 42%, rgba(6,38,83,0.20) 75%, rgba(6,38,83,0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.min-vh-70 {
  min-height:500px;
}

.hero-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 9px 13px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-section h1,
.hero-section h2 {
  color: #fff;
  font-size: 60px !important;
  font-weight: 800;
  line-height: 1.06;
  font-size: clamp(2.7rem, 5vw, 5rem);
  margin-bottom: 20px;
}

.hero-section h1 span,
.hero-section h2 span {
  color: #83db50;
}

.hero-section p {
  color: #eaf1fb;
  font-size: 1.1rem;
  max-width: 650px;
  line-height: 1.8;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  color: #fff;
  font-weight: 700;
}

.hero-list li {
  margin: 10px 0;
}

.hero-list i {
  color: #83db50;
  margin-right: 8px;
}

.slider-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6,38,83,0.85);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

/* QUICK SERVICES */
.quick-services {
  background: #fff;
}

.quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(13,55,109,0.06);
  position: relative;
  overflow: hidden;
}

.quick-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: 0.4s ease;
}

.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.quick-card:hover::before {
  transform: scaleX(1);
}

.quick-icon,
.service-icon,
.process-icon {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

.quick-card h3 {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 800;
}

.quick-card p {
  color: var(--muted);
  font-size: 0.83rem;
  margin: 0;
}

/* ABOUT */
.about-section {
  background: var(--light);
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.02);
}

.experience-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  background: var(--primary);
  color: #fff;
  padding: 24px;
  border-radius: 18px;
  width: 150px;
  text-align: center;
  box-shadow: var(--shadow);
}

.experience-card strong {
  display: block;
  font-size: 2.2rem;
}

.experience-card span {
  font-size: 0.82rem;
}

.feature-item {
  font-weight: 700;
}

.feature-item i {
  color: var(--secondary);
  margin-right: 7px;
}

/* SERVICES */
.services-section {
  background: #fff;
}

.service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 17px;
  box-shadow: 0 10px 25px rgba(13,55,109,0.05);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(83,181,31,0.08);
  right: -35px;
  bottom: -35px;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(83,181,31,0.45);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  transform: scale(1.8);
}

.service-icon {
  min-width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #edf7e8;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--secondary-dark);
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* WHY + COUNTERS */
.why-section {
  background: var(--light);
}

.why-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card h2 {
  font-size: 2rem;
  font-weight: 800;
}

.why-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  position: relative;
  z-index: 2;
}

.why-card li {
  margin: 12px 0;
}

.why-card li i {
  color: #80df4d;
  margin-right: 8px;
}

.why-watermark {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 12rem;
  color: rgba(255,255,255,0.06);
}

.counter-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.counter-item {
  text-align: center;
  display: grid;
  place-content: center;
  min-height: 250px;
  border-right: 1px solid var(--border);
  padding: 20px;
}

.counter-item:last-child {
  border-right: 0;
}

.counter-item i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.counter-item strong,
.counter-item span {
  font-size: 2.3rem;
  color: var(--primary);
  font-weight: 800;
  display: inline;
}

.counter-item p {
  margin: 6px 0 0;
  font-weight: 700;
}

/* PROCESS */
.process-section {
  background: #fff;
}

.process-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 18px;
  text-align: center;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(13,55,109,0.05);
  position: relative;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(83,181,31,0.45);
}

.process-number {
  position: absolute;
  top: 12px;
  right: 15px;
  color: #dce6f1;
  font-size: 1.8rem;
  font-weight: 800;
}

.process-icon {
  width: 70px;
  height: 70px;
  border: 2px dashed #a8cf92;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--secondary-dark);
}

.process-card h3 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.process-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.88rem;
}

/* TESTIMONIAL + FAQ */
.light-section {
  background: var(--light);
}

.testimonial-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 38px;
  border-radius: 20px;
  min-height: 315px;
  box-shadow: var(--shadow);
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.quote-icon {
  color: #83db50;
  font-size: 2rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 18px 0;
}

.stars {
  color: #ffb51b;
  letter-spacing: 2px;
}

.testimonial-card h3 {
  margin: 18px 0 2px;
  font-size: 1.1rem;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.testimonial-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  transition: 0.3s ease;
}

.testimonial-controls button:hover {
  transform: scale(1.08);
  background: var(--primary);
}

.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(13,55,109,0.08);
}

.accordion-button {
  font-weight: 700;
  color: var(--primary);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: #eff8ea;
  box-shadow: none;
}

/* CONTACT */
.contact-section {
  background: #fff;
}

.contact-info-card,
.contact-form {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.contact-info-card:hover,
.contact-form:hover {
  transform: translateY(-5px);
}

.contact-info-card h3 {
  font-weight: 800;
}

.contact-info-card > p {
  color: #dbe5f2;
}

.contact-line {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #fff;
  margin-top: 20px;
}

.contact-line > span {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: #8ce45b;
}

.contact-line small,
.contact-line strong {
  display: block;
}

.contact-line small {
  color: #c8d5e6;
}

.contact-form .form-control,
.contact-form .form-select {
  min-height: 52px;
  border-radius: 10px;
  border-color: var(--border);
  transition: 0.3s ease;
}

.contact-form textarea.form-control {
  min-height: 135px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(83,181,31,0.12);
}

/* PARTNERS */
.partners-section {
  padding: 65px 0 70px;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 10px 45px;
}

.partner-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 90px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(13,55,109,0.05);
}

.partner-logo:hover {
  transform: translateY(-7px) scale(1.02);
  color: var(--secondary-dark);
  box-shadow: var(--shadow);
}

.partner-control {
  width: 38px;
  height: 38px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
}

/* FOOTER */
.footer {
  background: var(--primary-dark);
  color: #d8e2ef;
  padding: 65px 0 18px;
}

.footer-logo {
  width: 180px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin: 8px 0;
}

.footer a {
  color: #d8e2ef;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #8ce45b;
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
}

.footer-social a:hover {
  padding-left: 0;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 35px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 1050;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.16));
}

.whatsapp-message {
  background: #fff;
  border-radius: 16px 4px 4px 16px;
  padding: 12px 26px 12px 16px;
  margin-right: -10px;
  position: relative;
}

.whatsapp-message::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 12px;
  border-width: 9px 0 9px 13px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.whatsapp-message small,
.whatsapp-message strong {
  display: block;
}

.whatsapp-message small {
  color: var(--muted);
}

.whatsapp-message strong {
  color: var(--primary);
}

.whatsapp-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #20c95c;
  color: #fff;
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  font-size: 2rem;
  position: relative;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-icon b {
  position: absolute;
  top: -8px;
  right: -5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ef2e2e;
  color: #fff;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(32,201,92,0.45); }
  70% { box-shadow: 0 0 0 16px rgba(32,201,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(32,201,92,0); }
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (min-width: 992px) {
  .services-dropdown {
    position: relative;
  }

  .services-dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    margin-top: 0 !important;
    top: calc(100% - 2px);
  }

  .services-dropdown:hover > .dropdown-menu,
  .services-dropdown:focus-within > .dropdown-menu,
  .services-dropdown.show > .dropdown-menu,
  .services-dropdown > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .services-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }
}

@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    font-size: 0.84rem;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 18px;
    margin-top: 12px;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .hero-overlay {
    background: rgba(6,38,83,0.86);
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .counter-item {
    border-bottom: 1px solid var(--border);
  }

  .whatsapp-message {
    display: none;
  }
}

@media (max-width: 767px) {
  .topbar .container {
    justify-content: center !important;
    text-align: center;
  }

  .topbar-social {
    display: none !important;
  }

  .section-pad {
    padding: 65px 0;
  }

  .hero-slide,
  .min-vh-70 {
       min-height:420px;
  }

   .hero-section h1,
    .hero-section h2{
        font-size:38px !important;
    }

  .image-frame img {
    height: 350px;
  }

  .experience-card {
    right: 12px;
    bottom: 12px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 35px;
  }

  .partner-logo {
    min-height: 75px;
    font-size: 0.95rem;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 82px;
  }

  .whatsapp-icon {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .navbar-brand img {
    width: 145px;
  }

  .hero-section p {
    font-size: 0.98rem;
  }

  .quick-card {
    padding: 20px 10px;
  }

  .partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}


/* ===== Uploaded Logo Fix ===== */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 195px;
  height: 90px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.footer-logo {
  width: 190px;
  height: 85px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 8px;
  padding: 5px;
}

@media (max-width: 767px) {
  .navbar-brand img {
    width: 150px;
    height: 58px;
  }
}


/* ================= MOBILE MENU & COUNTER IMPROVEMENTS ================= */
.mobile-menu-close {
  display: none;
}

.counter-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin-bottom: 10px;
}

.counter-value strong,
.counter-value span {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--primary);
}

.counter-item {
  position: relative;
  overflow: hidden;
}

.counter-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 3px;
  border-radius: 30px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.counter-item:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf4 100%);
}

.counter-item:hover::before {
  transform: scaleX(1);
}

.counter-item:hover i {
  transform: translateY(-4px) scale(1.06);
  color: var(--secondary-dark);
}

.counter-item i {
  transition: 0.35s ease;
}

@media (max-width: 991px) {
  .main-header .navbar {
    padding: 10px 0;
  }

  .navbar-toggler {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #d9e1eb;
    box-shadow: none !important;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(83,181,31,0.12) !important;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100vh;
    margin: 0;
    padding: 78px 22px 28px;
    border-radius: 0;
    background: #fff;
    box-shadow: -18px 0 45px rgba(7,36,78,0.18);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1060;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    transform: translateX(0);
  }

  .navbar-collapse.collapsing {
    height: 100vh !important;
  }

  .navbar-collapse::before {
    content: "";
    position: fixed;
    inset: 0 100% 0 auto;
    width: 100vw;
    background: rgba(4,25,54,0.48);
    backdrop-filter: blur(2px);
    pointer-events: none;
  }

  .mobile-menu-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #eef4fa;
    color: var(--primary);
    font-size: 1.2rem;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 6px;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 13px 14px !important;
    border-radius: 11px;
    font-size: 0.98rem;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: #eff8ea;
    color: var(--secondary-dark);
  }

  .navbar-nav .nav-link i {
    width: 24px;
    text-align: center;
  }

  .services-dropdown .dropdown-menu {
    position: static !important;
    width: 100%;
    min-width: 0;
    margin: 4px 0 8px !important;
    padding: 8px;
    border: 1px solid var(--border) !important;
    box-shadow: none !important;
    background: #f8fbfe;
  }

  .services-dropdown .dropdown-item {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .main-header .btn-brand {
    width: 100%;
    margin: 14px 0 0 !important;
    text-align: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  .counter-wrap {
    border-radius: 18px;
  }

  .counter-item {
    min-height: 210px;
    padding: 24px 14px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .counter-item:nth-child(2n) {
    border-right: 0;
  }

  .counter-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .counter-item p {
    font-size: 0.95rem;
    line-height: 1.35;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .navbar-collapse {
    width: 92vw;
  }

  .counter-item {
    min-height: 175px;
    padding: 20px 10px;
  }

  .counter-item i {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }

  .counter-value strong,
  .counter-value span {
    font-size: 2.2rem;
  }

  .counter-item p {
    font-size: 0.86rem;
  }
}


/* ================= DROPDOWN ICON & COMPACT HERO FIX ================= */
.services-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.services-toggle::after {
  display: none !important;
}

.services-toggle .menu-label {
  display: inline-flex;
  align-items: center;
}

.dropdown-chevron {
  font-size: 0.78rem;
  transition: transform 0.3s ease;
  margin-left: 6px;
}

.services-dropdown.show > .services-toggle .dropdown-chevron,
.services-toggle[aria-expanded="true"] .dropdown-chevron {
  transform: rotate(180deg);
}

/* Reduced hero slider height */
.hero-slide,
.min-vh-70 {
  min-height: 540px;
}

@media (max-width: 991px) {
  .services-toggle {
    width: 100%;
  }

  .dropdown-chevron {
    display: inline-block !important;
    color: var(--primary);
    margin-left: auto;
  }

  .services-toggle:hover .dropdown-chevron,
  .services-toggle[aria-expanded="true"] .dropdown-chevron {
    color: var(--secondary-dark);
  }

  .hero-slide,
  .min-vh-70 {
    min-height: 500px;
  }

  .hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero-slide,
  .min-vh-70 {
    min-height:360px;
  }

  .hero-section h1,
  .hero-section h2 {
    font-size:30px !important;
        line-height:1.2;
  }

  .hero-section p {
    font-size:14px;
        line-height:1.6;
  }

  .hero-list {
    display:none;
  }

  .hero-list li {
    margin: 7px 0;
  }

  .hero-section .btn-lg {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-slide,
  .min-vh-70 {
    min-height: 420px;
  }

  .hero-kicker {
    font-size: 0.78rem;
    padding: 7px 10px;
    margin-bottom: 12px;
  }

  .hero-section h1,
  .hero-section h2 {
    font-size: 1.95rem;
  }
}

.experience-card{
    position:absolute;
    right:-20px;
    bottom:30px;
    width:170px;
    height:170px;
    background:linear-gradient(135deg,#0d376d,#174a92);
    border-radius:25px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 50px rgba(13,55,109,.25);
    overflow:hidden;
    transition:all .4s ease;
    animation:floatCard 4s ease-in-out infinite;
}

.experience-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-140px;
    right:-80px;
}

.experience-card::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border:2px solid rgba(255,255,255,.15);
    border-radius:50%;
    bottom:-60px;
    left:-40px;
}

.experience-card strong{
    font-size:58px;
    font-weight:800;
    line-height:1;
    color:#fff;
}

.experience-card span{
    font-size:18px;
    font-weight:600;
    text-align:center;
    line-height:1.5;
}

.experience-card:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 30px 60px rgba(13,55,109,.35);
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* ================= FIRST HERO SLIDE FIX =================
   Slide 1 has more content than slides 2 and 3, so only its
   typography and spacing are compacted. Other slides remain unchanged.
========================================================= */
.hero-slide-first .hero-content .row {
  min-height: 540px;
}

.hero-slide-first h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 4.4vw, 3.75rem) !important;
  line-height: 1.08;
  margin-bottom: 14px;
}

.hero-slide-first .hero-kicker {
  margin-bottom: 12px;
}

.hero-slide-first p {
  max-width: 610px;
  margin-bottom: 0;
}

.hero-slide-first .hero-list {
  margin: 16px 0 20px;
}

.hero-slide-first .hero-list li {
  margin: 7px 0;
}

@media (max-width: 991px) {
  .hero-slide-first .hero-content .row {
    min-height: 500px;
  }

  .hero-slide-first h1 {
    font-size: 2.55rem !important;
  }
}

@media (max-width: 767px) {
  .hero-slide-first,
  .hero-slide-first .hero-content .row {
    min-height: 360px;
  }

  .hero-slide-first h1 {
    font-size: 1.9rem !important;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-slide-first .hero-kicker {
    margin-bottom: 9px;
  }

  .hero-slide-first p {
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .hero-slide-first .hero-list {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-slide-first,
  .hero-slide-first .hero-content .row {
    min-height: 380px;
  }

  .hero-slide-first h1 {
    font-size: 1.75rem !important;
  }
}


/* ================= MOBILE CLOSE BUTTON FIX ================= */
@media (max-width: 991px) {
  .mobile-menu-close {
    z-index: 1105;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
  }
  .mobile-menu-close i { pointer-events: none; }
  #mainNavbar { z-index: 1100; }
}


/* ================= FINAL SMOOTH MOBILE DRAWER ================= */
@media (max-width: 991.98px) {
  #mainNavbar.navbar-collapse {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100dvh;
    margin: 0 !important;
    padding: 82px 24px 30px;
    border-radius: 0;
    background: #fff;
    box-shadow: -18px 0 45px rgba(7, 36, 78, 0.18);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    transition:
      transform 0.42s cubic-bezier(.22, .61, .36, 1),
      opacity 0.28s ease,
      visibility 0s linear 0.42s;
    will-change: transform, opacity;
    z-index: 1100;
  }

  #mainNavbar.navbar-collapse.mobile-menu-open {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
      transform 0.42s cubic-bezier(.22, .61, .36, 1),
      opacity 0.28s ease,
      visibility 0s linear 0s;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 25, 54, 0.48);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    z-index: 1090;
  }

  .mobile-menu-backdrop.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
  }

  .mobile-menu-close {
    display: grid !important;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #eef4fa;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1110;
    transition: transform 0.25s ease, background-color 0.25s ease;
  }

  .mobile-menu-close:hover {
    transform: rotate(90deg);
    background: #e5eef8;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (min-width: 992px) {
  #mainNavbar.navbar-collapse {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mobile-menu-backdrop {
    display: none !important;
  }
}


/* ================= REMOVE MOBILE MENU BLUR ================= */
@media (max-width: 991.98px) {
  /* Disable the older pseudo overlay that was blurring the drawer */
  #mainNavbar::before,
  .navbar-collapse::before {
    content: none !important;
    display: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Keep only a clean dark transparent overlay behind the menu */
  .mobile-menu-backdrop {
    background: rgba(4, 25, 54, 0.52) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
  }

  /* Keep the drawer itself perfectly sharp */
  #mainNavbar.navbar-collapse {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }

  #mainNavbar.navbar-collapse * {
    filter: none !important;
  }
}


/* ================= MOBILE MENU CLICK FIX ================= */
@media (max-width: 991.98px) {
  /* The backdrop was sitting above the menu because the header creates
     its own stacking context. Keep the backdrop below the sticky header. */
  .mobile-menu-backdrop {
    z-index: 1030 !important;
    pointer-events: auto !important;
  }

  .main-header {
    z-index: 1200 !important;
  }

  #mainNavbar.navbar-collapse {
    z-index: 1210 !important;
    pointer-events: auto !important;
  }

  #mainNavbar.navbar-collapse.mobile-menu-open {
    pointer-events: auto !important;
  }

  #mainNavbar.navbar-collapse a,
  #mainNavbar.navbar-collapse button,
  #mainNavbar.navbar-collapse .dropdown-menu {
    pointer-events: auto !important;
  }

  .mobile-menu-close {
    z-index: 1220 !important;
    pointer-events: auto !important;
  }
}

/*==============================
   Breadcrumb Section
==============================*/

.breadcrumb-section{
    background: linear-gradient(rgba(8,35,78,.85), rgba(15,112,33,.80)),
                url("images/breadcrumb-bg.jpg") center center/cover no-repeat;
    padding: 60px 0 90px;
    position:relative;
    overflow:hidden;
}

.breadcrumb-section::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-70px;
    right:-70px;
}

.breadcrumb-section::after{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-50px;
    left:-50px;
}

.breadcrumb-content{
    position:relative;
    z-index:2;
}

.breadcrumb-content h1{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.breadcrumb{
    background:transparent;
    margin:0;
    padding:0;
}

.breadcrumb-item{
    font-size:16px;
    font-weight:500;
}

.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-item a:hover{
    color:#66d13c;
}

.breadcrumb-item.active{
    color:#66d13c;
}

.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
    content:"/";
}

.breadcrumb i{
    margin-right:6px;
}

@media(max-width:991px){

    .breadcrumb-section{
        padding:90px 0 70px;
    }

    .breadcrumb-content h1{
        font-size:38px;
    }
}

@media(max-width:576px){

    .breadcrumb-section{
        padding:75px 0 55px;
    }

    .breadcrumb-content h1{
        font-size:30px;
    }

    .breadcrumb-item{
        font-size:14px;
    }
}

/*==========================
 Contact Info Section
==========================*/

.contact-info{
    background:#f8fbff;
}

.contact-box{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border-top:4px solid #49a010;
}

.contact-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.contact-box .icon{
    width:70px;
    height:70px;
    background:#49a010;
    color:#fff;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.contact-box h5{
    font-size:22px;
    font-weight:700;
    color:#0b2b63;
    margin-bottom:15px;
}

.contact-box p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:28px;
}

.contact-box a{
    color:#666;
    text-decoration:none;
    transition:.3s;
}

.contact-box a:hover{
    color:#49a010;
}

@media(max-width:768px){

    .contact-box{
        padding:30px 20px;
    }

    .contact-box h5{
        font-size:20px;
    }

}

/*=====================================
    ABOUT US SECTION
======================================*/


.about-section{
    background:#f8fbfc;
}

.about-tag{
    display:inline-block;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.about-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.about-title span{
    color:#53b51f;
}

.about-text{
    color:#555;
    line-height:1.9;
    font-size:16px;
}

.about-img{
    position:relative;
}

.about-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

.experience-box{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:22px 30px;
    border-radius:16px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
}

.experience-box h2{
    margin:0;
    font-size:36px;
    font-weight:700;
    color:#fff;
}

.experience-box p{
    margin:5px 0 0;
    color:#d9e6f8;
}

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    background:#fff;
    padding:18px;
    border-radius:16px;
    border:1px solid #e8edf3;
    transition:.35s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
    border-color:#53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.12);
}

.feature-box i{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0d376d;
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.feature-box:hover i{
    background:#53b51f;
}

.feature-box h6{
    color:#0d376d;
    font-weight:700;
    margin-bottom:6px;
}

.feature-box p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.7;
}

.btn-about{
    background:#53b51f;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    font-weight:600;
    transition:.3s;
}

.btn-about:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
    ABOUT US SECTION close
======================================*/

/*=====================================
      Income Tax Return Section
======================================*/

.itr-section{
    padding:90px 0;
    background:#f8fbfc;
}

/* Tag */

.itr-tag{
    display:inline-block;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

/* Heading */

.itr-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    margin-bottom:20px;
}

.itr-title span{
    color:#53b51f;
}

/* Description */

.itr-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* Feature Box */

.itr-feature{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:16px 18px;
    border-radius:12px;
    border:1px solid #e8edf3;
    transition:.3s;
}

.itr-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 15px 30px rgba(13,55,109,.08);
}

.itr-feature i{
    color:#53b51f;
    font-size:18px;
}

.itr-feature span{
    color:#0d376d;
    font-weight:600;
}

/* Image */

.itr-image{
    position:relative;
}

.itr-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/* Floating Card */

.itr-card{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 30px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    text-align:center;
}

.itr-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.itr-card h5{
    font-size:28px;
    margin-bottom:5px;
}

.itr-card p{
    margin:0;
    color:#d8e5f5;
}

/* Primary Button */

.btn-itr{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-itr:hover{
    background:#0d376d;
    color:#fff;
}

/* Outline Button */

.btn-outline-itr{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-itr:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
      Responsive
======================================*/

@media(max-width:991px){

.itr-title{
    font-size:34px;
}

.itr-card{
    position:relative;
    right:0;
    bottom:0;
    margin-top:20px;
}

}

@media(max-width:576px){

.itr-title{
    font-size:28px;
}

.btn-outline-itr{
    margin-left:0 !important;
    margin-top:15px;
    display:block;
}

}

/*=====================================
        GST Registration Section
======================================*/

.gst-section{
    padding:90px 0;
    background:#ffffff;
}

/* GST Tag */

.gst-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    font-weight:600;
    margin-bottom:18px;
}

/* Heading */

.gst-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    margin-bottom:20px;
    line-height:1.3;
}

.gst-title span{
    color:#53b51f;
}

/* Description */

.gst-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* Feature Box */

.gst-feature{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border:1px solid #e9eef5;
    border-radius:12px;
    padding:15px 18px;
    transition:.3s;
}

.gst-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.gst-feature i{
    color:#53b51f;
    font-size:18px;
}

.gst-feature span{
    color:#0d376d;
    font-weight:600;
}

/* Image */

.gst-image{
    position:relative;
}

.gst-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/* Floating Card */

.gst-card{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 25px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
}

.gst-card i{
    font-size:28px;
    color:#53b51f;
    margin-bottom:10px;
}

.gst-card h5{
    margin-bottom:5px;
    font-size:24px;
    font-weight:700;
}

.gst-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/* Button */

.btn-gst{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-gst:hover{
    background:#0d376d;
    color:#fff;
}

/* Outline Button */

.btn-outline-gst{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-gst:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media(max-width:991px){

    .gst-title{
        font-size:34px;
    }

    .gst-image img{
        height:450px;
    }

    .gst-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

}

@media(max-width:576px){

    .gst-title{
        font-size:28px;
    }

    .gst-image img{
        height:320px;
    }

    .btn-outline-gst{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}

/*=====================================
        PF & ESIC Compliance Section
======================================*/

.pf-section{
    padding:90px 0;
    background:#f8fbfc;
}

/*=====================================
        Section Tag
======================================*/

.pf-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.pf-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.pf-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.pf-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.pf-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    border-radius:12px;
    border:1px solid #e8edf3;
    background:#fff;
    transition:.3s;
}

.pf-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.pf-feature i{
    color:#53b51f;
    font-size:18px;
}

.pf-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.pf-image{
    position:relative;
}

.pf-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.pf-card{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    text-align:center;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
}

.pf-card i{
    font-size:28px;
    color:#53b51f;
    margin-bottom:10px;
}

.pf-card h5{
    margin-bottom:5px;
    font-size:28px;
    font-weight:700;
}

.pf-card p{
    margin:0;
    color:#dce7f5;
}

/*=====================================
        Buttons
======================================*/

.btn-pf{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-pf:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-pf{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-pf:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .pf-title{
        font-size:34px;
    }

    .pf-image img{
        height:450px;
    }

    .pf-card{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .pf-title{
        font-size:28px;
    }

    .pf-image img{
        height:320px;
    }

    .btn-outline-pf{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}
/*=====================================
        Company Registration Section
======================================*/

.company-section{
    padding:90px 0;
    background:#ffffff;
}

/*=====================================
        Section Tag
======================================*/

.company-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.company-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.company-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.company-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.company-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    border-radius:12px;
    border:1px solid #e8edf3;
    background:#fff;
    transition:.3s;
}

.company-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.company-feature i{
    color:#53b51f;
    font-size:18px;
}

.company-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.company-image{
    position:relative;
}

.company-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.company-card{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
}

.company-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.company-card h5{
    margin:0 0 5px;
    font-size:26px;
    font-weight:700;
}

.company-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/*=====================================
        Buttons
======================================*/

.btn-company{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-company:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-company{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-company:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .company-title{
        font-size:34px;
    }

    .company-image img{
        height:450px;
    }

    .company-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .company-title{
        font-size:28px;
    }

    .company-image img{
        height:320px;
    }

    .btn-outline-company{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}

/*=====================================
        ROC Compliance Section
======================================*/

.roc-section{
    padding:90px 0;
    background:#f8fbfc;
}

/*=====================================
        Section Tag
======================================*/

.roc-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.roc-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.roc-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.roc-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.roc-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:12px;
    transition:.3s;
}

.roc-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.roc-feature i{
    color:#53b51f;
    font-size:18px;
}

.roc-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.roc-image{
    position:relative;
}

.roc-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.roc-card{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
    text-align:center;
}

.roc-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.roc-card h5{
    margin-bottom:5px;
    font-size:26px;
    font-weight:700;
}

.roc-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/*=====================================
        Buttons
======================================*/

.btn-roc{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-roc:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-roc{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-roc:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .roc-title{
        font-size:34px;
    }

    .roc-image img{
        height:450px;
    }

    .roc-card{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .roc-title{
        font-size:28px;
    }

    .roc-image img{
        height:320px;
    }

    .btn-outline-roc{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}
/*=====================================
        Financial Planning Section
======================================*/

.financial-section{
    padding:90px 0;
    background:#ffffff;
}

/*=====================================
        Section Tag
======================================*/

.financial-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.financial-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.financial-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.financial-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.financial-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:12px;
    transition:.3s;
}

.financial-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.financial-feature i{
    color:#53b51f;
    font-size:18px;
}

.financial-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.financial-image{
    position:relative;
}

.financial-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.financial-card{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
    text-align:center;
}

.financial-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.financial-card h5{
    margin-bottom:5px;
    font-size:26px;
    font-weight:700;
}

.financial-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/*=====================================
        Buttons
======================================*/

.btn-financial{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-financial:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-financial{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-financial:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .financial-title{
        font-size:34px;
    }

    .financial-image img{
        height:450px;
    }

    .financial-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .financial-title{
        font-size:28px;
    }

    .financial-image img{
        height:320px;
    }

    .btn-outline-financial{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}

/*=====================================
        Accounting & Bookkeeping Section
======================================*/

.accounting-section{
    padding:90px 0;
    background:#f8fbfc;
}

/*=====================================
        Section Tag
======================================*/

.accounting-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.accounting-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.accounting-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.accounting-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.accounting-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:12px;
    transition:.3s;
}

.accounting-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.accounting-feature i{
    color:#53b51f;
    font-size:18px;
}

.accounting-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.accounting-image{
    position:relative;
}

.accounting-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.accounting-card{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
    text-align:center;
}

.accounting-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.accounting-card h5{
    margin-bottom:5px;
    font-size:26px;
    font-weight:700;
}

.accounting-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/*=====================================
        Buttons
======================================*/

.btn-accounting{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-accounting:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-accounting{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-accounting:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .accounting-title{
        font-size:34px;
    }

    .accounting-image img{
        height:450px;
    }

    .accounting-card{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .accounting-title{
        font-size:28px;
    }

    .accounting-image img{
        height:320px;
    }

    .btn-outline-accounting{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}

/*=====================================
        Audit & Assurance Section
======================================*/

.audit-section{
    padding:90px 0;
    background:#ffffff;
}

/*=====================================
        Section Tag
======================================*/

.audit-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.audit-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.audit-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.audit-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.audit-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:12px;
    transition:.3s;
}

.audit-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.audit-feature i{
    color:#53b51f;
    font-size:18px;
}

.audit-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.audit-image{
    position:relative;
}

.audit-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.audit-card{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
    text-align:center;
}

.audit-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.audit-card h5{
    margin:0 0 5px;
    font-size:26px;
    font-weight:700;
}

.audit-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/*=====================================
        Buttons
======================================*/

.btn-audit{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-audit:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-audit{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-audit:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .audit-title{
        font-size:34px;
    }

    .audit-image img{
        height:450px;
    }

    .audit-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .audit-title{
        font-size:28px;
    }

    .audit-image img{
        height:320px;
    }

    .btn-outline-audit{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}


/*=====================================
        Balance Sheet & Financial Statements Section
======================================*/

.balance-section{
    padding:90px 0;
    background:#f8fbfc;
}

/*=====================================
        Section Tag
======================================*/

.balance-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.balance-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.balance-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.balance-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.balance-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:12px;
    transition:.3s;
}

.balance-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.balance-feature i{
    color:#53b51f;
    font-size:18px;
}

.balance-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.balance-image{
    position:relative;
}

.balance-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.balance-card{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
    text-align:center;
}

.balance-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.balance-card h5{
    margin:0 0 5px;
    font-size:26px;
    font-weight:700;
}

.balance-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/*=====================================
        Buttons
======================================*/

.btn-balance{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-balance:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-balance{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-balance:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .balance-title{
        font-size:34px;
    }

    .balance-image img{
        height:450px;
    }

    .balance-card{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .balance-title{
        font-size:28px;
    }

    .balance-image img{
        height:320px;
    }

    .btn-outline-balance{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}

/*=====================================
        TDS Return Filing Section
======================================*/

.tds-section{
    padding:90px 0;
    background:#ffffff;
}

/*=====================================
        Section Tag
======================================*/

.tds-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.tds-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.tds-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.tds-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.tds-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:12px;
    transition:.3s;
}

.tds-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.tds-feature i{
    color:#53b51f;
    font-size:18px;
}

.tds-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.tds-image{
    position:relative;
}

.tds-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.tds-card{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
    text-align:center;
}

.tds-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.tds-card h5{
    margin:0 0 5px;
    font-size:26px;
    font-weight:700;
}

.tds-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/*=====================================
        Buttons
======================================*/

.btn-tds{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-tds:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-tds{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-tds:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .tds-title{
        font-size:34px;
    }

    .tds-image img{
        height:450px;
    }

    .tds-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .tds-title{
        font-size:28px;
    }

    .tds-image img{
        height:320px;
    }

    .btn-outline-tds{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}

/*=====================================
        PAN / TAN & Form 16 Section
======================================*/

.pan-section{
    padding:90px 0;
    background:#f8fbfc;
}

/*=====================================
        Section Tag
======================================*/

.pan-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(83,181,31,.12);
    color:#53b51f;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

/*=====================================
        Heading
======================================*/

.pan-title{
    font-size:42px;
    font-weight:700;
    color:#0d376d;
    line-height:1.3;
    margin-bottom:20px;
}

.pan-title span{
    color:#53b51f;
}

/*=====================================
        Description
======================================*/

.pan-desc{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        Feature Box
======================================*/

.pan-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:12px;
    transition:.3s;
}

.pan-feature:hover{
    transform:translateY(-5px);
    border-color:#53b51f;
    box-shadow:0 12px 30px rgba(13,55,109,.08);
}

.pan-feature i{
    color:#53b51f;
    font-size:18px;
}

.pan-feature span{
    color:#0d376d;
    font-weight:600;
}

/*=====================================
        Image
======================================*/

.pan-image{
    position:relative;
}

.pan-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(13,55,109,.15);
}

/*=====================================
        Floating Card
======================================*/

.pan-card{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#0d376d;
    color:#fff;
    padding:20px 28px;
    border-radius:15px;
    border-left:5px solid #53b51f;
    box-shadow:0 15px 35px rgba(13,55,109,.25);
    text-align:center;
}

.pan-card i{
    font-size:30px;
    color:#53b51f;
    margin-bottom:10px;
}

.pan-card h5{
    margin:0 0 5px;
    font-size:26px;
    font-weight:700;
}

.pan-card p{
    margin:0;
    color:#dce7f5;
    font-size:14px;
}

/*=====================================
        Buttons
======================================*/

.btn-pan{
    background:#53b51f;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-pan:hover{
    background:#0d376d;
    color:#fff;
}

.btn-outline-pan{
    border:2px solid #0d376d;
    color:#0d376d;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-pan:hover{
    background:#0d376d;
    color:#fff;
}

/*=====================================
        Responsive
======================================*/

@media (max-width:991px){

    .pan-title{
        font-size:34px;
    }

    .pan-image img{
        height:450px;
    }

    .pan-card{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
    }

}

@media (max-width:576px){

    .pan-title{
        font-size:28px;
    }

    .pan-image img{
        height:320px;
    }

    .btn-outline-pan{
        display:block;
        margin-left:0 !important;
        margin-top:15px;
    }

}



.process-section{
    background:#f8fafc;
}

.process-subtitle{
    display:inline-block;
    color: #5aaa23;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.process-title{
    font-size:38px;
    font-weight:700;
    color: #0e3166;
    margin-bottom:15px;
}

.process-desc{
    max-width:700px;
    margin:auto;
    color:#666;
}

.process-box{
    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}



/* FAQ Section */

.faq-section{
    background:#F8FAFC;
}

.faq-subtitle{
    color: #5aaa23;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.faq-title{
    color: #0e3166;
    font-size:38px;
    font-weight:700;
    margin-top:10px;
}

.faq-desc{
    color:#64748B;
}


.faq-accordion .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(15,23,42,.08);
}


.faq-accordion .accordion-button{
    background:#fff;
    color:#0F172A;
    font-size:18px;
    font-weight:600;
    padding:20px 25px;
}


.faq-accordion .accordion-button:not(.collapsed){
    background: #4cab1b;
    color:#fff;
    box-shadow:none;
}


.faq-accordion .accordion-button:focus{
    box-shadow:none;
}


.faq-accordion .accordion-body{
    background:#fff;
    color:#64748B;
    line-height:1.8;
    padding:20px 25px;
}


@media(max-width:576px){

    .faq-title{
        font-size:28px;
    }

    .faq-accordion .accordion-button{
        font-size:16px;
        padding:16px;
    }

}

.process-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.process-number{
    position:absolute;
    top:15px;
    right:18px;
    font-size:42px;
    font-weight:700;
    color:rgba(13,110,253,.08);
}

.process-icon{
    width:85px;
    height:85px;
    margin:0 auto 20px;
    border-radius:50%;
    background: #0e3166;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    transition:.4s;
}

.process-box:hover .process-icon{
    transform:rotateY(180deg);
}

.process-box h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    color:#222;
}

.process-box p{
    color:#666;
    line-height:1.7;
    margin-bottom:0;
}

@media(max-width:991px){
    .process-title{
        font-size:30px;
    }
}

@media(max-width:576px){
    .process-title{
        font-size:26px;
    }

    .process-box{
        padding:30px 20px;
    }

    .process-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }
}