:root {
  --navy: #062653;
  --navy-deep: #031f46;
  --cyan: #36c4cb;
  --cyan-2: #6edce2;
  --soft: #f7fbfd;
  --text: #0c2a57;
  --muted: #62758e;
  --shadow: 0 18px 45px rgba(3, 31, 70, .10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden
}

a {
  transition: .25s ease
}

.site-header {
  z-index: 1040;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.brand-logo {
  width: 200px;
  object-fit: cover;
  border-radius: 10px
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: .85;
  font-size: 1.1rem;
  color: var(--navy)
}

.brand-name em {
  font-style: normal;
  color: var(--cyan)
}

.nav-link {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text) !important;
  position: relative
}

.nav-link:after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .15rem;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: .25s
}

.nav-link:hover:after,
.nav-link.active:after {
  transform: scaleX(1)
}

.header-phone {
  color: var(--text);
  font-size: .82rem
}

.header-phone small {
  display: block;
  font-size: .7rem;
  color: var(--muted)
}

.phone-icon,
.cta-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--cyan);
  background: #e7fbfc
}

.hero-section {
  background: url(../images/bg-panda.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
}

.min-vh-hero {
  min-height: 585px
}

.hero-section:before {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -35%;
  width: 560px;
  height: 400px;
  background: radial-gradient(circle, rgba(54, 196, 203, .16), transparent 65%)
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  font-size: .78rem;
  color: var(--navy);
  background: #d9f7f8;
  border-radius: 30px;
  padding: .45rem .8rem
}

h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.07em;
  margin: 1rem 0;
  color: var(--navy)
}

h1 span {
  display: block;
  color: var(--cyan)
}

.hero-text {
  max-width: 560px;
  font-size: 1.08rem;
  color: #3c5877
}

.benefit {
  display: flex;
  gap: .6rem;
  align-items: center
}

.benefit i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  flex: 0 0 auto
}

.benefit b,
.benefit small {
  display: block;
  font-size: .76rem
}

.benefit small {
  color: var(--muted);
  font-size: .67rem
}

.btn-primary-custom,
.btn-outline-custom {
  padding: .85rem 1.3rem;
  border-radius: 12px;
  font-weight: 800
}

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

.btn-primary-custom:hover {
  background: #0a3875;
  color: #fff;
  transform: translateY(-2px)
}

.btn-outline-custom {
  border: 1px solid #9ec0d6;
  color: var(--navy);
  background: #fff
}

.btn-outline-custom:hover {
  border-color: var(--cyan);
  color: var(--navy);
  transform: translateY(-2px)
}

.hero-orb {
  position: relative;
  margin: auto;
}

.hero-orb:after {
  content: "";
  position: absolute;
  inset: 0%;
  border-radius: 50%;
  border: 7px dashed rgba(54, 196, 203, .35);
  animation: spin 24s linear infinite
}

.hero-image {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2
}

.bubble {
  position: absolute;
  border: 2px solid rgba(54, 196, 203, .36);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite
}

.bubble-1 {
  width: 22px;
  height: 22px;
  right: 12%;
  top: 8%
}

.bubble-2 {
  width: 12px;
  height: 12px;
  right: 4%;
  top: 29%;
  animation-delay: .8s
}

.bubble-3 {
  width: 31px;
  height: 31px;
  left: 7%;
  bottom: 15%;
  animation-delay: 1.3s
}

.bubble-4 {
  width: 15px;
  height: 15px;
  left: 18%;
  top: 17%;
  animation-delay: 2s
}

.section-space {
  padding: 76px 0
}

.bg-soft {
  background: var(--soft)
}

.section-title {
  text-align: center
}

.section-title h2 {
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: .65rem
}

.section-title span {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--cyan);
  border-radius: 5px;
  margin: auto
}

.service-card {
  height: 100%;
  text-align: center;
  padding: 2rem 1.25rem 1.6rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 38, 83, .04);
  transition: .3s
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(3, 31, 70, .16)
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 16px;
  margin: 0 auto 1.1rem;
  font-size: 1.55rem;
  transition: .3s
}

