/* Pravin Vora & Associates - all rules scoped under a parent class */
:root {
  --navy: #0b2a55;
  --navy2: #123a73;
  --accent: #e8912d;
  --text: #333;
  --muted: #5d6675;
  --line: #e3e8f0;
  --soft: #f5f8fc
}

* {
  box-sizing: border-box
}

.site {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  font-size: 16px
}

.site img {
  max-width: 100%;
  display: block
}

.site a {
  color: inherit;
  text-decoration: none
}

.site ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.site h1,
.site h2,
.site h3,
.site h4 {
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 12px
}

.site p {
  margin: 0 0 14px;
  color: var(--muted)
}

.site :focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px
}

.site .container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px
}

.site .section {
  padding: 80px 0
}

.site .alt {
  background: var(--soft)
}

.site .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px
}

.site .section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600
}

.site .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

/* buttons */
.site .btn {
  display: inline-block;
  padding: 13px 25px;
  font-weight: 500;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .25s, color .25s, transform .25s
}

.contactpage .contact.section .contact-info {
    background-color: #f5f8fc;
    padding: 34px;
}
.contactpage .contact.section .container.two-col{
  align-items: flex-start;
}

.site .btn:hover {
  transform: translateY(-2px)
}

.site .btn-primary {
  background: var(--navy);
  color: #fff
}

.site .btn-primary:hover {
  background: var(--navy2)
}

.site .btn-accent {
  background: var(--accent);
  color: #fff
}

.site .btn-accent:hover {
  background: #d47f1f
}

.site .btn-outline {
  border-color: #fff;
  color: #fff
}

.site .btn-outline:hover {
  background: #fff;
  color: var(--navy)
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 12px rgba(11, 42, 85, .08)
}

.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px
}

.header .brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.header .brand img {
  height: 58px;
  width: auto
}

.header .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25
}

.header .brand-text strong {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700
}

.header .brand-text small {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase
}

.header .nav {
  display: flex;
  align-items: center;
  gap: 28px
}

.header .nav ul {
  display: flex;
  gap: 26px
}

.header .nav a:not(.btn) {
  font-weight: 500;
  font-size: .95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s
}

.header .nav a:not(.btn):hover,
.header .nav a.active {
  color: var(--navy);
  border-color: var(--accent)
}

.header .nav .nav-cta {
  padding: 10px 22px
}

.header .nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  position: relative
}

.header .nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease, top .35s ease
}

.header .nav-toggle span:nth-child(1) {
  top: 14px
}

.header .nav-toggle span:nth-child(2) {
  top: 21px
}

.header .nav-toggle span:nth-child(3) {
  top: 28px
}

.header .nav-toggle.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg)
}

.header .nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.header .nav-toggle.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg)
}

/* hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #164a8f 100%);
  color: #fff;
  padding: 110px 0 120px
}

.hero .hero-content {
  max-width: 760px
}

.hero .hero-tag {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 14px;
}

.hero .hero-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  animation: heroIn .9s ease both
}

.hero .rotator {
  display: inline-block;
  color: var(--accent);
  transition: opacity .4s, transform .4s
}

.hero .rotator.out {
  opacity: 0;
  transform: translateY(14px)
}

.hero .hero-desc {
 color: #e5e5e5;
    font-size: 1rem;
    max-width: 620px;
  animation: heroIn .9s .2s ease both
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  animation: heroIn .9s .4s ease both
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* about */
.about-home .about-img img,
.about-company .about-img img {
  width: 100%;
  border-radius: 10px
}

.about-home .about-text .btn {
  margin-top: 8px
}

/* services grid */
.services .service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.services .service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s
}

.services .service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  background: var(--accent);
  transition: width .3s
}

.services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(11, 42, 85, .12)
}

.services .service-card:hover::before {
  width: 100%
}

.services .service-icon,
.services-page .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--soft);
  font-size: 1.5rem;
  margin-bottom: 14px;
  transition: background .25s
}

.services .service-card:hover .service-icon {
  background: var(--navy)
}

