:root {
  --sd-green: #118b5b;
  --sd-green-dark: #096943;
  --sd-green-soft: #eaf7f1;
  --sd-gold: #d8a31a;
  --sd-ink: #26333d;
  --sd-muted: #68747d;
  --sd-bg: #f7f9f8;
  --sd-white: #fff;
  --sd-border: #e3e9e6;
  --sd-shadow: 0 12px 35px rgba(23, 55, 44, 0.08);
  --sd-radius: 16px;
  --sd-container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sd-ink);
  background: #fff;
  line-height: 1.7;
  font-size: 15px;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: var(--sd-container);
}
.topbar {
  background: #f1f6f3;
  border-bottom: 1px solid var(--sd-border);
  font-size: 13px;
  color: #52605a;
}
.topbar .inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.brandbar {
  background: #fff;
  border-bottom: 1px solid var(--sd-border);
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 0;
}
.brand-logo {
  width: 65px;
  object-fit: cover;

}
.brand-title {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--sd-green-dark);
  line-height: 1.2;
}
.brand-subtitle {
  font-size: 12px;
  color: var(--sd-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.navbar {
  padding: 0px 0px;
  background: #fff !important;
  border-bottom: 1px solid var(--sd-border);
}
.navbar .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #35433d !important;
  padding: 0.85rem 0.7rem !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--sd-green) !important;
}
.navbar-toggler {
  border-color: #d9e2de;
}
.btn-brand {
  background: var(--sd-green);
  border-color: var(--sd-green);
  color: #fff;
  font-weight: 700;
  border-radius: 9px;
  padding: 0.68rem 1.05rem;
}
.btn-brand:hover {
  background: var(--sd-green-dark);
  border-color: var(--sd-green-dark);
  color: #fff;
}
.btn-outline-brand {
  border: 1px solid var(--sd-green);
  color: var(--sd-green);
  font-weight: 700;
  border-radius: 9px;
  padding: 0.65rem 1.05rem;
}


.btn-outline-brand:hover {
  background: var(--sd-green);
  color: #fff;
}
.btn-gold {
  background: var(--sd-gold);
  border-color: var(--sd-gold);
  color: #19231f;
  font-weight: 600;
  border-radius: 9px;
  font-size: 15px;
      border: 1px solid goldenrod !important
}
.ticker {
  background: #0d7049;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  min-height: 42px;
}
.ticker-label {
  flex: 0 0 auto;
  background: #d8a31a;
  color: #1d2b24;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-right: 16px;
  border-radius: 5px;
}
.ticker-window {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: ticker 48s linear infinite;
  padding-left: 100%;
}
.ticker-item {
  font-size: 13px;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.hero {
  position: relative;
  background: linear-gradient(120deg, #073e2b, #118b5b);
  color: #fff;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(216, 163, 26, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(255, 255, 255, 0.07),
      transparent 24%
    );
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-pad {
  padding: 72px 0 68px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #dff5ea;
  margin-bottom: 14px;
}
.eyebrow:before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--sd-gold);
}
.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 760;
  margin: 0 0 18px;
  max-width: 760px;
}
.hero p {
  font-size: 17px;
  line-height: 1.65;
  color: #e1f1ea;
  max-width: 680px;
  margin: 0 0 26px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-card {
  background: #fff;
  color: var(--sd-ink);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding-bottom: 0px !Important;
}
.hero-card h2 {
  font-size: 20px;
  margin: 0 0 4px;
  font-weight: 750;
}
.hero-card .small {
  color: var(--sd-muted);
}
.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #d9e2de;
  padding: 0.72rem 0.8rem;
  font-size: 14px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--sd-green);
  box-shadow: 0 0 0 0.2rem rgba(17, 139, 91, 0.12);
}
.section {
  padding: 72px 0;
}
.section-sm {
  padding: 50px 0;
}
.section-muted {
  background: var(--sd-bg);
}
.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--sd-green);
  margin-bottom: 8px;
}
.section h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  font-weight: 750;
  color: #23302b;
}
.section-head p {
  color: var(--sd-muted);
  margin: 0;
}
.page-hero {
  background: #f0f6f3;
  border-bottom: 1px solid var(--sd-border);
  padding: 5px 0;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 26px);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: -0.03em;
 margin: 0 0 5px;
}
.page-hero p {
  max-width: 760px;
  color: var(--sd-muted);
  margin: 0;
}
.breadcrumb {
  font-size: 15px;
  margin: 0 0 0px;
}
.breadcrumb a {
  color: var(--sd-green);
}
.card-clean {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: var(--sd-radius);
  box-shadow: var(--sd-shadow);
  padding-bottom: 25px !important;
  height: 100%;
}
.card-clean .card-body {
  padding: 25px;
}
.card-clean h3 {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 730;
  margin-bottom: 9px;
}
.card-clean p {
  color: var(--sd-muted);
  margin-bottom: 0;
}
.course-card {
  position: relative;
  overflow: hidden;
}
.course-top {
  height: 6px;
  background: var(--sd-green);
}
.course-top.gold {
  background: var(--sd-gold);
}
.course-code {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sd-green);
}
.course-card h3 {
  font-size: 23px;
}
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.course-meta span {
  background: #f2f6f4;
  border: 1px solid #e2ebe6;
  border-radius: 99px;
  padding: 4px 9px;
  font-size: 12px;
  color: #50615a;
}
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--sd-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sd-green);
  font-weight: 800;
  flex: 0 0 auto;
}
.feature {
  display: flex;
  gap: 14px;
}
.feature h3 {
  margin: 0 0 4px;
  font-size: 17px;
}
.feature p {
  font-size: 14px;
}
.stats {
  border-top: 1px solid var(--sd-border);
  border-bottom: 1px solid var(--sd-border);
  background: #fff;
}
.stat {
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid var(--sd-border);
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  display: block;
  font-size: 29px;
  line-height: 1.1;
  color: var(--sd-green-dark);
}
.stat span {
  display: block;
  font-size: 12px;
  color: var(--sd-muted);
  margin-top: 5px;
}
.image-card {
  overflow: hidden;
  border-radius: var(--sd-radius);
  background: #fff;
  border: 1px solid var(--sd-border);
}
.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.image-card .body {
  padding: 18px;
}
.image-card h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.image-card p {
  font-size: 14px;
  color: var(--sd-muted);
  margin: 0;
}
.quote-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: var(--sd-radius);
  height: 100%;
}
.quote-mark {
  font-size: 42px;
  line-height: 1;
  color: var(--sd-gold);
  font-weight: 900;
}
.quote-card p {
    color: #53605b;
    height: 160px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #0B573B transparent;
}

