* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Times New Roman", Times, serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kanit", sans-serif;
}

a {
  text-decoration: none !important;
}

p {
  font-size: 15px;
  font-weight: 400;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
  filter: brightness(82%);
}

.theme-color {
  color: #fbae43;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  height: 60px;
  top: 0;
  background-color: #fff;
  color: black;
  padding: 20px;
  z-index: 10;
  transition: background-color 0.3s ease;
}

header .logo img {
  height: 50px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li {
  position: relative;
}

header nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

header nav ul li a:hover {
  background-color: #fbae43;
  transform: scale(1.1);
}

header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-color: #fbae43;
  transition: width 0.3s;
}

header nav ul li a:hover::after {
  width: 100%;
}

.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu-icon .bar {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 5px;
}

#nav {
  display: flex;
}

#nav ul {
  display: flex;
  text-align: left;
}

.blue-line {
  background-color: #263a80;
  height: 3px;
}

.blue-line1 {
  background-color: #263a80;
  height: 3px;
}

@media (max-width: 768px) {
  header nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: #fbae43;
    transition: max-height 0.4s ease-in-out;
    z-index: 1000;
  }
  #nav.active {
    max-height: 900px;
    /* Adjust based on number of links */
  }
  #nav ul {
    flex-direction: column;
    align-items: flex-start;
    /* Align items to the left */
    padding: 20px;
    gap: 16px;
    margin: 0;
    list-style: none;
    /* Remove bullets */
  }
  #nav ul li {
    width: 100%;
  }
  #nav ul li a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: left;
    font-weight: 600;
    background-color: #263a80;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  #nav ul li a:hover {
    transform: translateX(5px);
    background-color: #1a295f;
    color: #fff;
  }
  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
  }
  .menu-icon.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-icon.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

section {
  text-align: center;
}

#home {
  background-color: #fff;
}

#about-us {
  background-color: #fff;
}

#contact-us {
  background-color: #fff;
}

.hero-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  margin-bottom: 0px;
}

.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.bg-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.bg-slider img.active {
  opacity: 1;
  z-index: 2;
}

.content-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  /* Slight dark tint for readability */
  padding: 40px 20px;
}

.left-text h1 {
  font-size: 50px;
  font-weight: bold;
  color: white;
  padding-left: 40px;
  margin-right: 300px;
  text-align: left;
  /* ✅ Added */
}

.left-text .highlight {
  font-size: 50px;
  font-weight: bold;
  color: #fbae43;
  margin-right: 300px;
  text-align: left;
  /* ✅ Added */
}

@media (max-width: 768px) {
  .left-text h1 {
    font-size: 25px;
    text-align: left;
    /* ✅ Add this too */
  }
  .left-text .highlight {
    color: #fbae43;
    font-size: 25px;
    text-align: left;
  }
}

.form-wrap {
  background: rgba(255, 255, 255, 0.45);
  padding: 30px;
  height: 400px;
  width: 350px;
  border-radius: 10px;
  color: black;
  position: absolute;
  /* Changed to fixed positioning */
  right: 50px;
  /* Distance from right edge */
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  /* Perfect vertical centering */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  /* Ensures it stays above other content */
}

.form-wrap h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 900;
}

