/* ============================================
   TOKENS
   ============================================ */
:root {
  --ink: #10202B;
  --ink-soft: #24343E;
  --paper: #EEF0E8;
  --paper-raised: #F7F8F2;
  --slate: #57646C;
  --line: #D6D6C6;
  --line-strong: #B9BAA6;

  --emerald: #1F6F54;
  --emerald-dark: #17573F;
  --gold: #A9812E;
  --rust: #A44A36;

  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-card: 0 1px 2px rgba(16, 32, 43, 0.04), 0 12px 32px -16px rgba(16, 32, 43, 0.18);
}

/* ============================================
   RESET
   ============================================ */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input {
  font-family: inherit;
}

ul,
dl {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* subtle paper grain texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand-mark {
  color: var(--emerald);
  display: flex;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.brand-text em {
  font-style: normal;
  color: var(--emerald);
}

.header-tag {
  font-size: 0.82rem;
  color: var(--slate);
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  padding: 56px 0 40px;
  max-width: 640px;
}

.intro h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.intro p {
  margin-top: 14px;
  color: var(--slate);
  font-size: 1.03rem;
  max-width: 52ch;
}

/* ============================================
   CALCULATOR GRID
   ============================================ */
.calculator {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}

.panel {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.panel-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--slate);
  margin-bottom: 28px;
}

/* ---------- Fields ---------- */
.field+.field {
  margin-top: 30px;
}

.field-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.field-head label {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.unit-inline {
  color: var(--slate);
  font-weight: 400;
}

.field-value {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.currency {
  font-family: var(--font-mono);
  color: var(--slate);
  font-size: 0.95rem;
}

.value-input {
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  width: 8ch;
  text-align: right;
  padding: 2px 0;
}

#amount-input {
  width: 12ch;
  text-align: right;
}

#rate-input {
  width: 4.5ch;
  text-align: left;
}

#tenure-input {
  width: 5.5ch;
  text-align: left;
}

.value-input:focus {
  outline: none;
}

/* sliders */
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line-strong);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper-raised);
  border: 3px solid var(--emerald);
  box-shadow: 0 1px 4px rgba(16, 32, 43, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper-raised);
  border: 3px solid var(--emerald);
  box-shadow: 0 1px 4px rgba(16, 32, 43, 0.25);
  cursor: pointer;
}

.slider::-moz-range-track {
  height: 4px;
  background: var(--line-strong);
  border-radius: 999px;
}

.range-caps {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate);
  opacity: 0.8;
}

/* unit toggle (years/months) */
.unit-toggle {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-left: 4px;
}

.unit-btn {
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 5px 8px;
  color: var(--slate);
  transition: background 0.15s ease, color 0.15s ease;
}

.unit-btn.is-active {
  background: var(--emerald);
  color: #fff;
}

/* ============================================
   RESULTS PANEL — the seal
   ============================================ */
.results-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ink);
  color: var(--paper-raised);
  border-color: var(--ink);
}

.seal {
  padding: 8px 0 20px;
}

.seal-ring {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px dashed rgba(238, 240, 232, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-2deg);
  padding: 12px;
}

.seal-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(238, 240, 232, 0.18);
}

.seal-label {
  transform: rotate(2deg);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(238, 240, 232, 0.6);
  margin-bottom: 6px;
}

.seal-amount {
  transform: rotate(2deg);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.05rem);
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.seal-amount .currency {
  color: rgba(238, 240, 232, 0.55);
  font-size: 0.65em;
}

.seal-sub {
  transform: rotate(2deg);
  margin-top: 6px;
  font-size: 0.76rem;
  color: rgba(238, 240, 232, 0.55);
}

/* breakdown bar */
.breakdown {
  width: 100%;
  margin-top: 8px;
}

.breakdown-bar {
  display: flex;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(238, 240, 232, 0.12);
}

.bar-principal {
  background: #7FB9A0;
  width: 60%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-interest {
  background: #C98873;
  width: 40%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.breakdown-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  gap: 16px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-principal {
  background: #7FB9A0;
}

.dot-interest {
  background: #C98873;
}

.legend-text {
  color: rgba(238, 240, 232, 0.7);
}

.legend-figure {
  font-family: var(--font-mono);
  font-weight: 500;
  color: #fff;
  margin-left: 2px;
}

/* totals list */
.totals-list {
  width: 100%;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(238, 240, 232, 0.16);
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
}

.totals-row dt {
  font-size: 0.86rem;
  color: rgba(238, 240, 232, 0.7);
}

.totals-row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

.totals-row--faint dd {
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(238, 240, 232, 0.75);
}

/* ============================================
   AMORTIZATION
   ============================================ */
.amortization {
  margin-bottom: 48px;
}

.amort-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.chevron {
  transition: transform 0.25s ease;
  color: var(--slate);
}

.amort-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.amort-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.table-scroll {
  overflow-x: auto;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-raised);
}

.amort-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  min-width: 480px;
}