.services .service-card h3 {
  font-size: 1.05rem
}

.services .service-card p {
  font-size: .9rem
}

.services .service-card a {
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem
}

.services .service-card a:hover {
  color: var(--accent)
}

/* why */
.why .why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px
}

.why .why-list h3 {
  font-size: 1rem;
  margin-bottom: 4px
}

.why .why-list p {
  font-size: .9rem;
  margin: 0
}

.why .why-panel {
  background: var(--navy);
  border-radius: 12px;
  padding: 44px 36px
}

.why .why-panel h3 {
  color: #fff;
  font-size: 1.4rem
}

.why .why-panel p {
  color: #d0dcf0;
  margin-bottom: 22px
}

/* industries */
.industries .industry-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.industries .industry-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: 6px;
  padding: 18px 20px;
  font-weight: 500;
  color: var(--navy);
  transition: border-color .2s, transform .2s
}

.industries .industry-list li:hover {
  border-left-color: var(--accent);
  transform: translateX(4px)
}

/* testimonials */
.testimonials .slider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden
}

.testimonials .slider-track {
  display: flex;
  transition: transform .6s ease
}

.testimonials .slide {
  flex: 0 0 100%;
  margin: 0;
  padding: 8px 24px;
  text-align: center
}

.testimonials .slide p {
  font-size: 1.15rem;
  color: var(--text);
  font-style: italic
}

.testimonials .slide footer strong {
  display: block;
  color: var(--navy)
}

.testimonials .slide footer span {
  font-size: .85rem;
  color: var(--muted)
}

.testimonials .slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px
}

.testimonials .slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #c6d0e0;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s
}

.testimonials .slider-dots button.on {
  background: var(--navy);
  width: 26px;
  border-radius: 6px
}

/* stats */
.stats {
  background: var(--navy);
  padding: 56px 0
}

.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center
}

.stats .stat strong {
  display: block;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700
}

.stats .stat span {
  color: #b9c9e4;
  font-size: .95rem
}

.banneraddpartmob {
  display: none;
}

/* cta */
.cta {
  background: var(--soft);
  padding: 56px 0;
  border-top: 1px solid var(--line)
}

.cta .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.cta .cta-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 4px
}

.cta .cta-inner p {
  margin: 0
}

.cta .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.cta .btn-outline {
  border-color: var(--navy);
  color: var(--navy)
}

.cta .btn-outline:hover {
  background: var(--navy);
  color: #fff
}

/* page banner */
.page-banner {
  background: var(--navy);
  height: 300px;
  display: flex;
  align-items: center;
  text-align: center
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px
}

.page-banner p {
  color: #c9d7ee;
  margin: 0 auto;
  max-width: 560px
}

/* about page */
.trust .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.trust .trust-item {
     background: #fff;
    padding: 26px 22px;
    border-top: 1px solid var(--navy);
}

.trust .trust-item h3 {
  font-size: 1.05rem
}

.trust .trust-item p {
  font-size: .9rem;
  margin: 0
}

.ceo .ceo-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  margin: 0 auto
}

.ceo .ceo-text blockquote {
  margin: 0 0 18px;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500
}

.ceo .ceo-name strong {
  display: block;
  color: var(--navy)
}

.team .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.team .team-card {
  background: #fff;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  padding-bottom: 20px
}

.team .team-card img {
  width: 100%;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  margin-bottom: 16px
}

.team .team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0
}

.team .team-card span {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 500
}

.team .team-card p {
  font-size: .88rem;
  padding: 6px 16px 0;
  margin: 0
}

/* services page */
.services-page .service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.services-page .service-row {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff
}

.services-page .service-row:last-child {
  grid-column: 1/-1
}

.services-page .service-icon {
  flex: 0 0 52px;
  margin: 0;
  background: var(--navy);
  color: #fff
}

.services-page .service-row h2 {
  font-size: 1.2rem
}

.services-page .service-row p {
  margin: 0
}

/* contact */
.contact .contact-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column
}