.form-wrap input,
.form-wrap textarea {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-wrap button {
  background-color: #fbae43;
  width: 200px;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .content-overlay {
    padding: 30px 40px;
  }
  .left-text h1,
  .left-text .highlight {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .content-overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }
  .left-text h1,
  .left-text .highlight {
    font-size: 28px;
    text-align: center;
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    margin-top: 50px;
  }
  .form-wrap {
    width: 100%;
    margin-left: 70px;
    max-width: 300px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .left-text h1,
  .left-text .highlight {
    font-size: 22px;
  }
  .form-wrap {
    padding: 20px;
  }
}

.about-us-modal {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.yellow-heading {
  color: #fbae43;
}

.about-us-content-box {
  background-color: #fff;
  margin: 40px auto;
  padding: 1px 10px;
  border: 4px solid #263a80;
  width: 90%;
  max-width: 1600px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  padding: 2px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1100;
}

.close-btn:hover {
  color: #fbae43;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
  text-align: center;
}

.about-us .founder,
.about-us .cofounder {
  flex: 1;
  max-width: 250px;
  transition: transform 0.3s ease;
}

.about-us .founder:hover,
.about-us .cofounder:hover {
  transform: translateY(-10px);
}

.about-us img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fbae43;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.about-us h3 {
  margin: 10px 0 5px;
  color: #333;
  font-size: 18px;
}

.about-us p {
  font-size: 15px;
  color: #555;
}

.about-content {
  flex: 2;
  max-width: 600px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.about-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-content .highlight {
  color: #fbae43;
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }
  .about-us .founder,
  .about-us .cofounder,
  .about-content {
    max-width: 100%;
    flex: none;
  }
  .about-content {
    margin-top: 30px;
  }
  .about-us img {
    margin-left: auto;
    margin-right: auto;
  }
  .about-content h2 {
    font-size: 28px;
  }
  .about-content p {
    font-size: 14px;
  }
  .about-us h3 {
    font-size: 16px;
  }
}

/*-------------hero-section2--------------------*/

.hero-section2 {
  background-color: #fbae43;
  padding: 40px 20px;
  margin-top: 20px;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.left-heading {
  flex: 1;
  text-align: left;
}

.left-heading h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #000;
}

.right-text {
  flex: 2;
  text-align: left;
}

.right-text p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 20px;
  color: #000;
}

/* Responsive layout */

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }
  .left-heading h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .right-text p {
    font-size: 14px;
  }
  .read-more-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/*--------------hero-section------------------*/

.hero-section {
  background-color: #fbae43 !important;
  padding: 50px 5% 20px;
  /* compact version */
  text-align: center;
  margin-top: 10px;
}

.hero-content {
  max-width: 100%;
  /* previously 'auto' — changed to 100% for consistency */
  margin: 0 auto;
}

.hero-content h1,
.hero-content h2,
.hero-content p {
  margin-bottom: 20px;
  color: #333;
}

.hero-content h1 {
  font-size: 36px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.5;
  padding: 20px;
  /* reset paddings */
}

.hero-content button {
  background-color: #263a80;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.read-more-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #263a80;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background-color: #1ca99e;
}

/* Modal styling */

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

/*-------------Services---------------------*/

.services {
  padding: 60px 20px;
  background-color: #fff;
  /*font-family: 'Poppins', sans-serif;*/
  color: #333;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight1 {
  color: #fbae43;
  font-weight: 800;
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #000;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: left;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: ;
}

.service-icon {
  width: 60px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.service-hd {
  text-align: left;
  padding: 0;
  margin: 0;
}

.service-item ul {
  list-style-type: square;
  padding-left: 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 28px;
  }
}

/* Modal Style */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: #fff;
  margin: 80px auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

/* Modal title */

.modal-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

/* Grid inside modal */

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Single box */

.modal-box {
  text-align: center;
  background: #fafafa;
  padding: 25px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover effect */

.modal-box:hover {
  background: #f0f8ff;
  transform: translateY(-8px);
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15);
}

/* Icon style */

.modal-icon {
  width: 50px;
  margin-bottom: 15px;
}

/* Heading inside box */

.modal-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fbae43;
}

/* Subtext inside box */

.modal-box p {
  font-size: 14px;
  color: #666;
}

/* Animation for modal */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*---------offsite-slider-------*/

.carousel {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.carousel-item {
  flex: 0 0 calc(100% / 3);
  scroll-snap-align: start;
  text-align: center;
  box-sizing: border-box;
  padding: 0.5rem;
}

.carousel-item img {
  width: 100%;
  height: 200px;
  /* Fixed uniform height */
  object-fit: cover;
  border-radius: 8px;
}

/* Optional: pause-on-hover */

.carousel:hover {
  scroll-behavior: auto;
  /* stops smooth scroll while hovered */
}

/* Auto-scroll animation */

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(calc(-100% / 3));
  }
  45% {
    transform: translateX(calc(-100% / 3));
  }
  50% {
    transform: translateX(calc(-2 * 100% / 3));
  }
  70% {
    transform: translateX(calc(-2 * 100% / 3));
  }
  75% {
    transform: translateX(calc(-3 * 100% / 3));
  }
  95% {
    transform: translateX(calc(-3 * 100% / 3));
  }
  100% {
    transform: translateX(0);
  }
}

