* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
}
:root {
  --text-color: #000;
  --second-text-color: #006e91;
  --third-text-color: #fff;
  --button-color: #006e91;
  --hover-color: #2c92b2;
  --bg-color: #ffffff;
  --second-bg-color: #2c92b2;
  --big-font: 2.5rem;
  --normal-font: 1.5rem;
  --transition: all 0.3s ease;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --slide-duration: 0.8s;
}
/* Scrollbar------------- */
::-webkit-scrollbar {
  height: 0;
  width: 0.5rem;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--second-bg-color);
  border-radius: 5rem;
}

body {
  opacity: 1;
  transition: opacity 0.3s ease;
  overflow-x: hidden;
}
body.loading {
  overflow: hidden;
}
/* Animation for page content */
.page-content {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Loader----- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}
.loader-logo {
  width: 80px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.3s;
}
.loader-spinner {
  width: 70px;
  height: 70px;
  border: 3px solid rgba(44, 141, 254, 0.2);
  border-radius: 50%;
  border-top-color: var(--second-bg-color);
  animation: spin 1s linear infinite;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards, spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Navbar Section */
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 10%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header.sticky {
  background: #fff;
  border-bottom: 1px solid #fff;
  padding: 12px 10%;
}
header .logo img {
  width: 150px;
}
header .navlist li {
  position: relative;
}

.navlist {
  display: flex;
  color: var(--text-color);
}
.navlist a {
  display: inline-block;

  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  transition: 0.5s;
  animation: slideAnimation 1s ease forwards;
  animation-delay: calc(0.3s * var(--i));
  opacity: 0;
  position: relative;
  font-size: 20px;
  line-height: 28.8px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.navlist a:hover {
  color: var(--second-text-color);
}
.navlist a:not(.contact-us, .get-involved)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--second-text-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  color: var(--second-text-color);
}

.navlist a:not(.contact-us, .get-involved):hover::after {
  width: 50%;
  color: var(--second-text-color);
}
header .navlist a.active {
  font-weight: bold;
  color: var(--second-text-color);
  position: relative;
}

header .navlist a.active::after {
  content: "";
  position: absolute;
  left: 35px;
  bottom: 5px;
  height: 2px;
  width: 33%;
  background-color: var(--second-text-color);
  transition: width 0.3s ease;
  color: var(--second-text-color);
}

header .navlist a:hover::after {
  width: 0%;
  color: var(--second-text-color) !important;
}
#menu-icon {
  font-size: 2rem;
  z-index: 10001;
  cursor: pointer;
  margin-left: 25px;
  background: #fff;
  border-radius: 3px;
  color: var(--second-bg-color);
  display: none;
}
.navlist a.active {
  font-weight: bold;
  color: var(--second-text-color);
}
/* Border for Get Involved link */
.nav-link.get-involved {
  color: var(--second-text-color);
  border: 2px solid var(--second-bg-color);
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  margin-right: 15px;
  transition: 0.8s ease;
}
.nav-link.get-involved:hover {
  background-color: var(--second-bg-color);
  color: white;
  border: none;
}
/* Background color for Contact Us link */
.nav-link.contact-us {
  background-color: var(--second-text-color);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  transition: 0.7s ease;
}
.nav-link.contact-us:hover {
  background-color: transparent;
  border: 2px solid var(--second-bg-color);
  color: var(--second-text-color);
}