.contact .contact-info strong {
  color: var(--navy)
}

.contact .contact-info a:hover {
  color: var(--accent)
}

.contact .contact-form {
  background: var(--soft);
  padding: 34px;
  border-radius: 10px
}

.contact .contact-form label {
  display: block;
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: 14px
}

.contact .contact-form input,
.contact .contact-form select,
.contact .contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #cfd8e6;
  border-radius: 6px;
  font: inherit;
  background: #fff
}

.contact .contact-form input:focus,
.contact .contact-form select:focus,
.contact .contact-form textarea:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 42, 85, .12)
}

.contact .map {
  margin-top: 56px
}

.contact .map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px
}

/* footer */
.footer {
  background: #081f40;
  color: #b9c9e4;
  padding-top: 56px
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px
}

.footer h3,
.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}

.footer p {
  color: #b9c9e4;
  font-size: .9rem
}

.footer .footer-about img {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  margin-bottom: 14px
}

.footer li {
  margin-bottom: 8px;
  font-size: .9rem
}

.footer a:hover {
  color: var(--accent)
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  font-size: .85rem;
  text-align: center
}

/* whatsapp */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: waPulse 1.6s infinite
}
section.add-banner {
    padding: 0 0 70px;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .7)
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

/* responsive */
@media(max-width:1024px) {

  .services .service-grid,
  .industries .industry-list,
  .trust .trust-grid,
  .team .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:820px) {
  body .services-page .service-row {
    gap: 15px;
    padding: 15px;
}
.service-list .service-row .ibox {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}
.service-list .service-row .ibox .ic {
    width: 16px;
    height: 16px;
}







    .banneraddpartmob {
  display: block;
}
  .banneraddpartweb {
  display: none;
}
  .site .section {
    padding: 56px 0
  }

  .site .two-col {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .header .nav-toggle {
    display: block
  }

  .header .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
    box-shadow: 0 12px 20px rgba(11, 42, 85, .1)
  }

  .header .nav.open {
    max-height: 420px
  }

  .header .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px
  }

  .header .nav li a:not(.btn) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line)
  }

  .header .nav .nav-cta {
    margin: 8px 20px 20px;
    text-align: center
  }

  .hero {
    padding: 80px 0
  }

  .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-page .service-list {
    grid-template-columns: 1fr
  }

  .footer .footer-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  .hero .hero-desc {
    font-size: 14px;
}
.hero .hero-tag {
    font-size: 14px;
}


  .header .brand img {
    height: 46px
  }

  .header .brand-text strong {
    font-size: .95rem
  }

  .header .brand-text small {
    font-size: .62rem
  }

  .services .service-grid,
  .industries .industry-list,
  .trust .trust-grid,
  .team .team-grid,
  .why .why-list {
    grid-template-columns: 1fr
  }

  .cta .cta-inner {
    text-align: center;
    justify-content: center
  }

  .contact .contact-form {
    padding: 22px
  }
}

@media(prefers-reduced-motion:reduce) {
  .site * {
    animation: none !important;
    transition: none !important
  }
}

/* ===== v2 additions (all scoped under parent classes) ===== */
.site .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c47716;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px
}

.site .eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent)
}

.site .ic {
  width: 22px;
  height: 22px;
  flex: none
}

.site .ibox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 1.5px solid #3c7f9f;
    border-radius: 30px;
    color: #3c7f9f;
  transition: background .3s, color .3s, transform .3s
}

.site .ibox .ic {
  width: 26px;
  height: 26px
}

.site .sparks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none
}

/* buttons: splash sweep + lift */
.site .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, background .3s, color .3s
}

.site .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .85), transparent);
  transform: skewX(-20deg);
  z-index: -1;
  pointer-events: none
}

.site .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22)
}

.site .btn:hover::before {
  animation: splash .8s ease
}

.site .btn-outline:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff
}

@keyframes splash {
  to {
    left: 140%
  }
}

