/********** Template CSS **********/
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
  --logo: #004aad;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.navbar {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 27px 0;
  color: #091e3e;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--dark);
  border-bottom: var(--logo);
}

.navbar-dark .navbar-toggler {
  color: var(--dark) !important;
  border-color: var(--primary) !important;
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--dark) !important;
}
/* Button + Icon wrapper */
.action-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Enquiry Button */
.enquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: var(--logo);
  color: #fff;
  margin-left: 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.enquiry-btn .icon {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enquiry-btn:hover {
  background-color: var(--primary);
  color: var(--light);
}
/* 4 box grid icon */
.grid-icon {
  width: 30px;
  height: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  cursor: pointer;
}
.grid-icon span {
  border: 2px solid #091e3e;
  border-radius: 3px;
}
/* Right slide panel */
.contact-panel {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
  z-index: 9999;
}
.contact-panel h4 {
  color: var(--light);
}
.contact-panel.active {
  right: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px 7px 15px;
}

.panel-body {
  padding: 20px;
  font-size: 15px;
}
.panel-body p strong {
  color: var(--logo);
  font-size: 20px;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
}
.address-line {
  display: flex;
  align-items: flex-start;
  gap: 10px; /* icon aur text ke beech gap */
  font-size: 15px;
}

.address-line i {
  font-size: 20px; /* icon big */
  color: var(--logo); /* green (optional) */
  margin-top: 2px; /* text ke saath align */
}
.address-line a {
  color: #6f6f79 !important;
}
.getintouch-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: var(--logo);
  color: #fff;
  margin-top: 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.getintouch-btn .icon {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.getintouch-btn:hover {
  background-color: var(--primary);
  color: var(--light);
}
@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }
  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

/*** Carousel ***/
.hero-wrap {
  background: linear-gradient(135deg, #f4efff, #f8fbff);
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}
.hero-wrap .corner-line {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-wrap .corner-line span {
  display: block;
  background: var(--logo);
  width: 80px;
  height: 2px;
}

.hero-wrap .corner-top-left {
  top: 0;
  left: 0;
  transform: rotate(0deg);
}

.hero-wrap .corner-top-right {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.hero-wrap .corner-bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}

.hero-wrap .corner-bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.bg-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Individual icons */
.bg-icons i {
  position: absolute;
  font-size: 60px;
  opacity: 0.7;
  transition: all 2s ease; /* smooth movement and rotation */
}
/* LEFT */
.top-badge {
  background: #fff;
  color: var(--logo);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.7px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  color: var(--logo);
}

.hero-desc {
  color: #555;
  max-width: 520px;
  margin: 18px 0;
}

/* ORBIT SYSTEM */
.orbit-container {
  float: right;
  height: 400px;
  width: 400px;
  border-radius: 50%;
  border: 2px dashed var(--logo);
  margin-top: 25px;
  padding: 0; /* padding hata dein */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* image ko circle ke bahar na jane de */
}

.orbit-container .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

#enquiry {
  margin-left: 0px !important;
}
@media (max-width: 600px) {
  .top-badge {
    font-size: 11px !important;
    text-align: center;
  }
  .orbit-container {
    float: none;
    margin-left: 0;
    height: 350px;
    width: 350px;
    margin: 0 auto;
  }
  .hero-title {
    font-size: 20px;
  }
  .section-title h1 {
    font-size: 18px !important;
  }
}
/* Exact placement */

/*** Section Title ***/
.section-title h1 {
  font-size: 25px;
}
.section-title h5 {
  background-color: #6aece1;
  color: #fff !important;
  font-weight: bold !important;
  font-size: 14px;
  border-radius: 20px !important;
  padding: 6px 20px 5px 20px;
  display: inline-block;
}
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--logo);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f2ff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  width: 100%;
}

.feature-pill i {
  width: 24px;
  height: 24px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Service ***/
.service-whole {
  background-color: #f6f5ff;
  padding: 25px 0px;
}
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}
.service-stack {
  position: relative;
}

/* Each layer */
.service-layer {
  position: sticky;
  top: 90px;
  height: 70vh;
  border-radius: 5px;
  margin-bottom: 100px;
  padding: 60px;
}

/* Content */
.service-content {
  max-width: 620px;
}

.service-content h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 25px;
}

.service-content p {
  font-size: 18px;
  color: #333;
}