.amort-table th,
.amort-table td {
  text-align: right;
  padding: 12px 18px;
  white-space: nowrap;
}

.amort-table th:first-child,
.amort-table td:first-child {
  text-align: left;
}

.amort-table thead th {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  color: var(--slate);
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--font-body);
}

.amort-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--line);
}

.amort-table tbody tr:hover {
  background: rgba(31, 111, 84, 0.05);
}

/* ============================================
   DISCLAIMER + FOOTER
   ============================================ */
.disclaimer {
  font-size: 0.78rem;
  color: var(--slate);
  max-width: 68ch;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
}

.site-footer p {
  font-size: 0.78rem;
  color: var(--slate);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .calculator {
    grid-template-columns: 1fr;
  }

  .results-panel {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 18px;
  }

  .intro {
    padding: 40px 0 28px;
  }

  .panel {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .seal-ring {
    width: 180px;
    height: 180px;
  }

  .header-tag {
    display: none;
  }

  .amort-table {
    min-width: 420px;
  }

  .totals-row dd {
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .seal-ring {
    width: 160px;
    height: 160px;
  }

  .value-input {
    width: 7ch;
  }
}











.partners-section {

  padding: 100px 0;

  background: #ffffff;

  overflow: hidden;

}

.partner-slider {

  position: relative;

  overflow: hidden;

  margin-top: 40px;

}

.partner-track {

  display: flex;

  width: max-content;

  animation: partnerScroll 30s linear infinite;

}

.partner-slider:hover .partner-track {

  animation-play-state: paused;

}

.partner-logo {

  width: 220px;

  height: 120px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 15px;

  background: #fff;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

  transition: .4s;

  flex-shrink: 0;

}

.partner-logo:hover {

  transform: translateY(-8px);

  box-shadow: 0 15px 40px rgba(13, 110, 253, .15);

}

.partner-logo img {

  max-width: 140px;

  max-height: 60px;

  filter: grayscale(100%);

  transition: .4s;

}

.partner-logo:hover img {

  filter: grayscale(0%);

  transform: scale(1.08);

}

@keyframes partnerScroll {

  0% {

    transform: translateX(0);

  }

  100% {

    transform: translateX(-50%);

  }

}

/* Responsive */

@media(max-width:991px) {

  .partners-section {

    padding: 70px 0;

  }

  .partner-logo {

    width: 180px;

    height: 100px;

  }

  .partner-logo img {

    max-width: 110px;

  }

}

@media(max-width:576px) {

  .partner-logo {

    width: 150px;

    height: 85px;

    margin: 0 10px;

  }

  .partner-logo img {

    max-width: 90px;

    max-height: 45px;

  }

}



.main-footer {

  background: #081b39;

  color: #d5deea;

  padding: 170px 0 30px;

}

.footer-logo {

  max-width: 180px;

  margin-bottom: 25px;

}

.footer-about {

  line-height: 1.9;

  margin-bottom: 30px;

}

.main-footer h4 {

  color: #fff;

  font-size: 22px;

  margin-bottom: 25px;

  font-weight: 700;

}

.main-footer ul {

  padding: 0;

  margin: 0;

  list-style: none;

}

.main-footer ul li {

  margin-bottom: 15px;

}

.main-footer ul li a {

  color: #d5deea;

  text-decoration: none;

  transition: .3s;

}

.main-footer ul li a:hover {

  color: #fff;

  padding-left: 6px;

}




/* services */
.services-bar {
  padding: 20px 0px 30px 0px;
  background: url(../images/dott.jpg);
}

.services-bar h1 {
  font-weight: 600;
  font-size: 45px;
  text-align: center;
  margin-bottom: 0px;
}

.services-bar .card {
  box-shadow: 3px 5px 15px rgba(0, 0, 0, .15);
  border: none;
}

.services-bar .card h4.card-header {
  background-color: transparent;
  color: #1273eb;
  font-size: 20px;
  font-weight: 500;
  border: none;
  padding: 0px;
  margin: 0px 0px;
}

.services-bar .card .card-footer {
  background-color: #323232;
}

.card-img img {
  width: 100%;
}

.card-img {
  overflow: hidden;
  position: relative;
}

.portfolio-item .card:hover .card-img .card-img-top {
  transform: scale3D(1.2, 1.2, 2);
  opacity: .5;
}

.card-img-top {
  transition: all 500ms linear 0s;
}

.portfolio-main .card .card-body .card-title {
  margin-bottom: 0px;
}

.portfolio-main .card .card-body .card-title a {
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0;
}

.portfolio-main .card .card-body {
  position: absolute;
  background: #323232;
  padding: 0px 20px;
  height: 40px;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  display: flex;
  align-items: center;
  vertical-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.portfolio-main .card:hover .card-body {
  transform: scale(1);
  top: 80%;
}

.portfolio-item .card .card-body {
  box-shadow: 3px 5px 15px rgba(0, 0, 0, .15);
}

.portfolio-item .card .card-body h4 {
  margin-bottom: 12px;
}

.portfolio-item .card .card-body h4 a {
  color: #323232;
  text-decoration: none;
  font-size: 22px;
  text-transform: capitalize;
}

.portfolio-item .card .card-body p {
  margin-bottom: 0px;
}

.blog-entries .card .card-body h2.card-title {
  font-size: 22px;
  font-weight: 500;
}

.blog-right-side .card .card-body ul li {
  margin-bottom: 2px;
}

.blog-right-side .card .card-body ul li a {
  border-radius: 4.8px;
  padding: 6px;
  background: #323232;
  color: #ffffff;
  display: inline-block;
}

#accordionExample .accordion-single .card-body {
  padding: 10px 30px 10px 30px;
  margin-left: 40px;
  background: #fff;
  border-top: none;
  font-size: 15px;
  color: #6f6f6f;
  line-height: 28px;
  letter-spacing: 1px;
}

.calc:hover {
  background: #218838;
}

.calci {
  width: 100%;
  background: #F0F0F0;

  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.calci:hover {
  background: #FFF8DC;
}

.card-text {
  text-align: justify;
}

/* ===================================
   Insha Marketing Home About Section
===================================*/

.imhome-about-section {
  padding: 90px 20px;
  background: #f8fbff;
  overflow: hidden;
}

.imhome-about-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.imhome-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf4ff;
  color: #0d6efd;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.imhome-about-left h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 25px;
}

.imhome-about-left h2 span {
  color: #0d6efd;
}

.imhome-about-left p {
  color: #5b6473;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 18px;
}

.imhome-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.imhome-feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: .35s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.imhome-feature-box:hover {
  transform: translateY(-6px);
}

.imhome-feature-box i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d6efd;
  color: #fff;
  font-size: 22px;
}

.imhome-feature-box h5 {
  margin: 0;
  font-size: 18px;
  color: #1b1b1b;
}

.imhome-note-box {
  margin-top: 35px;
  background: #fff8e8;
  border-left: 5px solid #ffb400;
  padding: 20px;
  display: flex;
  gap: 15px;
  border-radius: 12px;
}

.imhome-note-box i {
  color: #ff9800;
  font-size: 24px;
  margin-top: 4px;
}

.imhome-note-box p {
  margin: 0;
  line-height: 1.8;
}

/* Right */

.imhome-about-right {
  position: relative;
}

.imhome-main-card {
  position: relative;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.imhome-about-image {
  width: 100%;
  display: block;
}

.imhome-exp-card {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0d6efd;
  color: #fff;
  padding: 18px 28px;
  border-radius: 18px;
  text-align: center;
  z-index: 2;
}

.imhome-exp-card h2 {
  margin: 0;
  font-size: 42px;
}

.imhome-exp-card span {
  font-size: 14px;
}

.imhome-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

.imhome-floating-card i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0d6efd;
  color: #fff;
  font-size: 22px;
}

.imhome-floating-card h4 {
  margin: 0;
  color: #0d6efd;
  font-size: 22px;
}

.imhome-floating-card p {
  margin: 2px 0 0;
  color: #666;
}

.imhome-card-one {
  left: -30px;
  bottom: 70px;
}

.imhome-card-two {
  right: -30px;
  top: 90px;
}

/* Responsive */

@media(max-width:992px) {

  .imhome-about-container {
    grid-template-columns: 1fr;
  }

  .imhome-about-left {
    order: 2;
  }

  .imhome-about-right {
    order: 1;
  }

  .imhome-about-left h2 {
    font-size: 34px;
  }

  .imhome-card-one {
    left: 10px;
    bottom: 20px;
  }

  .imhome-card-two {
    right: 10px;
    top: 20px;
  }

}

@media(max-width:768px) {

  .imhome-about-section {
    padding: 70px 18px;
  }

  .imhome-about-left h2 {
    font-size: 30px;
  }

  .imhome-feature-grid {
    grid-template-columns: 1fr;
  }

  .imhome-floating-card {
    position: relative;
    margin-top: 20px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .imhome-exp-card {
    padding: 14px 20px;
  }

  .imhome-exp-card h2 {
    font-size: 32px;
  }

}

@media(max-width:480px) {

  .imhome-about-left h2 {
    font-size: 26px;
  }

  .imhome-about-left p {
    font-size: 15px;
  }

  .imhome-feature-box {
    padding: 18px;
  }

  .imhome-note-box {
    flex-direction: column;
  }

}



/* contact us */
/*====================================
    Insha Marketing Contact Section
====================================*/

.imcontact-section {
  padding: 90px 20px;
  background: #f7fbff;
}

.imcontact-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.imcontact-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eaf4ff;
  color: #0d6efd;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.imcontact-left h2 {
  font-size: 42px;
  color: #132238;
  margin-bottom: 20px;
}

.imcontact-left>p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 17px;
}