/* hero with image + gradient */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 750px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background: linear-gradient(100deg, rgba(8, 31, 64, .96) 0%, rgba(11, 42, 85, .88) 45%, rgba(11, 42, 85, .5) 100%), url(../images/banner.png) center/cover no-repeat
}

.hero .hero-inner,
.page-banner .container,
.stats .container,
.cta .cta-inner,
.footer .footer-grid,
.footer .footer-bottom {
  position: relative;
  z-index: 1
}

.page-banner {
  position: relative;
  overflow: hidden
}

/* about home */
.about-home .about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0 30px
}

.about-home .about-points div {
  border-top: 1px solid #ccd3df;
  padding-top: 14px
}

.about-home .about-points h3 {
  font-size: 1rem;
  letter-spacing: .04em;
  margin-bottom: 4px
}

.about-home .about-points span {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
  display: block
}

/* .about-home .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
} */

.about-home .about-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .5s
}

.about-home .about-grid img:hover {
  transform: scale(1.03)
}

/* services */
.services .service-grid {
  grid-template-columns: repeat(3, 1fr)
}

.services .service-card .ibox {
  margin-bottom: 18px
}

.services .service-card:hover .ibox,
.industries .industry-list li:hover .ibox,
.services-page .service-row:hover .ibox,
.trust .trust-item:hover .ibox,
.contact .contact-info li:hover .ibox {
      background: #146790;
  color: #fff
}

.services .service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.services .service-card a .ic {
  width: 16px;
  height: 16px;
  transition: transform .25s
}

.services .service-card a:hover .ic {
  transform: translateX(5px)
}

.services .service-help {
  grid-column: span 2;
     background: #323d4c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 36px
}

.services .service-help h3 {
  color: #fff;
  font-size: 1.5rem
}

.services .service-help p {
  color: #d0dcf0
}

.services .service-help .btn {
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
}

/* why choose us */
.why .why-head {
  max-width: 660px;
  margin-bottom: 40px
}

.why .why-wrap {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px
}

.why .why-feature {
     display: grid;
    grid-template-columns: .9fr .7fr;
}

.why .why-img {
  position: relative;
  min-height: 400px
}

.why .why-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.why .why-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #1c2634;
  color: #fff;
  padding: 12px 16px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  align-items: center
}

.why .why-badge b {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 500
}

.why .why-dark {
  background: #0a1220;
     padding: 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.why .why-dark h3 {
 color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.why .why-dark p {
  color: #aab6c9;
  font-size: .9rem;
     margin-bottom: 15px;
}

.why .why-rows {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column
}

.why .why-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding .25s
}

.why .why-row:last-child {
  border-bottom: 0
}

.why .why-row b {
  color: var(--accent);
  font-weight: 500;
  font-size: 1.2rem
}

.why .why-row div {
  flex: 1;
  display: flex;
  flex-direction: column
}

.why .why-row strong {
  color: var(--navy);
  font-weight: 500
}

.why .why-row span {
  font-size: .78rem;
  color: var(--muted)
}

.why .why-row .ic {
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform .25s
}

.why .why-row:hover {
  background: var(--soft);
  padding-left: 32px
}

.why .why-row:hover .ic {
  transform: translateX(5px)
}

/* industries */
.industries .industry-list {
  grid-template-columns: repeat(4, 1fr)
}

.industries .industry-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 45px;
  transition: transform .25s, box-shadow .25s
}

.industries .industry-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 42, 85, .1);
  border-left-color: var(--line)
}

.industries .ibox {
  width: 46px;
  height: 46px;
  flex-basis: 46px
}

.industries .ibox .ic {
  width: 22px;
  height: 22px
}

.industries .industry-list span {
  font-size: .92rem;
  line-height: 1.4
}

/* testimonials slider */
.testimonials .t-wrap {
  display: flex;
  align-items: center;
  gap: 14px
}

.testimonials .t-viewport {
  overflow: hidden;
  flex: 1
}

.testimonials .t-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.testimonials .t-card {
  flex: 0 0 33.333%;
  padding: 8px 10px
}