.layer-1 {
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, #ff717e, #ffead3);
  z-index: 1;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
  transform-origin: center;
  animation: rotateBubble 20s linear infinite;
}
.bubble1 {
  width: 250px;
  height: 250px;
  top: 30px;
  left: 40px;
}
.bubble2 {
  width: 300px;
  height: 300px;
  bottom: 40px;
  right: 50px;
  animation-duration: 25s;
}
@keyframes rotateBubble {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.layer-2 {
  background: linear-gradient(135deg, #cd70ff, #e3bbff);
  z-index: 2;
}

.layer-3 {
  background: linear-gradient(135deg, #ff9d23, #ffd65a);
  z-index: 3;
}

.layer-4 {
  background: linear-gradient(135deg, #006bff, #08c2ff);
  z-index: 4;
}
/* IMAGE BOX */
.service-image-box {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 420px;
  margin: auto;
  margin-top: 35px;
}

.service-image-box .main-img {
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .service-layer {
    height: auto;
    padding: 20px;
  }
  .service-content h2 {
    margin-top: 15px;
  }
}
@media (max-width: 600px) {
  .service-layer .orbit {
    display: none;
  }
  .service-layer .tech-icon {
    display: none;
  }
}

/* ROTATING ICONS */
.tech-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 5;
  animation: rotateIcons 12s linear infinite;
}
.orbit {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  animation: spin 14s linear infinite;
  z-index: 1;
}

/* Icon positions */
.tech-icon .fa-html5 {
  top: -10px;
  left: 40%;
  color: #e34c26;
}
.tech-icon .fa-css3-alt {
  left: -10px;
  top: 45%;
  color: #264de4;
}
.tech-icon .fa-react {
  bottom: -10px;
  left: 45%;
  color: #61dafb;
}
.tech-icon .fa-js {
  bottom: -10px;
  left: 45%;
  color: #f7df1e;
}
.tech-icon .fa-bootstrap {
  right: -10px;
  top: 45%;
  color: #7952b3;
}
.tech-icon .fa-node-js {
  right: -10px;
  top: 45%;
  color: #339933;
}
.tech-icon .fa-laravel {
  right: -10px;
  top: 45%;
  color: #ff2d20;
}
.tech-icon .fa-php {
  right: -10px;
  top: 45%;
  color: #777bb4;
}
/* Rotation animation */
@keyframes rotateIcons {
  from {
    transform: rotate(0deg) translateX(0);
  }
  to {
    transform: rotate(360deg) translateX(0);
  }
}

/* CONTENT */
.service-content h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 15px;
  text-align: justify;
  margin-bottom: 15px;
}
.service-points .col-6 {
  margin-bottom: 15px;
  color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.service-points i {
  color: #000;
  margin-right: 8px;
  font-size: 10px;
  background-color: #ffead3;
  border-radius: 50%;
  padding: 5px;
}

/* Why chhose us */
.stats-wrapper {
  position: relative;
}

/* Card Base */
.stat-card {
  background: #f7f8ff;
  padding: 30px 25px;
  border-radius: 5px;
  text-align: center;
  transition: all 0.35s ease;
}

/* Text */
.stat-card h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1e1e3f;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 15px;
  color: #6b6b82;
  margin: 0;
}

.stat-card.up {
  transform: translateY(-5px);
}

.stat-card.down {
  transform: translateY(20px);
}

.stat-card h2,
.stat-card p {
  transition: all 0.35s ease;
}

.scroll-type {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}
.scroll-type.active {
  animation: typing 2.4s steps(40, end) forwards;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.stat-card:hover {
  background-color: var(--logo);
  color: var(--light);
  transition: all 2s;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}
.stat-card:hover h2,
.stat-card:hover p {
  color: var(--light);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .stat-card.up,
  .stat-card.down {
    transform: translateY(0);
  }
}
.why-choose {
  margin-top: 20px;
}
.why-item {
  margin-bottom: 18px;
}
.why-title {
  font-size: 17px;
  font-weight: bold !important;
  color: #1f2937;
}
.why-desc {
  font-size: 13px;
  line-height: 1.2;
  text-align: justify;
  color: #4b5563;
  margin: 0;
}
.why-img img {
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
}
.img-adjust {
  margin-top: 30px;
}

@keyframes updown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  } /* upar 10px */
  100% {
    transform: translateY(0px);
  }
}
.img-vibrate img {
  animation: updown 1s infinite ease-in-out;
}
@media(max-width:600px){
  .img-adjust{
    margin-top: 0px!important;
  }
  #why-choose{
    margin-top: -40px!important;
  }
}
/* Why Choose us end */

/*our client start here */
.clients-section {
  background: transparent;
  position: relative;
}
/* Waves */
.wave-top,
.wave-bottom {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 0;
}
.wave-top {
  top: 0;
}
.wave-bottom {
  bottom: 0;
}

.clients-section .container {
  position: relative;
  z-index: 1;
}
.client-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  height: 85px;
  display: flex;
  align-items: center;     
  justify-content: center; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
/*our client end here */
/* work process */
.card-icon i {
  font-size: 30px;
}
/* work process */
/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img {
  transform: scale(1.15);
}

.faq-item {
  background: #f5f7ff;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item.active {
  background: linear-gradient(135deg, #004aad, #06a3da);
  color: #fff;
}

.faq-question {
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 20px;
}

.faq-icon {
  background: #004aad;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  background: #fff;
  color: #004aad;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background:
    linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}
.whatsapp-wrap {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 9999;
}

/* Text pill */
.whatsapp-text {
  background: #25d366;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Icon circle */
.whatsapp-icon {
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