/* Chrome, Edge, Safari */
.quote-card p::-webkit-scrollbar {
    width: 5px;
}

.quote-card p::-webkit-scrollbar-track {
    background: transparent;
}

.quote-card p::-webkit-scrollbar-thumb {
    background: #0B573B;
    border-radius: 10px;
}

.quote-card p::-webkit-scrollbar-thumb:hover {
    background: #08472f;
}
.quote-person {
  font-weight: 750;
  margin-top: 18px;
}
.quote-role {
  font-size: 13px;
  color: var(--sd-muted);
}
.faq .accordion-item {
  border: 1px solid var(--sd-border) !important;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq .accordion-button {
  font-weight: 700;
  font-size: 15px;
  padding: 17px 18px;
  box-shadow: none !important;
}
.faq .accordion-button:not(.collapsed) {
  background: var(--sd-green-soft);
  color: var(--sd-green-dark);
}
.faq .accordion-body {
  font-size: 14px;
  color: var(--sd-muted);
}
.page-ctas {
  background: #f0f6f3;
  border: 1px solid #dfeae5;
  border-radius: 14px;
  padding: 18px;
  margin-top: 36px;
}
.page-ctas .title {
  font-weight: 750;
  margin-bottom: 10px;
}
.page-ctas .btn {
  min-width: 150px;
}
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: #dce8e2;
}
.timeline-item {
  position: relative;
  margin-bottom: 25px;
}
.timeline-item:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sd-green);
  border: 3px solid #dff1e8;
}
.timeline-item h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.timeline-item p {
  color: var(--sd-muted);
  margin: 0;
}
.table-clean {
  border: 1px solid var(--sd-border);
  border-radius: 12px;
  overflow: hidden;
}
.table-clean table {
  margin: 0;
}
.table-clean th {
  background: #f0f6f3;
  font-size: 13px;
  color: #34463e;
}
.table-clean td {
  font-size: 14px;
  color: #53605b;
}
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.notice-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--sd-border);
}
.notice-list li:last-child {
  border-bottom: 0;
}
.notice-date {
  font-size: 12px;
  color: var(--sd-green);
  font-weight: 800;
  text-transform: uppercase;
}
.notice-list a {
  font-weight: 650;
}
.footer {
  background: #11251d;
  color: #d9e6e0;
  padding: 55px 0 25px;
}
.footer h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 14px;
}
.footer p,
.footer li {
  font-size: 14.5px;
  color: #b9c9c2;
}
.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer li {
  margin-bottom: 7px;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 12px;
  color: #8fa59b;
}
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.float-actions a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}
.float-wa {
  background: #18a965;
}
.float-call {
  background: #0d6efd;
}
.to-top {
  background: #26333d;
  display: none !important;
}
.to-top.show {
  display: flex !important;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  background: #fff;
  padding: 8px;
  z-index: 9999;
}
.badge-soft {
  display: inline-block;
  background: var(--sd-green-soft);
  color: var(--sd-green-dark);
  border-radius: 99px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 750;
}
.notice-box {
  background: #fff9e8;
  border: 1px solid #f1df9f;
  border-radius: 12px;
  padding: 18px;
}
.gallery-grid img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--sd-border);
}
.video-thumb {
  position: relative;
}
.video-thumb:after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--sd-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
@media (max-width: 991px) {
  .brand-title {
    font-size: 18px;
  }
  .hero-pad {
    padding: 40px 10px;
  }
  .stat {
    border-bottom: 1px solid var(--sd-border);
  }
}
@media (max-width: 767px) {
    .about-section-sm{
        padding-bottom:15px !important;
    }
    
    .admission-form{
            padding: 25px 25px !important;
    }
    .for-row-padding{
         padding: 8px;
       
    }
    
    .for-mobile-col{
        padding: 8px;
          margin-top: 0px;
    }
    
    .album-info h3 {
    font-size: 14px !important;
    margin: 0 0 0px !important;
}
    .album-info {
    padding: 8px 10px !important;
}
    .custom-for-padding{
        padding-top: 0px !important;
    }
    
    .page-id-357 .section-head {
            margin-bottom: 10px;
    }
    .navbar-brand{
                   font-size: 16px;
        padding: 10px 0;
    }
    .admission-form{
            padding: 20px 20px;
    }
    .page-hero h1{
        margin: 0 0 0px !important;
        font-size: 20px;    
    }
    .padd-sm-box{
          padding: 8px;
    }
    .box-sm-padding{
            padding: 8px;
    margin-top: 5px;
    }
  body {
    font-size: 14px;
  }
  .section {
    padding: 52px 0;
  }
  .section-sm {
    padding: 38px 0;
  }
  .page-hero {
    padding: 14px 0;
  }
  .brandbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  /*.brand-logo {*/
  /*  width: 48px;*/
  /*  height: 48px;*/
  /*}*/
  .brand-title {
    font-size: 16px;
  }
  .brand-subtitle {
    font-size: 10px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-card {
    margin-top: 0px !important;
  }
  .ticker-label {
    margin-right: 9px;
    padding: 6px 5px;
    font-size: 10px;
  }
  .ticker-track {
    gap: 30px;
  }
  .stat {
    border-right: 0;
  }
  .float-actions {
    right: 12px;
    bottom: 12px;
  }
}

/* =========================================================
   Extended components: CTA styles, team, albums, contact,
   application modal and reusable content blocks
   ========================================================= */

.section-alt {
  background: #f7faf8;
}

.admission-form{
        border: 1px solid #bcbcbc;
    padding: 40px 40px;
    padding-bottom: 25px;
    border-radius: 10px;
    background: #fff;
}

.frm_checkbox_127-0 label{
        line-height: 30px;
}

.section-narrow {
  max-width: 920px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sd-green);
  font-weight: 800;
  margin-bottom: 8px;
}
.section-head .section-label {
  margin-bottom: 8px;
}
.lead {
  font-size: 17px;
  line-height: 1.7;
  color: #59655f;
}
.text-green {
  color: var(--sd-green) !important;
}
.border-soft {
  border-color: var(--sd-border) !important;
}