.testimonials .t-inner {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 6px 20px rgba(11, 42, 85, .06)
}

.testimonials .t-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px
}

.testimonials .t-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #7a8799;
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none
}

.testimonials .t-top strong {
  color: var(--navy);
  display: block;
  line-height: 1.3;
  font-weight: 500;
}

.testimonials .t-top small {
  color: var(--muted);
  font-size: .78rem
}

.testimonials .t-stars {
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 8px
}

.testimonials .t-inner p {
  font-size: .92rem;
  margin: 0
}

.testimonials .t-arrow {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s
}

.testimonials .t-arrow:hover {
  background: var(--navy);
  color: #fff
}

/* animated stats */
.stats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #081f40, #123a73);
  padding: 90px 0
}

.stats .section-title {
  color: #fff
}

.stats .stats-grid {
  gap: 26px
}

.stats .stat {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 34px 20px;
  transition: transform .3s, border-color .3s
}

.stats .stat:hover {
  transform: translateY(-6px);
  border-color: var(--accent)
}

.stats .ring {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 18px
}

.stats .ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg)
}

.stats .ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, .12);
  stroke-width: 7
}

.stats .ring-fg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 339.3
}

.stats .ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.stats .ring-num strong {
  display: inline;
  font-size: 2.3rem;
  line-height: 1;
  color: #fff
}

.stats .ring-num em {
  font-style: normal;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 600
}

.stats .stat h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px
}

.stats .stat p {
  color: #b9c9e4;
  font-size: .85rem;
  margin: 0
}

/* big cta */
.cta {
  position: relative;
  overflow: hidden;
  background: #eff0f1;
  padding: 120px 0;
  border: 0;
  text-align: center
}

.cta .cta-inner {
  display: block;
  max-width: 820px
}

.cta .cta-inner h2 {
      color: var(--navy);
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin-bottom: 16px;
    font-weight: 600;
}

.cta .cta-inner p {
color: #545454;
    font-size: 15px;
    margin-bottom: 32px;
}

.cta .cta-actions {
  justify-content: center
}

.cta .btn {
  padding: 16px 34px;
  font-size: 1rem
}

.cta .btn-outline {
  border-color: #fff;
  color: #fff
}

/* about / services / contact pages */
.trust .trust-item .ibox {
  margin-bottom: 14px
}

.services-page .service-list {
  gap: 26px
}

.services-page .service-row {
  gap: 22px;
  padding: 32px;
  align-items: flex-start;
      transition: transform .35s, box-shadow .35s, border-color .35s;
  
}

.services-page .service-row:hover {
    border-color: #22536c;
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(11, 42, 85, .14);
}

.services-page .service-row h2 {
  font-size: 1.25rem
}

.services-page .service-row ul {
  margin-top: 14px;
  display: grid;
  gap: 6px
}

.services-page .service-row li {
  position: relative;
  padding-left: 22px;
  font-size: .92rem
}

.services-page .service-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent)
}

.contact .contact-info li {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 14px 0
}

.contact .contact-info li div {
  display: flex;
  flex-direction: column
}

/* big footer */
.footer {
  position: relative;
  overflow: hidden;
     background: linear-gradient(180deg, #1c242e, #1c283c);
  padding-top: 90px
}

.footer .footer-grid {
  grid-template-columns: 1.4fr .8fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 60px
}

.footer .social {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.footer .social a {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .25s, border-color .25s, transform .25s
}

.footer .social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px)
}

.footer .social .ic {
  width: 18px;
  height: 18px
}

.footer .footer-contact li {
  display: flex;
  gap: 12px
}

.footer .footer-contact .ic {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 4px
}

.footer h4 {
        font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 400;
    border-bottom: 1px solid #4a5464;
    padding-bottom: 10px;
}