.service-card:hover .service-icon {
  color: #fff;
  background: var(--cyan);
  transform: rotate(-8deg)
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 900
}

.service-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65
}

.card-line {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--cyan);
  margin: 1rem auto 0
}

.process-section {
  background: linear-gradient(120deg, #062653, #031b3e);
  color: #fff
}

.section-title-light h2 {
  color: #fff
}

.process-item {
  text-align: center;
  position: relative;
  padding: 0 .5rem;
  zoom: 1.1;
}

.process-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  font-size: 1.85rem;
  color: var(--cyan);
  transition: .3s
}

.process-item:hover .process-icon {
  background: var(--cyan);
  color: var(--navy);
  transform: scale(1.08)
}

.process-item h3 {
  font-size: .98rem;
  font-weight: 900
}

.process-item p {
  font-size: .82rem;
  color: #cae1ef;
  line-height: 1.6
}

.stats {
  background: #fff;
  box-shadow: 0 10px 35px rgba(3, 31, 70, .06)
}

.stat {
  border-right: 1px solid #e0e8ed;
  zoom: 1.5;
}

.stats [class*=col-]:last-child .stat {
  border-right: 0
}

.stat strong,
.stat span {
  font-size: 2rem;
  color: var(--cyan);
  font-weight: 900
}

.stat small {
  display: block;
  font-size: .82rem;
  color: #546a83
}

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

.check-list li {
  margin: 1.1rem 0;
  font-weight: 700;
  color: #314f70
}

.check-list i {
  color: var(--cyan);
  margin-right: .55rem
}

.factory-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative
}

.factory-frame:before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 28px;
  z-index: 2
}

.factory-frame img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: .5s
}

.factory-frame:hover img {
  transform: scale(1.05)
}

.review-card {
  position: relative;
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 38, 83, .04)
}

.quote {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: var(--cyan);
  font-size: 4.5rem;
  line-height: 1;
  font-family: Georgia, serif
}

.stars {
  margin-left: 2.5rem;
  color: #ffc438;
  letter-spacing: .12em;
  font-size: .88rem
}

.review-card p {
  margin: 1.2rem 0 1.4rem;
  margin-left: 2.5rem;
  color: #49647f;
  font-size: .89rem;
  line-height: 1.6
}

.review-author {
  display: flex;
  align-items: center;
  gap: .7rem
}

.review-author>span {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  color: #fff;
  font-size: .75rem;
  font-weight: 900
}

.review-author b,
.review-author small {
  display: block
}

.review-author small {
  color: var(--muted);
  font-size: .72rem
}

.cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  border-radius: 38px;
  background: linear-gradient(100deg, var(--cyan), #36aebf);
  color: #fff;
  box-shadow: 0 15px 35px rgba(54, 196, 203, .25)
}

.cta-icon {
  font-size: 1.25rem;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  flex: 0 0 auto
}

.cta h2 {
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0
}

.cta p {
  margin: 0;
  font-size: .86rem
}

.cta-btn {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  padding: .9rem 1.35rem;
  border-radius: 30px;
  white-space: nowrap
}

.cta-btn:hover {
  background: #0a3875;
  color: #fff;
  transform: translateY(-2px)
}