.imcontact-card {
  background: #fff;
  border-radius: 18px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: .35s;
}

.imcontact-card:hover {
  transform: translateY(-6px);
}

.imcontact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.imcontact-card h4 {
  margin-bottom: 8px;
  color: #132238;
}

.imcontact-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

.imcontact-card span {
  color: #0d6efd;
  font-weight: 600;
}

.imcontact-card a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.imcontact-card a:hover {
  text-decoration: underline;
}

.imcontact-right {
  height: 100%;
}

.imcontact-right iframe {
  width: 100%;
  min-height: 650px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

/* Tablet */

@media(max-width:992px) {

  .imcontact-container {
    grid-template-columns: 1fr;
  }

  .imcontact-left h2 {
    font-size: 34px;
  }

  .imcontact-right iframe {
    min-height: 500px;
  }

}

/* Mobile */

@media(max-width:768px) {

  .imcontact-section {
    padding: 70px 18px;
  }

  .imcontact-left h2 {
    font-size: 30px;
  }

  .imcontact-card {
    padding: 18px;
  }

  .imcontact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .imcontact-right iframe {
    min-height: 350px;
  }

}

@media(max-width:480px) {

  .imcontact-left h2 {
    font-size: 26px;
  }

  .imcontact-left>p {
    font-size: 15px;
  }

  .imcontact-card {
    flex-direction: column;
  }

  .imcontact-icon {
    margin-bottom: 5px;
  }

}


/* advantage section */
/*==================================
      Insha Advantages Section
==================================*/

.imadv-section {
  padding: 90px 20px;
  background: #ffffff;
}

.imadv-container {
  max-width: 1200px;
  margin: auto;
}

.imadv-heading {
  text-align: center;
  margin-bottom: 60px;
}

.imadv-tag {
  display: inline-block;
  background: #eaf4ff;
  color: #0d6efd;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.imadv-heading h2 {
  font-size: 42px;
  color: #132238;
  margin-bottom: 15px;
}

.imadv-heading p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.imadv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.imadv-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: .35s;
  border: 1px solid #eef2f7;
}

.imadv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13, 110, 253, .15);
}

.imadv-icon {
  width: 75px;
  height: 75px;
  margin: auto;
  margin-bottom: 20px;
  background: #eaf4ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
}

.imadv-card h4 {
  font-size: 20px;
  color: #132238;
  line-height: 1.5;
  margin: 0;
}

/* Tablet */

@media(max-width:992px) {

  .imadv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .imadv-heading h2 {
    font-size: 34px;
  }

}

/* Mobile */

@media(max-width:768px) {

  .imadv-section {
    padding: 70px 18px;
  }

  .imadv-grid {
    grid-template-columns: 1fr;
  }

  .imadv-heading h2 {
    font-size: 30px;
  }

  .imadv-card {
    padding: 30px 20px;
  }

  .imadv-icon {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }

}

@media(max-width:480px) {

  .imadv-heading h2 {
    font-size: 26px;
  }

  .imadv-heading p {
    font-size: 15px;
  }

  .imadv-card h4 {
    font-size: 18px;
  }

}