/* responsive v2 */
@media(max-width:1024px) {
  .industries .industry-list {
    grid-template-columns: repeat(3, 1fr)
  }

  .services .service-help {
    grid-column: span 1
  }

  .why .why-wrap {
    grid-template-columns: 1fr
  }

  .testimonials .t-card {
    flex-basis: 50%
  }

  .footer .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:820px) {
  .about-home .about-points {
    grid-template-columns: 1fr
  }

  .why .why-feature {
    grid-template-columns: 1fr
  }

 .testimonials .t-wrap {
    gap: 0;
}

.cta .cta-inner h2 {
    font-size: 23px;
}
  .cta {
    padding: 80px 0
  }

  .footer {
    padding-top: 60px
  }

  .footer .footer-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  .industries .industry-list {
    grid-template-columns: 1fr
  }

  .testimonials .t-card {
    flex-basis: 100%
  }

  .testimonials .t-arrow {
    flex-basis: 36px;
    height: 36px
  }

  .stats .stats-grid {
    grid-template-columns: 1fr
  }

  .services .service-help {
    padding: 26px
  }
}

/* ===== v3 ===== */
.stats {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--line)
}

.stats .section-title {
  color: var(--navy)
}

.stats .stat {
  background: none;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 20px;
  text-align: center
}

.stats .stat:first-child {
  border-left: 0
}

.stats .stat:hover {
  transform: none;
  border-color: var(--line)
}

.stats .stat-num {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px
}

.stats .stat-num strong {
     font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--navy);
}

.stats .stat-num em {
  font-style: normal;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent)
}

.stats .stat h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin: 6px 0 4px;
  font-weight: 500;
}

.stats .stat p {
  color: var(--muted);
  font-size: .85rem;
  margin: 0
}

.mission .mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.mission .mission-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s
}

.mission .mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(11, 42, 85, .1)
}

.mission .mission-card:hover .ibox {
  background: var(--navy);
  color: #fff
}

.mission .ibox {
  margin-bottom: 16px
}

.mission .mission-card p {
  margin: 0;
  font-size: .92rem
}

.team .team-card {
  position: relative;
  transition: transform .35s, box-shadow .35s, border-color .35s
}

.team .team-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--accent);
  transition: width .4s
}

.team .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(11, 42, 85, .14);

}

.team .team-card:hover::after {
  width: 100%
}

.team .team-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px
}

.team .team-photo img {
  margin-bottom: 0;
  transition: transform .6s
}

.team .team-card:hover .team-photo img {
  transform: scale(1.08)
}

.team .team-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px 14px 14px;
  background: linear-gradient(transparent, rgba(8, 31, 64, .9));
  transform: translateY(100%);
  opacity: 0;
  transition: transform .35s, opacity .35s
}

.team .team-card:hover .team-social,
.team .team-card:focus-within .team-social {
  transform: none;
  opacity: 1
}

.team .team-social a {
  width: 36px;
  height: 36px;
  border: 1.5px solid #fff;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s
}

.team .team-social a:hover {
  background: var(--accent);
  border-color: var(--accent)
}

.team .team-social .ic {
  width: 16px;
  height: 16px
}

@media(max-width:820px) {
  .services .service-grid {
    grid-template-columns: 1fr
  }

  .industries .industry-list {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust .trust-grid,
  .team .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mission .mission-grid {
    grid-template-columns: 1fr
  }

  .stats {
    padding: 56px 0
  }

  .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .stats .stat {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 12px
  }

  .stats .stat:first-child {
    border-left: 1px solid var(--line)
  }

  .stats .stat-num strong {
    font-size: 2.4rem
  }

  .testimonials .t-card {
    flex-basis: 100%
  }

  .hero {
    min-height: 520px;
    padding: 70px 0
  }

  .site .section-head {
    margin-bottom: 32px
  }

  .site .section {
    padding: 56px 0
  }
}

@media(max-width:560px) {

  .industries .industry-list,
  .trust .trust-grid,
  .team .team-grid {
    grid-template-columns: 1fr
  }

  .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats .stat-num strong {
    font-size: 2rem
  }

  .site .btn {
    padding: 12px 22px
  }

  .hero .hero-actions .btn {
    text-align: center
  }
}