.cta-choice {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: 0.2s ease;
  box-shadow: 0 8px 24px rgba(26, 53, 43, 0.05);
}
.cta-choice:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 53, 43, 0.09);
}
.cta-choice .cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sd-green-soft);
  color: var(--sd-green);
  font-size: 20px;
  margin-bottom: 16px;
}
.cta-choice h3 {
  font-size: 19px;
  margin-bottom: 7px;
}
.cta-choice p {
  font-size: 14px;
  color: var(--sd-muted);
  margin-bottom: 17px;
}

.cta-band {
  background: linear-gradient(110deg, #0d6f48, #16885b);
  color: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 14px 30px rgba(13, 111, 72, 0.15);
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 24px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.cta-band .btn-light {
  color: #116d4a;
  font-weight: 750;
}
.cta-band .btn-outline-light {
  font-weight: 650;
}

.cta-split {
  border: 1px solid var(--sd-border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: stretch;
}
.cta-split-main {
  padding: 28px;
  flex: 1;
}
.cta-split-main h2 {
  font-size: 24px;
  margin-bottom: 7px;
}
.cta-split-main p {
  color: var(--sd-muted);
  margin-bottom: 18px;
}
.cta-split-actions {
  width: 220px;
  background: #f2f7f4;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}
.cta-split-actions .btn {
  width: 100%;
}

.team-card {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: 0.2s ease;
  box-shadow: 0 8px 24px rgba(26, 53, 43, 0.05);
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 53, 43, 0.09);
}
.team-photo {
  aspect-ratio: 4/4.3;
  background: #eaf2ee;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-info {
  padding: 18px;
}
.team-info h3 {
  font-size: 18px;
  margin: 0 0 4px;
}
.team-designation {
  font-size: 13px;
  font-weight: 700;
  color: var(--sd-green);
  margin-bottom: 5px;
}
.team-dept {
  font-size: 13px;
  color: var(--sd-muted);
  margin: 0;
}

.album-card {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(26, 53, 43, 0.05);
  cursor: pointer;
  transition: 0.2s ease;
}
.album-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 53, 43, 0.09);
}
.album-cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.album-card:hover .album-cover img {
  transform: scale(1.04);
}
.album-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(17, 37, 29, 0.84);
  color: #fff;
  border-radius: 99px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 750;
}
.album-info {
  padding: 17px;
}
.album-info h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.album-info p {
  font-size: 13px;
  color: var(--sd-muted);
  margin: 0;
}