/* Responsiveness */
@media (max-width: 990px) {
  header,
  header.sticky {
    padding: 15px 5%;
  }
  .navlist {
    padding: 8px 15px;
  }
  .navlist a:not(.contact-us, .get-involved):hover::after {
    width: 0px;
    color: var(--second-text-color);
  }
  header .logo img {
    width: 100px;
  }
}
@media (max-width: 968px) {
  #menu-icon {
    display: block;
    transition: all 0.4s ease;
  }
  #menu-icon.bx-x {
    transform: rotate(-180deg);
  }
  .navlist {
    display: flex;
    position: absolute;
    top: -1000px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: #fff;
    text-align: left;
    padding: 0 5%;

    transition: all 0.7s ease;
  }
  .navlist a {
    display: block;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
  header .navlist a.active::after {
    width: 8%;
    bottom: 10px;
  }
  .navlist.open {
    top: 100%;
    display: flex;
  }
}
/* Responsiveness */
@media (max-width: 990px) {
  header,
  header.sticky {
    padding: 15px 5%;
  }
  .navlist {
    padding: 8px 15px;
  }

  .home-content {
    margin-top: 5rem;
  }
  .nav-link.get-involved {
    margin-bottom: 30px;
    width: 50%;
    margin-left: 1.1rem;
  }
  .nav-link.contact-us {
    width: 50%;
    margin-left: 1.1rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
    transition: all 0.4s ease;
  }
  #menu-icon.bx-x {
    transform: rotate(-180deg);
  }
  .navlist {
    display: flex;
    position: absolute;
    top: -1000px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: #fff;
    text-align: left;
    padding: 0 5%;
    transition: all 0.7s ease;
  }
  .navlist a {
    display: block;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
  .navlist.open {
    top: 100%;
  }
}
/* End of Navbar Section */

