/* <style> */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 110px;
}

body {
  font-family: "Outfit", Arial, sans-serif;
  color: #000;
  background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
}

/* Top bar */
.top-bar {
  background-color: #1e3e9e;
  padding: 8px 0;
}
.top-bar .contact-info {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar .contact-info img {
  width: 20px;
  height: auto;
}

/* Navbar */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.main-navbar .navbar-brand img {
  height: 70px;
  width: auto;
}
.main-navbar .nav-link {
  color: #000 !important;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s;
}
.main-navbar .nav-link:hover {
  color: #2664eb !important;
}
.download-btn {
  background-color: #2664eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  white-space: nowrap;
}
.download-btn:hover {
  background-color: #1e56d1;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero */
/* .hero-section {
        background-image: url('./assets/images/Nisha_banner-lp.png');
        background-size: 100%;
        background-repeat: no-repeat;
        height: 108vh;
    } */
/* .hero-section { background: linear-gradient(268deg, #344a71 0%, #1a2236 100%); min-height: 600px; position: relative; overflow: hidden; } */
.hero-bg-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: url("./assets/images/img_group_blue_gray_900.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
.hero-title {
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: #faf8f5;
}
.hero-title .highlight {
  color: #31bcf7;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 300;
  color: #faf8f5;
}
.certification-badges img {
  width: 80px;
  height: 80px;
}
@media (min-width: 992px) {
  .certification-badges img {
    width: 100px;
    height: 100px;
  }
}

/* Product circles - fixed absolute positioning */
.product-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}
@media (min-width: 992px) {
  .product-item {
    min-height: 320px;
  }
}
.product-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (min-width: 992px) {
  .product-circle {
    width: 280px;
    height: 280px;
  }
}
.product-circle-1 {
  background: linear-gradient(180deg, #2664eb 0%, #212d45 100%);
}
.product-circle-2 {
  background: linear-gradient(180deg, #2664eb 0%, #2f4264 100%);
}
.product-circle-3 {
  background: linear-gradient(180deg, #2664eb 0%, #202c44 100%);
}
.product-image {
  position: relative;
  z-index: 2;
  max-width: 85%;
  max-height: 240px;
  object-fit: contain;
}

/* Quote form */
.quote-section {
  background-color: #6083a8;
  border-radius: 14px;
  padding: 26px;
  margin-top: -10%;
}
.quote-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.form-input {
  padding: 12px 14px;
  border: none;
  border-bottom: 1px solid #5c5c5c;
  border-radius: 5px;
  background-color: #fff;
  font-size: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
  width: 100%;
}
.submit-btn {
  background-color: #1d2940;
  color: #fff;
  padding: 10px 34px;
  border-radius: 8px;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}
.submit-btn:hover {
  background-color: #0f1a2e;
  transform: translateY(-2px);
}

/* Stats */
.stats-section {
  background-color: #f5f7fa;
  padding: 60px 0;
}
.stats-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #1a2236;
  text-align: center;
  margin-bottom: 40px;
}
.stat-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
  height: 100%;
}
.stat-card:hover {
  transform: translateY(-5px);
}
.stat-icon {
  margin: 10px auto 24px;
}
.stat-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}
.stat-highlight {
  font-size: 22px;
  font-weight: 700;
  color: #007ad5;
}

/* About */
.about-section {
  background-color: #fff;
  padding: 50px 0;
  background-image: url(./assets/images/img_complete_1.png);
  background-repeat: no-repeat;
  background-position: 100%;
}
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #1d2940;
  margin-bottom: 10px;
}
.section-line {
  width: 50px;
  height: 2px;
  background-color: #1d2940;
}
.about-main-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #1d2940;
  line-height: 1.2;
  margin-bottom: 28px;
}
.about-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  margin-bottom: 32px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background-color: #1a227d;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.cta-text {
  color: #fff;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  padding: 6px 16px;
}
.cta-btn-inner {
  background-color: #2664eb;
  color: #fff;
  padding: 6px 16px;
  border-radius: 10px;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Products */
.product-section {
  padding: 50px 0;
}
.product-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #1d2940;
  margin-bottom: 6px;
}
.product-line {
  width: 100%;
  height: 1px;
  background-color: #929497;
  margin-bottom: 20px;
}
.product-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin-bottom: 18px;
}
.product-description .highlight {
  font-weight: 600;
}
.features-title {
  font-size: 22px;
  font-weight: 600;
  color: #f30402;
  margin: 14px 0 8px;
}
.features-list {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 20px;
  flex-shrink: 0;
}
.feature-icon {
  width: 20px;
  height: 20px;
}
.feature-dot {
  background-color: #31bcf7;
  border-radius: 10px;
  padding: 5px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.features-text ul {
  list-style: none;
  padding-left: 0;
}
.features-text li {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  flex: 1;
  padding-left: 1.5rem;
  position: relative;
}
.features-text li::before {
  content: "";
  background-image: url(./assets/images/img_group_9302628.svg);
  background-size: cover;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0px;
  top: 5px;
  background-repeat: no-repeat;
}
.product-image-container {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.whatsapp-btn,
.email-btn,
.call-btn {
  display: inline-flex;
  align-items: center;
  background-color: #1a227d;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s;
}
.whatsapp-btn:hover,
.email-btn:hover,
.call-btn:hover {
  transform: translateY(-2px);
}
.btn-text {
  color: #fff;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 600;
  padding: 6px 14px;
}
.btn-action {
  background-color: #2664eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-section .row {
  border-radius: 5px;
  background: #f5f7fa;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
}

/* Why Choose */
.why-choose-section {
  background-image: url("./assets/images/img_bg.svg");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}
.why-choose-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #1d2940;
  text-align: center;
  margin-bottom: 36px;
}
.why-choose-header {
  background-color: #007ad5;
  display: flex;
  flex-wrap: wrap;
}
.header-left {
  background-color: #007ad5;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 20px;
  flex: 0 0 35%;
  max-width: 35%;
  min-width: 150px;
}
.header-right {
  background-color: #228cdb;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 18px;
  flex: 0 0 65%;
  max-width: 65%;
  min-width: 150px;
}
.feature-row {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.feature-row:nth-child(even) {
  background-color: #f5f5f5;
}
.feature-left {
  flex: 0 0 35%;
  max-width: 35%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
}
@media (max-width: 767px) {
  .feature-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .feature-right {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 6px 10px !important;
  }
}
.feature-name {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.feature-icon-right {
  width: 30px;
  height: 30px;
}
.feature-right {
  flex: 0 0 65%;
  max-width: 65%;
  padding: 6px 10px;
}
.feature-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}
.special-feature {
  background-color: #ffa412;
  border-radius: 16px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.special-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.special-dot {
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
}

/* Quality */
.quality-section {
  background-image: url("./assets/images/img_bg_blue_gray_500.png");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}
.quality-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.quality-description {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
}
.quality-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  height: 100%;
}
.quality-card-icon {
  margin: 14px auto 12px;
}
.quality-card-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}

/* Clients */
.clients-section {
  padding: 50px 0;
  background-color: #dfdfdf;
}
.clients-sec-title {
  background-image: url(./assets/images/img_group_1321317181.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 14%;
}
.clients-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #1d2940;
}
.client-logo {
  width: 100%;
  height: auto;
  background: lightgray 50% / cover no-repeat;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.15);
}