.carousel.auto {
  animation: autoScroll 20s infinite;
}

/*.multi-slider-section {
padding: 10px 0; 
padding-top: 10px;
background-color: #fff;
text-align: center;
 }
.slider-heading {
font-size: 32px; 
margin-bottom: 30px; 
color: #222;
}
.swiper.multiSwiper {
padding-bottom: 0px; 
}
.swiper-slide {
display: flex;
justify-content: center;
align-items: center;
padding: 0 5px; 
}
.slide-box {
position: relative;
overflow: hidden;
border-radius: 0;
width: 100%;
height: 320px; 
margin: 0; 
}
.slide-box img {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(100%);
}
.slide-box h1 {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
margin: 0;
padding: 10px 15px; 
background: rgba(0, 0, 0, 0.6);
color: white;
font-size: 18px; 
font-weight: 600;
box-sizing: border-box;
}*/

/*----------choose-us-------------*/

.choose-us {
  padding: 30px 20px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 70px;
}

.choose-heading {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  /* reduced from 30px */
  max-width: 1200px;
  margin: 0 auto;
}

.choose-card {
  background: #fff;
  padding: 20px 15px;
  /* reduced from 30px 20px */
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.choose-card img {
  height: 60px;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.choose-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/*---------steps--------*/

.how-we-help {
  background: #fbae43;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 10px;
  margin-top: 0;
}

.section-header .mini-title {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header {
  font-size: 36px;
  color: #111;
  margin-bottom: 10px;
}

.section-header .subtitle {
  font-size: 18px;
  color: #555;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  background: white;
  border-radius: 0;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-img {
  width: 60px !important;
  margin-bottom: 10px !important;
}

.step img {
  width: 50px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: #666;
}

.contact-btn {
  background-color: #263a80;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  margin-top: 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #1c2a5f;
}

/*---------testimonial-----------*/

.testimonial-carousel {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
}

.testimonial-item {
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

.testimonial-item h4 {
  margin: 8px 0 6px;
  font-size: 1.1rem;
}

.testimonial-item p {
  color: #555;
  font-style: italic;
  font-size: 0.95rem;
}

.testimonial-videos {
  margin-top: 3rem;
}

.testimonial-videos h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #333;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.video-wrapper iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/*--------------- logo ---------------*/

.logo-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
  background-color: #fff;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.reverse .marquee-track {
  animation: scroll-right 20s linear infinite;
}

.marquee-track img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 20px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/*-------Gallery-Section--------*/

.gallery-section {
  padding: 40px 2%;
  background-color: #fff;
  text-align: center;
  padding-right: 110px;
  padding-left: 110px;
}

.gallery-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Force 4 columns */
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-section {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
}

/* Lightbox */

#lightbox {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.float-btn {
  position: fixed;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.phone-float {
  bottom: 80px;
}

.whatsapp-float {
  bottom: 20px;
}

.float-btn a {
  display: inline-flex;
}

.float-btn img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  /*border-radius: 50%;*/
}

/* Tooltip-style popup */

.popup-box {
  background: #263a80;
  color: #fff;
  padding: 6px 12px;
  /*border-radius: 8px;*/
  font-size: 14px;
  white-space: nowrap;
  margin-right: 10px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.1s ease, transform 0.1s ease;
  pointer-events: none;
}

/* Show popup only on hover */

.float-btn:hover .popup-box {
  opacity: 1;
  transform: translateX(0);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.float-btn img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  animation: bounce 1.5s infinite;
}

/*---------Footer--------*/

.footer {
  background-color: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  padding: 60px 20px 20px;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
}

.footer-column {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-logo {
  width: 250px;
  padding-top: 0;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fbae43;
}

.social-icons a {
  color: #000;
  font-size: 20px;
  margin-left: 25px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fbae43;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  background: #263a80;
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:visited {
  color: yellow;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