.footer {
  background: linear-gradient(120deg, #062653, #021a3b);
  color: #cce1ef
}

.footer p {
  font-size: .86rem;
  line-height: 1.7;
  color: #c4d8e6
}

.footer h3 {
  font-size: .92rem;
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem
}

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

.footer li {
  margin: .48rem 0;
  font-size: .84rem
}

.footer a {
  color: #cce1ef;
  text-decoration: none
}

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

.socials {
  display: flex;
  gap: .6rem
}

.socials a {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%
}

.contact-list li {
  display: flex;
  gap: .55rem
}

.contact-list i {
  color: var(--cyan)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
  text-align: center;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: .75rem;
  color: #86a6bf
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 12px 30px rgba(54, 196, 203, .45);
  z-index: 1000;
  animation: pulse 2s infinite
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 94px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 1000
}

.scroll-top.show {
  opacity: 1;
  visibility: visible
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .10s
}

.delay-2 {
  transition-delay: .20s
}

.delay-3 {
  transition-delay: .30s
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes float {
  50% {
    transform: translateY(-15px)
  }
}

@keyframes pulse {
  50% {
    box-shadow: 0 12px 30px rgba(54, 196, 203, .6), 0 0 0 13px rgba(54, 196, 203, .12)
  }
}

@media (max-width:991px) {
  .navbar-collapse {
    padding-top: 1rem
  }

  .header-phone {
    margin-top: .8rem
  }

  .min-vh-hero {
    min-height: auto
  }

  .hero-orb {
    max-width: 450px;
    margin-top: 2rem
  }

  .cta {
    align-items: flex-start;
    flex-wrap: wrap
  }

  .cta-btn {
    margin-left: 58px
  }
}

@media(max-width:575px) {
  .section-space {
    padding: 60px 0
  }

  h1 {
    font-size: 4rem
  }

  .hero-text {
    font-size: .98rem
  }

  .stats [class*=col-] .stat {
    border-right: 0
  }

  .stat strong,
  .stat span {
    font-size: 1.65rem
  }

  .cta {
    border-radius: 24px;
    padding: 1.25rem
  }

  .cta-icon {
    display: none
  }

  .cta-btn {
    margin-left: 0;
    width: 100%
  }
}
.mil-service-card {
    padding: 2rem;
    display: block;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    border:1px solid #36c4cb;
}
.mil-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(3, 31, 70, .16);
}
.mil-br-md {
    border-radius: 1rem;
}
.mil-jcb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.mil-service-card .mil-card-icon {
    width: 60px;
}
.mil-mb-30 {
    margin-bottom: 1rem;
}

.mil-up-text {
    text-transform: uppercase;
    font-size: 1rem;
}
.mil-fs-30 {
    font-size: 1.5rem;
}
#services h3{
  font-size: 1rem;
    font-weight: 900;
}
/* Owl Carousel — Reviews */
.reviews-carousel .item {
  padding: 0 8px
}

.reviews-carousel .review-card {
  height: auto
}

.reviews-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  border: 1px solid var(--cyan) !important;
  background: #fff !important;
  color: var(--cyan) !important;
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: .25s
}

.reviews-carousel .owl-nav button:hover {
  background: var(--cyan) !important;
  color: #fff !important
}

.reviews-carousel .owl-nav .owl-prev {
  left: -18px
}

.reviews-carousel .owl-nav .owl-next {
  right: -18px
}

.reviews-carousel .owl-dots {
  text-align: center;
  margin-top: 1.5rem
}

.reviews-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0dce8;
  display: inline-block;
  margin: 0 4px;
  transition: .25s
}

.reviews-carousel .owl-dot.active span,
.reviews-carousel .owl-dot:hover span {
  background: var(--cyan)
}

/* Contacts Section */
.contact-info-block {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.contact-detail-list li {
  display: flex;
  gap: .9rem;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid #edf2f6
}

.contact-detail-list li:last-child {
  border-bottom: 0
}

.contact-detail-list i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e7fbfc;
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex: 0 0 auto
}

.contact-detail-list b {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em
}

.contact-detail-list a,
.contact-detail-list span {
  font-size: .93rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none
}

.contact-detail-list a:hover {
  color: var(--cyan)
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0
}

/* Gallery Section */
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 38, 83, .45);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: .35s
}

.gallery-overlay i {
  font-size: 2rem;
  color: #fff;
  transform: scale(.7);
  transition: .35s
}

.gallery-item:hover img {
  transform: scale(1.08)
}

.gallery-item:hover .gallery-overlay {
  opacity: 1
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1)
}