/* Overseas */
.overseas-section {
  background-color: #dfdfdf;
  padding: 50px 0;
}
.overseas-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #1d2940;
  text-align: center;
  margin-bottom: 36px;
}
.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.flag-bangladesh {
  background-color: #006747;
  padding: 6px;
  border-radius: 0px;
  width: 140px;
  display: flex;
  justify-content: center;
}
.flag-name {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

/* Industries */
.industries-section {
  background-color: #fff;
  padding: 50px 0;
  box-shadow: 0 4px 10px rgba(136, 136, 136, 1);
}
.industries-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #1d2940;
  text-align: center;
  margin-bottom: 30px;
}
.industry-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0px;
}
.industry-name {
  font-size: 15px;
  font-weight: 500;
  color: #1d2940;
  margin-top: 10px;
}
.industry-line {
  width: 100%;
  height: 1px;
  background-color: #6083a8;
  margin-top: 6px;
}
.industries-description {
  background-color: #6083a8;
  border-radius: 10px;
  padding: 14px 20px;
}
.industries-description-text {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
.industries-description-text .highlight {
  font-weight: 600;
}

/* Machines */
.machines-section {
  background: linear-gradient(268deg, #344a71 0%, #1a2236 100%);
  padding: 50px 0;
}
.machines-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  color: #fff;
}
.machines-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}
.machines-gallery {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 8px 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.machines-gallery::-webkit-scrollbar {
  height: 6px;
}
.machines-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.machine-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.machine-image-container {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 30px 16px;
  box-shadow: 4px 4px 6px rgba(238, 238, 238, 0.15);
  width: 320px;
}
@media (min-width: 992px) {
  .machine-image-container {
    width: 400px;
  }
}
.machine-name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

/* Video Modal */
.video-trigger {
  position: relative;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 20px;
  border-style: solid;
  border-width: 15px 0 15px 24px;
  border-color: transparent transparent transparent #fff;
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal iframe {
  width: 100%;
  height: 500px;
  border-radius: 8px;
}

.video-trigger img {
  transition: transform 0.4s ease;
}

.video-trigger:hover img {
  transform: scale(1.05);
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* FAQ */
.faq-section {
  background-color: #f5f7fa;
  padding: 50px 0;
}
.faq-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #1d2940;
  text-align: center;
  margin-bottom: 28px;
}
.faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 5px 16px rgba(8, 15, 52, 0.06);
  overflow: hidden;
}
.faq-question {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.faq-question:hover {
  background-color: #f8f9fa;
}
.faq-question-text {
  font-size: 17px;
  font-weight: 700;
  color: #1d2940;
}
.faq-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.faq-answer {
  padding: 0 18px 16px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #22262e;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-collapsed .faq-question-text {
  font-weight: 400;
  color: #000;
}

/* Footer */
.footer {
  background-color: #141a2b;
  padding: 50px 0;
  position: relative;
}
.footer-logo {
  max-width: 280px;
  margin-bottom: 14px;
}
.footer-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 24px;
}
.social-link {
  width: 46px;
  height: 46px;
  background-color: #2a3140;
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-link:hover {
  background-color: #3a4150;
  transform: translateY(-2px);
}
.footer-badge {
  max-width: 80px;
}
.copyright-text {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
.footer-nav-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-nav-line {
  width: 50px;
  height: 3px;
  background-color: #1e3c9e;
  margin-bottom: 18px;
}
.footer-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  transition: color 0.3s;
  display: block;
}
.footer-nav-link:hover {
  color: #31bcf7;
}
.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.contact-text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.contact-address {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
}
.footer-developer {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 52px;
  height: 52px;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 26px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1000;
}
.scroll-to-top:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Utility */
.text-highlight {
  color: #31bcf7;
  font-weight: 700;
}
.text-red {
  color: #f30402;
}

/* Scroll-triggered fade-in animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger delay helpers */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* Scroll-triggered fade-in animations using IntersectionObserver */
.scroll-triggered {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-triggered.visible {
  opacity: 1;
  transform: translateY(0);
}
/* </style> */

@media only screen and (max-width: 767px) {
  .top-ct-details {
    gap: 10px !important;
  }

  .top-bar .contact-info {
    flex: 1;
    font-size: 13px;
    max-width: max-content;
  }

  .main-navbar .navbar-brand {
    flex: 0 0 74%;
  }

  .main-navbar .navbar-brand img {
    width: 100%;
    height: auto;
  }

  .fade-in-right {
    transform: translateX(30px);
  }
}



/* mobile css */
@media (max-width: 768px) {
    .about-section {
        background-image: none; 
        padding-top: 0;
    }

    .about-section::before {
        content: "";
        display: block;
        width: 100%;
        height: 250px; /* adjust height */
        background-image: url(./assets/images/img_complete_1.png);
        background-size: cover;
        background-position: center;
        margin-bottom: 20px;
    }

    /* cta  */
    .cta-button {
    flex-direction: column;          
    width: 100%;                     
    padding: 12px 15px;
    text-align: center;
  }

  .cta-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .cta-btn-inner {
    margin-top: 8px;
    justify-content: center;
    font-size: 14px;
  }


    .btn-action {
    justify-content: center;
    font-size: 14px;
  }
  .call-btn {
    flex-direction: column;   
    width: 100%;             
    padding: 12px 15px;
    text-align: center;
    gap: 8px;
  }
  .email-btn {
    flex-direction: column;   
    width: 100%;
    padding: 12px 15px;
    text-align: center;
    gap: 8px;
  }

  .btn-action {
    justify-content: center;
  }
}

.whatsapp-sticky {
  position: fixed;
  bottom: 90px; 
  right: 20px;
  z-index: 999;
  cursor: pointer;
}

.whatsapp-sticky img {
  width: 50px;
  height: 50px;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
}
.footer-developer a {
    color: #fff;
    text-decoration: none;
}
.navbar-brand img {
  max-height: 60px;
  width: auto;
}