.gallery-modal .modal-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}
.gallery-modal .modal-header {
  border: 0;
  padding: 15px 18px;
}
.gallery-modal .modal-body {
  padding: 0 18px 18px;
}
.gallery-modal .carousel-item img {
  width: 100%;
  height: min(70vh, 650px);
  object-fit: contain;
  background: #111;
  border-radius: 12px;
}
.gallery-modal .carousel-caption {
  background: rgba(17, 37, 29, 0.78);
  border-radius: 8px;
  padding: 7px 10px;
  bottom: 10px;
}
.gallery-modal .carousel-control-prev,
.gallery-modal .carousel-control-next {
  width: 10%;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 16px;
  padding: 22px;
  height: 100%;
}
.contact-item {
  display: flex;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sd-border);
}
.contact-item:last-child {
  border-bottom: 0;
}
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--sd-green-soft);
  color: var(--sd-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.contact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.contact-item span,
.contact-item a {
  font-size: 14px;
  color: var(--sd-muted);
  text-decoration: none;
}
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sd-border);
  height: 100%;
  min-height: 430px;
  background: #edf3f0;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}

.info-strip {
  background: #11251d;
  color: #fff;
  border-radius: 16px;
  padding: 20px 22px;
}
.info-strip .small-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9fd2ba;
  font-weight: 800;
}
.info-strip h3 {
  color: #fff;
  font-size: 20px;
  margin: 5px 0;
}
.info-strip p {
  color: #c7d9d1;
  margin: 0;
  font-size: 14px;
}

.number-card {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}
.number-card .number {
  font-size: 12px;
  font-weight: 850;
  color: var(--sd-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.number-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.number-card p {
  font-size: 14px;
  color: var(--sd-muted);
  margin: 0;
}

.quote-highlight {
  border-left: 4px solid var(--sd-gold);
  background: #fff;
  border-top: 1px solid var(--sd-border);
  border-right: 1px solid var(--sd-border);
  border-bottom: 1px solid var(--sd-border);
  border-radius: 0 14px 14px 0;
  padding: 22px 24px;
}
.quote-highlight p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  color: #43524b;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-box {
  position: relative;
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 14px;
  padding: 20px;
}
.process-box .process-no {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sd-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}
.process-box h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.process-box p {
  font-size: 13px;
  color: var(--sd-muted);
  margin: 0;
}
@media (max-width: 991px) {
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-split {
    display: block;
  }
  .cta-split-actions {
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cta-split-actions .btn {
    width: auto;
    flex: 1;
  }
}
@media (max-width: 575px) {
 

    .number-card .number{
            margin-bottom: 5px;
    }
    .number-card{
        padding: 15px;
    }
    .number-card h3{
            font-size: 16px;
    }
    .team-info{
        padding: 14px;
    }
    .team-info h3{
            font-size: 16px;
    }
    .course-card h3 {
    font-size: 22px;
}
   .course-card  {
        padding-bottom: 0px !important;
    }
    .icon-box {
    width: 30px;
    height: 30px;
}
.feature{
    gap: 8px;
}
    .section h2{
        font-size: 24px !important;
    }
    .hero-card h2 {
    font-size: 24px !important;
}
    .none-mobile{
        display: none;
    }
    
    .topbar{
        display: none;
    }
    
  .process-row {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 22px;
  }
  .cta-band h2 {
    font-size: 21px;
  }
  .cta-split-main {
    padding: 22px;
  }
  .cta-split-actions {
    padding: 15px;
  }
  .cta-split-actions .btn {
    min-width: 100%;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }
}


.top-separator{
        margin: 0px 5px;
}


input[type="text"] {
     padding: 12px 12px !important;
}
input[type="email"] {
     padding: 12px 12px !important;
}


.top-links i{
    font-size: 15px;
}
.footer-bottom span{
    font-size: 14.5px;
}
.inwm-logo{
    width: 110px;
}
.declaration-section {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.declaration-section h3,
.declaration-section h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.declaration-section p {
    margin-bottom: 8px;
}
#frm_field_128_container{
    margin-bottom: 0px !Important;
}

#frm_field_128_container button{
    margin-bottom: 0px !important;
     background: var(--sd-green)!important;
    border-color: var(--sd-green) !important;
    color: #fff !important; 
    font-weight: 700 !important;
    border-radius: 9px !important;
    padding: .68rem 1.05rem !important;
}

#frm_field_14_container{
    margin-bottom: 0px !important;
}
#frm_field_14_container button{
        background: var(--sd-green)!important;
    border-color: var(--sd-green) !important;
    color: #fff !important; 
    font-weight: 700 !important;
    border-radius: 9px !important;
    padding: .68rem 1.05rem !important;
}

