body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  margin: 0;
  padding-top: 95px;
  /* 65px header height + 30px padding */
}

header {
  background-color: #036fe2;
  color: white;
  padding: 15px 0;
  position: fixed;
  /* 👈 Make it fixed */
  top: 0;
  /* 👈 Stick to top */
  width: 100%;
  /* 👈 Full width */
  z-index: 1000;
  /* 👈 Stay above other elements */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 65px;
}

/* Basic styles */
.menu-icon {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
  margin-right: 25%;
  margin-top: 16px;
}

.nav-right {
  margin-right: 50%;
  /* This shifts the entire nav bar left */
}

.nav-links a.active {
  color: #000000;
  /* Highlight color */
  font-weight: bold;
  border-bottom: 2px solid #fff;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  margin-top: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  /* ❌ Remove this: margin-right: 20%; */
}

nav a:hover {
  color: #000000;
}


.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  margin-left: 30%;
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 10px;

}

.logo-left img {
  width: 70px;
  height: 68px;
  border-radius: 50%;
}

.site-name {
  font-family: cursive;
  font-weight: bold;
}

.site-name .blink {
  font-size: 35px;
}

.site-name .bowl {
  font-size: 25px;
}

.service-content {
  font-size: 16px;
  margin-left: 28%;
  max-width: 800px;
  text-align: center;
  color: #444;
  justify-content: center;
  margin-bottom: 50px;
  /* Adds 2 lines of space below the heading */
}

.service-heading {
  color: #000000;
  font-size: 28px;
  text-align: center;
  /* ✅ Centers the heading text */
  margin-bottom: 40px;
  margin-top: 60px;
}

.service-text h3 {
  font-size: 20px;
  font: bold;
  text-align: center;
  color: #000000;
}

.service-text {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  margin-top: 40px;

  color: #777;
  font-family: Arial, sans-serif;
}

.carousel {
  position: relative;
  width: 500px;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
  background: rgba(255, 255, 255, 0.1);
  /* Light background for glass effect */
  backdrop-filter: blur(10px);
  /* Glass blur */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border: 2px solid #007BFF;
  /* Blue border */
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  /* Blue glow shadow */
}

.carousel img {
  width: 500px;
  /* Fixed width */
  height: 300px;
  /* Scales height */
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 0.8s ease-in-out;
  border-radius: 10px;
  /* Optional: smooth image corners */
  border: 2px solid #007BFF;
  /* Blue border around image */
}

.carousel img.active {
  opacity: 1;
  z-index: 1;
}


.apply-btn {
  display: block;
  /* Makes centering via margin work */
  background-color: #007BFF;
  color: white;
  margin: 4% auto 0 auto;
  /* Pushes down and centers */
  width: 200px;
  font-weight: bold;
  text-align: center;
  padding: 16px 36px;
  border: 6px solid #007BFF;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.apply-btn:hover {
  background-color: #fff;
  color: #007BFF;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  width: 90%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  border: 2px solid #007BFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
  overflow: hidden;
  animation: fadeInUp 0.5s ease;
  display: flex;
  flex-direction: column;
}

/* Title styling */
.popup-title {
  text-align: center;
  font-size: 28px;
  font-family: cursive;
  color: #007BFF;
  padding: 20px 0 0 0;
}

/* Horizontal split: image + form */
.popup-body {
  display: flex;
  flex-direction: row;
}

/* Left side image */
.popup-left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-left img {
  width: 450px;
  height: 70%;
  object-fit: cover;
  display: block;
  justify-items: center;
  justify-content: center;

}

