html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f8f9fb;
  color: #333;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1,h2,h3 {
  font-weight: 600;
}

section {
  padding: 60px 0;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('banner.jpg') center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 42px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #0066ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
}

.highlight {
  background: #eef4ff;
  padding: 25px;
  border-radius: 10px;
}

.cta {
  background: #0066ff;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta input {
  padding: 12px;
  margin: 10px;
  width: 250px;
  border: none;
  border-radius: 5px;
}

.cta button {
  padding: 12px 25px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
}

.faq h4 {
  margin-bottom: 5px;
}

.footer {
  background: #162b4c;
  color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding: 60px 80px;
  align-items: start;
}

/* ALL COLUMNS SAME WIDTH */
.footer-col {
  text-align: left;
}

/* HEADINGS CENTER */
.footer h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* LIST CENTER */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

/* ABOUT SECTION */
.footer-about {
  text-align: left;
}

.footer-about p {
  margin: 20px auto;
  line-height: 1.8;
  max-width: 280px; /* controls wrapping like your design */
}

/* CONTACT ALIGNMENT (IMPORTANT) */
.footer-col:last-child p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* EACH CONTACT ITEM */
.contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
}

/* ICON */
.contact-item i {
  color: #4da3ff;
  font-size: 18px;
  margin-top: 4px;
}

/* TEXT */
.contact-item span {
  line-height: 1.7;
}

/* LOGO CENTER */
.footer-logo {
  width: 170px;
  margin-bottom: 15px;
}

/* SOCIAL ICONS CENTER */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  text-decoration: none;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #1e4fa3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

/* CONTACT CENTER */
.footer-col:last-child {
  display: flex;
  flex-direction: column;
}

.footer-col p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ICON ALIGNMENT */
.footer-col i {
  color: #4da3ff;
  margin-top: 4px;
}

/* BOTTOM LINE */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 80px;
  text-align: left;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

/* RESPONSIVE FIX */
@media (max-width: 992px) {
  .footer-container {
    flex-wrap: wrap;
  }

  .footer-col {
    max-width: 50%;
    margin-bottom: 30px;
  }

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* stack columns */
    padding: 40px 20px; /* reduce side spacing */
    gap: 30px;
  }
}

}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .footer-col {
    max-width: 100%;
  }

  .footer-bottom {
    text-align: center;
    padding: 20px;
  }
}

.faq-section {
  padding: 70px 0;
  background: #f8fbff;
  font-family: 'Poppins', sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #0A1A2F;
  margin-bottom: 40px;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #0A1A2F;
}

/* ICON */
.faq-icon {
  font-size: 20px;
  color: #1E90FF;
  transition: 0.3s;
}

.faq-answer {
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer p {
  display: block !important;
  color: #222 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  height: auto !important;
  padding: 0 20px 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* HOVER */
.faq-question:hover {
  color: #1E90FF;
}

#button-background {
  position: relative;
  background-color: #282761;
  width: 180px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slider {
  transition: width 0.3s, border-radius 0.3s, height 0.3s;
  position: absolute;
  left: 0;
  background-color: transparent;
  width: 50px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#slider.unlocked {
  transition: all 0.3s;
  width: inherit;
  left: 0 !important;
  background-color: #19B8E4;
  height: inherit;
  border-radius: inherit;
}

.slide-text {
  color: #fff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

.icon-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #fff;
  margin: 6px;
}

.slide-icons {
  color: #fff;
  font-size: 17px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.slide-icons i {
  -webkit-animation: arrow-animation 1.5s infinite;
  -moz-animation: arrow-animation 1.5s infinite;
  margin-left: -3px;
}
.slide-icons i:first-child {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  margin-left: 5px;
  opacity: 0.15;
}
.slide-icons i + i {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  opacity: 0.5;
}
.slide-icons i + i + i {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  opacity: 1;
}

@-webkit-keyframes arrow-animation {
  0% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes arrow-animation {
  0% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes arrow-animation {
  0% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-animation {
  0% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

html .njs-sticky-side.image_button_cover.placement-right {
    right: 0;
}

html .njs-sticky-side.image_button_cover {
    position: fixed;
    top: 50%;
    box-shadow: none;
    z-index: 99999;
    transition: transform .3s cubic-bezier(0,0,0,1);
    -webkit-transition: -webkit-transform .3s cubic-bezier(0,0,0,1);
}

html .njs-sticky-side.image_button_cover.placement-right.now-show a {
    transform: translate3d(4px,0,0) rotate(-90deg);
    -webkit-transform: translate3d(4px,0,0) rotate(-90deg);
}

html .njs-sticky-side.image_button_cover.placement-right a {
    border-radius: 3px 3px 0 0;
    transform: translate3d(200%,0,0) rotate(-90deg);
    -webkit-transform: translate3d(200%,0,0) rotate(-90deg);
    transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
}

html .njs-sticky-side.image_button_cover a {
    padding: 6px 15px 12px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
	background-color: #282761; 
	color: white;	
  font-weight: 100; 
  top: -106.5px; 
  font-family: 'Arial';
  text-decoration: none;
}

html .njs-sticky-side.image_button_cover a:hover {
	background-color: white;
	color: black;
	border: 2px solid #acacac;
}

/* OVERLAY */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* SHOW MODAL */
.modal-overlay.active {
  display: flex;
}

/* MODAL BOX */
.modal-box {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* CLOSE */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
}

/* FORM */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* BUTTON */
.modal-form button {
  background: #1e4fa3;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-form button:hover {
  background: #163d82;
}

/* MOBILE FIX */
@media (max-width: 500px) {
  .modal-box {
    width: 90%;
    padding: 20px;
  }
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}