.button-cta a{
       min-width: 100px !Important;
    line-height: 25px !Important;
}

.cta-band a{
    min-width: 100px  !Important;
}

.testimonial-slider{
    padding-bottom: 40px !important;
}

.swiper-pagination-bullet-active{
    background: #096943 !important;
}

.hero-card h2{
        font-size: 28px;
}

.contact-card h2{
     font-size: 28px;
}

.contact-icon i
{
    color: var(--sd-green) !important;
}

#frm_field_23_container button{
        background: var(--sd-green) !important;
    border-color: var(--sd-green) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
    padding: .68rem 1.05rem !important;
}

#frm_field_23_container{
    margin-bottom:0px !important;
}


#frm_field_6_container .frm_button_submit {
        background: var(--sd-green) !important;
    border-color: var(--sd-green) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
    padding: .68rem 1.05rem !important;
}
#frm_field_6_container{
    margin-bottom:0px !important;
}
#field_zxkrc_label{
    padding-bottom: 0px !important;
}
#frm_field_59_container{
    display: flex;
    
}
#frm_field_56_container{
    display: flex;
    align-items: center;
        gap: 15px;
}

#frm_checkbox_127-0 label{
        line-height: 27px;
}

#frm_field_126_container{
    margin-bottom: 0px !Important;
}
#frm_field_126_container .frm_button_submit{
    background: var(--sd-green) !important;
    border-color: var(--sd-green) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
    padding: 15px 10px !important;
}

.label-custom{
    color: black !important;
    font-weight: 500 !important;
    
}
#frm_field_127_container {
        margin-top: 15px;
}

@media (max-width: 767px) {
    .album-count{
            right: 4px;
    bottom: 4px;
        font-size: 9px;
    }
       .cta-band a {
    min-width: 100% ! Important;
}

}

.contact-social {
    margin-top: 0px;
    padding-top: 24px;

}

.contact-social > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 700;
}

.contact-social .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-social .social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e8f6ef;
    color: #07965f;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-social .social-icons a:hover {
    background: #07965f;
    color: #ffffff;
    transform: translateY(-2px);
}


.nav-item .nav-link{
    text-transform: uppercase;
}

.section-head-custom{
    max-width: 1000px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand-logo {
    flex: 0 0 auto;
}

.footer-brand-logo img {
    display: block;
    width: 89px;
    height: auto;
    object-fit: contain;
}

.footer-brand-content {
    flex: 1;
    min-width: 0;
}

.footer-brand .brand-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}

.footer-brand .brand-subtitle {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.85;
}


@media (max-width: 992px){
    .navbar-toggler{
            padding: 4px 4px;
    }
    
        .brand-logo {
        width: 60px;
        height: auto;
    }
    .hero-pad .col-lg-5{
            margin-top: 30px;
    }
    
    #menu-primary-menu{
            border: 1px solid #dadada;
    }
    
    .nav-item .nav-link{
        text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .navbar {
        position: relative
    }
    .navbar-collapse {
        position: absolute;
    background: #fff;
    top: 45px;
    width: 94%;
    }
}