/* Right side form */
.popup-right {
  width: 50%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-right input,
.popup-right textarea {
  padding: 10px;
  margin-bottom: 15px;
  width: 90%;
  border: 2px solid #007BFF;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
}

.popup-right button {
  background-color: #007BFF;
  color: white;
  margin-left: auto;
  width: 150px;
  font-weight: bold;
  padding: 10px 20px;
  border: 6px solid #007BFF;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.popup-right button:hover {
  background-color: #fff;
  color: #007BFF;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


footer {
  background-color: #036fe2;
  padding: 10px;
  margin: 0;
  text-align: center;
  margin-top: 50px;
  color: white;
}

footer a {
  color: white;
  text-decoration: none;
}
/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(145deg, #007BFF, #0056b3);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 34px;
  font-weight: 900;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

#scrollTopBtn:hover {
  background: #fff;
  color: #007BFF;
  border: 2px solid #007BFF;
  transform: scale(1.1);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  animation: moveUpDown 1.2s ease-in-out infinite;
}

@keyframes moveUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
/* Responsive for tablets and below */
@media (max-width: 992px) {
  .header-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .logo-left {
    display: flex;
    align-items: center;
    /* ✅ Use center instead of 'left' */
    justify-content: flex-start;
    gap: 10px;

  }

  .logo-link {
    margin-left: 0%;
    margin-right: 50%;
    /* ✅ Pushes it to the left */
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 79px;
    left: 41%;
    width: 60%;
    background-color: #75a7dd;
    border-radius: 0 0 20px 20px;
    padding: 5px 5px 25px 2px;
    /* Increased bottom padding */
    z-index: 1001;
    align-items: center;
    gap: 4px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 14px;
    padding: 12px 20px;
    width: 80%;
    max-width: 110px;
     background-color: #036fe2;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
  }

  /* Hover effect */
  .nav-links a:hover {
    background-color: white;
    color: #036fe2;
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }


  .nav-links.show {
    display: flex;
  }

  .site-name .blink {
    font-size: 24px;
  }

  .site-name .bowl {
    font-size: 21px;
  }

  .service-content {
    margin-left: 7px;
    /* Reset margin for smaller screens */
    padding: 0 5px;
    /* Add padding for smaller screens */
    font-size: 14px;
    max-width: 400px;
  }

  .service-heading {
    padding: 5px;
    font-size: 16px;
    text-align: center;
    /* ✅ Centers the heading text */
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .service-text h3 {
    font-size: 15px;
    font: bold;
    text-align: center;
    color: #000000;
  }

  .service-text {
    padding: 10px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    margin-top: 4px;

    color: #777;
    font-family: Arial, sans-serif;
  }

 .carousel {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 200px;
  margin: 0 auto; /* Center horizontally */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center;     /* Center content vertically */
  
  /* Glassmorphism styles */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 15px;
  border: 2px solid #007BFF;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  
  padding: 0 16px; /* Optional: inner padding */
}


  .apply-btn {
    display: block;
    /* Makes centering via margin work */
    background-color: #007BFF;
    color: white;
    margin: 4% auto 0 auto;
    /* Pushes down and centers */
    width: 150px;
    font-weight: bold;
    text-align: center;
    padding: 8px 16px;
    border: 6px solid #007BFF;
    border-radius: 15px;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
  }

  footer {
    background-color: #036fe2;
    padding: 5px;
    margin: 0;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: white;
  }

  .popup-content {
    width: 90%;
    max-width: 1000px;
    height: 90%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border: 2px solid #007BFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
    overflow: hidden;
    animation: fadeInUp 0.5s ease;
    display: flex;
    flex-direction: column;
    font-size: 15px;
  }

  .popup-body {
    flex-direction: column;
  }

  .popup-left,
  .popup-right {
    width: 80%;

    font-size: 15px;
    padding: 2px 4px;
  }

  /* Show image first */
  .popup-left {
    order: 1;
    margin-left: 30px;
  }

  .popup-right {
    order: 2;
    margin-left: 52px;
  }

  .popup-left img {
    width: 100%;
    height: auto;
    margin-top: 0%;
  }

  .popup-title {
    font-size: 19px;
  }

  .popup-right input,
  .popup-right textarea {
    width: 80%;
    font-size: 14px;
  }

  .popup-right button {

    width: 50%;
    max-width: 150px;
    margin-left: 60px;

    padding: 8px 16px;

  }

  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: white;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
}

@media (max-width: 480px) {
  .service-heading {
    font-size: 20px;
    /* Smaller font size for headings */
  }

  .service-text h3 {
    font-size: 18px;
    /* Smaller font size for service text */
  }

  .popup-title {
    font-size: 19px;
    /* Smaller font size for popup title */
    margin-top: 0%;
  }

  .popup-right button {
    width: 100%;
    /* Full width for buttons in popup */
  }
}

/* Responsive for phones and small devices */
@media (max-width: 600px) {
  .logo-left img {
    width: 50px;
    height: 50px;

  }

  .site-name .blink {
    font-size: 24px;
  }

  .site-name .bowl {
    font-size: 21px;
  }
    #scrollTopBtn {
    width: 45px;
    height: 45px;
    font-size: 24px;
    line-height: 45px;
    bottom: 85px;
    right: 10px;
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
  }
}