/* Hero Section---- */
.hero-section {
  margin-top: 13rem;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100%;
  overflow: hidden;
  background: white;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.9s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.text-content {
  height: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
}

.image-content {
  height: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-content img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-heading {
  font-size: 2.3rem;
  font-weight: 700;
  width: 60%;
  justify-content: center;
  text-align: center;
  align-self: center;
}

.text-hero {
  color: var(--second-text-color);
}

.text-muted {
  color: #6c757d;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-btn {
  background-color: var(--second-bg-color);
  border: none;
  padding: 0.8rem 1.4rem;
  font-size: 1.4rem;
  border-radius: 8px;
  width: 20%;
  justify-content: center;
  align-self: center;
  margin-bottom: 40px;
  color: var(--bg-color);
}

.hero-btn:hover {
  background-color: var(--bg-color);
  color: var(--second-bg-color);
  border: solid 1px var(--hover-color);
}

/* Content Animations */
.slide:not(.active) .text-content > * {
  opacity: 0;
  transform: translateY(30px);
}

.slide.active .text-content h1 {
  animation: slideUp var(--slide-duration) var(--ease-out-expo) forwards;
  animation-delay: 0.6s;
}

.slide.active .text-content .text-muted {
  animation: slideUp var(--slide-duration) var(--ease-out-expo) forwards;
  animation-delay: 0.7s;
}

.slide.active .text-content .hero-btn {
  animation: slideUp var(--slide-duration) var(--ease-out-expo) forwards;
  animation-delay: 0.9s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image Animations */
.slide:not(.active) .image-content img {
  opacity: 0;
  transform: scale(0.95) translateX(20px);
}

.slide.active .image-content img {
  animation: zoomIn var(--slide-duration) var(--ease-out-expo) forwards;
  animation-delay: 0.3s;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateX(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

/* Decorative Elements */
.slide:not(.active) .decorative-image {
  opacity: 0;
  transform: scale(0.8);
}

.slide.active .decorative-image.top-left {
  animation: fadeInScale 1s var(--ease-in-out-quart) forwards;
  animation-delay: 0.5s;
}

.slide.active .decorative-image.bottom-right {
  animation: fadeInScale 1s var(--ease-in-out-quart) forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide Transition */
.slider-track {
  transition: transform 0.8s var(--ease-in-out-quart);
}
/* Decorative image animations */
.decorative-image {
  transition: all 1s ease-out;
  transform: scale(0.8);
  opacity: 1;
}

.slide.active .decorative-image {
  transform: scale(1);
  opacity: 1;
}

.slide.active .decorative-image.top-left {
  transition-delay: 0.3s;
}

.slide.active .decorative-image.bottom-right {
  transition-delay: 0.5s;
}
.decorative-image {
  position: absolute;
}

.decorative-image.top-left {
  top: 5%;
  left: 15%;
}

.decorative-image img {
  width: 100px;
  height: auto;
  z-index: 1001;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  color: var(--primary-color);
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #fff;
  display: none;
}

.slider-control:hover {
  background: var(--primary-color);
  color: white;
}

.prev {
  left: 2%;
}

.next {
  right: 2%;
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    margin-top: 8rem;
  }
  .hero-heading {
    font-size: 1.5rem;
    width: 100%;
  }
  .hero-btn {
    width: 50%;
  }
  .image-content {
    height: 44%;
  }
}

@media (max-width: 768px) {
  .slide-content {
    padding: 1rem;
  }
  .decorative-image.top-left {
    top: 1%;
    left: -3%;
  }
  .decorative-image.bottom-right {
    top: 25%;
    right: 5%;
  }

  .text-muted {
    font-size: 1rem;
  }

  .decorative-image img {
    width: 70px;
  }
}

@media (max-width: 576px) {
  .text-content {
    padding: 0 2%;
  }

  h1 {
    font-size: 1.8rem;
  }

  .btn-primary {
    padding: 0.6rem 1.5rem;
  }

  .slider-control {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: none;
  }
}
/* End Of Hero Section ------ */

/* Intro Section--- */
.intro-section {
  background: white;

  position: relative;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.intro-body {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.decorative-image-left {
  position: relative;
}

.decorative-image-left img {
  width: 100px;
  height: auto;
}

.intro-text {
  justify-content: end;
  justify-items: end;
  width: 60%;
  margin-left: 30%;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
  width: 80%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .intro-section {
    margin-top: -20%;
  }
  .intro-heading {
    font-size: 2.8rem;
  }

  .intro-body {
    flex-direction: column;
  }

  .intro-text {
    width: 100%;
    margin-left: 0%;
    margin-top: -12px;
  }
  .description {
    width: 100%;
  }
  .decorative-image-left {
    top: 1%;
    left: -38%;
  }
}

@media (max-width: 768px) {
  .intro-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .lead-text {
    font-size: 1.4rem;
  }
}
/* End of intro section---- */

/* About Section */
.about-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* Background Image with Fixed Attachment */
.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

/* Content Styling */
.about-content {
  background: var(--second-bg-color);
  padding: 3rem;
  border-radius: 23px 0px;

  backdrop-filter: blur(5px);
}

.about-section-title h3 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--second-text-color);
  background-color: var(--bg-color);
  padding: 0.5rem 0.8rem;
  display: inline-block;
}

.about-section-title p {
  background-color: var(--bg-color);
  display: inline-block;
  padding: 0.5rem 0.8rem;
}
.about-content h4 {
  font-weight: 600;
}
.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-section-title h3 {
    font-size: 2.5rem;
  }

  .about-content {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
    min-height: auto;
  }

  .about-bg {
    height: 400px;
    background-attachment: scroll;
    position: relative;
  }

  .about-content {
    margin-top: -80px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .container {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.2rem;
  }

  .about-content {
    padding: 2rem;
    margin-top: -60px;
  }
}
/* End Of About Section---- */

/* Missioon And Vision Section--- */
.mission-vision {
  background-color: var(--bg-color);
  height: 100vh;
}
.title {
  font-weight: 600;
  color: var(--second-text-color);
}
.mission-image-wrapper,
.vision-image-wrapper {
  position: relative;
  z-index: 1;
}

.vision-content {
  width: 80%;
  z-index: 2;
  margin-top: -12%;
  margin-left: -28%;
  position: relative;
}
.vision-content p {
  font-size: 1.1rem;
}
.mission-content {
  position: relative;
  width: 80%;
  z-index: 2;
  margin-top: -10%;
  margin-left: 45%;
}
.mission-content p {
  font-size: 1.1rem;
}
.mission-decorative-image {
  top: -10% !important;
  left: 15% !important;
  position: relative;
}
.mission-decorative-image img {
  width: 250px;
}
.vision-decorative-image {
  /* top: -40% !important;
  left: -2% !important; */
  position: relative;
}
.vision-decorative-image img {
  width: 150px;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .mission-content,
  .vision-content {
    width: 90%;
    position: relative;
    transform: none !important;
    margin-top: -111px;
    margin-left: auto;
    margin-right: auto;
  }

  .mission-image-wrapper,
  .vision-image-wrapper {
    margin-bottom: 30px;
  }
  .mission-decorative-image {
    top: -10% !important;
    left: 0 !important;
    position: relative;
  }
  .mission-decorative-image img {
    width: 80px;
  }
  .vision-decorative-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .mission-content,
  .vision-content {
    width: 100%;
    padding: 2rem !important;
  }
}
/* End of Mission And Vision Section--- */

/* Testiomonials Section---- */
.testimonials {
  margin-top: 60%;
  background-color: var(--bg-color);
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 0px 1px 1px 0px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4d4d4d;
}
.testimonials-card h6 {
  color: var(--second-text-color);
}
.stars i {
  font-size: 1.2rem;
  margin-right: 3px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonials {
    margin-top: 65%;
  }
  .testimonial-card {
    padding: 1.5rem !important;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}
/* End Of Testimonials Section--- */

/* Why Choose Us Section--- */
.why-choose-us {
  position: relative;
  background-color: var(--bg-color);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.content-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.object-fit-cover {
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .content-box {
    padding: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .row {
    flex-direction: column;
  }

  .image-wrapper {
    height: 300px !important;
  }
}
/* End of Why Choose Us */

/* Footer Section-- */
.footer-section {
  background-color: var(--second-bg-color);
  justify-content: center;
  justify-items: center;
  text-align: left;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}

.footer-links li a {
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.contact-info i {
  min-width: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-brand {
    text-align: left;
  }

  .footer-heading::after {
    left: 5%;
    transform: translateX(-50%);
  }

  .footer-links,
  .contact-info {
    margin-top: 2rem;
  }

  .social-icons {
    justify-content: center !important;
    margin-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 3rem 0;
  }

  .footer-heading {
    font-size: 1.1rem;
  }
}
/* Floating Buttons Container - Fixed Positioning */
.floating-buttons-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column-reverse; /* WhatsApp on bottom, Back-to-top above */
  gap: 15px;
  z-index: 9999; /* Ensure it stays above other elements */
}

/* Shared Button Styles */
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative; /* For absolute positioning of tooltips if needed */
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
  background: var(--second-bg-color);
}
.back-to-top:hover {
  background: var(--bg-color);
  color: var(--second-bg-color);
  transform: scale(1.1);
}

/* Show back-to-top button when scrolling */
.back-to-top.visible {
  display: flex;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-logo {
    text-align: left;
  }
  .footer-about {
    width: 80%;
  }
  .contact-info {
    text-align: center;
    justify-content: center;
  }

  .social-icons {
    text-align: center;
    margin-top: 10px;
  }
  .social-icons a {
    font-size: 25px;
  }
  .floating-btn {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }
}
.scroll-hint {
  animation: float 1.6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* End Of Home Page------ */

/* About Us Page----- */
.about-hero {
  position: relative;
  margin-top: 12rem;
}
.about-hero-text {
  margin-top: 50px;
  color: var(--second-text-color);
}
.hero-left img {
  width: 100%;
  border: 7px solid var(--second-bg-color);
  border-radius: 0px 8px 0px 20px;
}

.hero-right img {
  width: 100%;
}

/* Yellow line styling */
.yellow-line {
  bottom: -55px;
  left: -20%;
  width: 100%;
  height: 40%;
  overflow: hidden;
  padding-bottom: 15px;
}

.yellow-line img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Happy Clients Card */
.happy-clients-card {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.client-profiles img {
  width: 50px;
  height: 50px;
  margin-right: -15px;
  transition: transform 0.3s ease;
}

.client-profiles img:hover {
  transform: translateY(-5px);
  z-index: 3;
}

.object-fit-cover {
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-hero {
    margin-top: 7rem;
  }
  .about-hero-text {
    font-size: 1.4rem;
    padding-bottom: 15px; /* Space for yellow line */
  }
  .yellow-line {
    bottom: -40px;
    width: 100%;
    height: 70%;
    left: -10%;
  }
  .hero-right {
    margin-top: 50px;
  }
  .happy-clients-card {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .col-lg-4 {
    width: 100%;
  }

  .p-4 {
    padding: 1.5rem !important;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.95rem;
  }

  .client-profiles img {
    width: 40px;
    height: 40px;
  }
}
/* End of Hero Section--- */

/* About Us Section-------- */
.about-contents {
  background-color: var(--bg-color);
}

.content-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--second-bg-color);
}

.main-image {
  height: 600px;
}

.secondary-image {
  height: 500px;
  margin-top: -80px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .main-image {
    height: 400px;
  }

  .secondary-image {
    height: 90%;
    margin-top: 0px;
  }

  .display-5 {
    font-size: 2.2rem;
  }
  .content-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .main-image,
  .secondary-image {
    width: 100% !important;
    height: 350px !important;
    margin-top: 2rem;
  }

  .secondary-image {
    height: 80% !important;
  }

  .content-card {
    padding: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .display-5 {
    font-size: 1.8rem;
  }

  .icon-box {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
/* End Of About Us Page---- */

/* Services page-------- */

/* Hero Section--- */
.services-hero {
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  margin-top: 11rem;
}

.service-hero-content {
  height: 15vh;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-image {
  height: 85vh;
  overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  h1.display-4 {
    font-size: 2.5rem;
  }

  .service-hero-content {
    min-height: 120px;
  }
}

@media (max-width: 768px) {
  h1.display-4 {
    font-size: 2rem;
  }

  .service-hero-content p.lead {
    font-size: 1rem;
  }

  .service-hero-content {
    padding: 20px 0;
    min-height: 100px;
  }
}

@media (max-width: 576px) {
  h1.display-4 {
    font-size: 1.8rem;
  }

  .service-hero-content {
    height: auto;
    padding: 30px 0;
  }

  .service-hero-image {
    height: calc(82vh - 150px);
  }
}
/* Services Section */
.services-section {
  background-color: var(--bg-color);
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-logo img {
  max-height: 60px;
  width: auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .services-hero {
    margin-top: 6.5rem;
  }
  .display-5 {
    font-size: 2.2rem;
  }

  .decorative-bg {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 1rem;
  }

  .decorative-bg {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .display-5 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1rem;
  }

  .service-logo img {
    max-height: 50px;
  }
}
/* Service Page Done */

/* Career Page----- */
/* Career Intro Section */
.career-intro {
  background-color: var(--bg-color);
  text-align: center;
}

/* Hiring Positions */
.hiring-positions {
  text-align: left;
  max-width: 600px;
}

/* Colored Bullets */
.hiring-positions .bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--second-text-color);
  margin-right: 10px;
}
.hiring-positions li {
  color: var(--second-text-color);
}
.required-info {
  color: red;
  font-weight: bold;
}
.section-heading {
  background-color: #7c7c7c;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
}
.notice {
  width: 70%;
}
.notice-title {
  background-color: #ebebeb;
  color: #000;
  padding: 10px;
  border-radius: 5px;
  width: 50%;
  margin-bottom: 20px;
  font-weight: bold;
}
.underline-heading {
  text-decoration: underline;
}
.btn-submit {
  background-color: var(--second-bg-color);
  color: var(--bg-color);
  padding: 5px 15px;
  border-radius: 8px;
  transition: 0.3s ease;
}
.btn-submit:hover {
  background-color: var(--bg-color);
  color: var(--second-bg-color);
  border: 1px solid var(--second-bg-color);
}

@media (max-width: 968px) {
  .career-home {
    margin-top: 31px;
  }
  .career-intro {
    margin-top: -60px;
  }
  .contact-home {
    margin-top: 31px !important;
  }
  .lead {
    font-size: 1rem;
  }
  .section-heading {
    font-size: 1.3rem;
  }
  .notice {
    width: 100%;
    color: red;
    font-size: 0.9rem;
  }
  .notice-title {
    width: 100%;
  }
}
/* End of Career Page------ */
/* Contact Us Page------- */

.contact-intro {
  background-color: var(--bg-color);
}

/* .contact-item .icon {
  color: #007bff;
} */

.contact-item p {
  margin: 0.25rem 0;
  font-size: 1rem;
}
.contact-us-section {
  padding: 60px 0;
}
.contact-form {
  position: relative;
  padding-bottom: 60px; /* extra space for the send message link */
}
.contact-form h1 {
  color: var(--second-text-color);
}
.icon i {
  color: var(--second-text-color);
}
.send-message-link {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 20px;
}
/* Optional: style adjustments for inputs */
.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
}
/* Endo of Contact Us Page */
/* Booking Page----------- */
/* Center content */
.booking-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Left Image */
.booking-image {
  width: 50%;
  height: 100vh;
  background: url("/assets/images/booking.png") no-repeat center center;
  background-size: cover;
}

/* Form Styling */
.booking-form {
  padding: 40px;
}

.welcome-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--second-text-color);
}

/* Modal Styling */
.modal-content {
  text-align: center;
}
.modal-btn {
  background-color: var(--second-bg-color);
  padding: 0.3rem 0.6rem;
  color: var(--bg-color);
  transition: 0.3d;
}
.modal-btn:hover {
  background-color: transparent;
  color: var(--second-text-color);
  border: 1px solid var(--second-text-color);
}

/* Blogs Page------- */
.blog-intro {
  background-color: var(--bg-color);
}
.blog-hero-heading {
  font-size: 1.9rem;
  font-weight: 700;
  width: 70%;
  justify-content: center !important;
  text-align: center !important;
  align-self: center !important;
}

.blog-intro-image {
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-meta {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .blog-hero-heading {
    font-size: 1.3rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-content {
    padding-left: 0 !important;
    margin-top: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .blog-intro-image {
    height: 100%;
    width: 100%;
  }
}

/* Content Section------ */
.content-section {
  position: relative;
}

/* Custom column for 5 items */
.col-xl-2-4 {
  flex: 0 0 auto;
}

.content-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Adjustments */

@media (max-width: 767.98px) {
  .content-card {
    padding: 1.5rem !important;
  }
}
/* Blogs Section---- */
.blog-section {
  background-color: var(--bg-color);
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.badge {
  background-color: var(--second-bg-color);
  padding: 0.6rem 0.9rem !important;
}
.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}

.read-more {
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
  color: var(--second-bg-color);
}

.read-more:hover {
  color: var(--text-color) !important;
}

.read-more:hover i {
  transform: translateX(3px);
}

.read-more i {
  transition: transform 0.3s ease;
}

.badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .blog-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .blog-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .blog-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 1.5rem !important;
  }
}

/* Read More Page-------------- */
.read-more-section {
  margin-top: 11rem;
}
@media (max-width: 992px) {
  .read-more-section {
    margin-top: 6.5rem;
  }
}
.blog-button a {
  background-color: var(--second-bg-color);
  padding: 0.7rem 0.9rem;
  color: var(--bg-color);
  transition: 0.3s;
}
.blog-button a:hover {
  background-color: transparent;
  border: 1px solid var(--second-bg-color);
  color: var(--second-bg-color);
}
/* Animations--------------------- */
/* Navbar Animation Effect---- */
@keyframes slideAnimation {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
