@font-face {
  font-family: "baloo bhai 2";
  src: url("../Fonts/BalooBhai2-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* Range for variable fonts */
  font-style: normal;
}

@font-face {
  font-family: "roboto";
  src: url("../Fonts/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-display: swap;
  line-height: 1.6;
  background-color: #eef7f0;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

/* Header Styles */
header {
  background-color: #eef7f0;
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
}

.nav-links {
  display: none;
  gap: 1rem;
  font-family: "Roboto";
  border-radius: 1.5rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  border-radius: 1.5rem;
  padding: 0.3rem 1rem;
  transition: all 0.3s ease-in-out;
}

#active-page {
  background-color: #487ab9;
  color: white;
}

.nav-links a:hover {
  background-color: #487ab9;
  color: white;
}

.cta-button {
  display: none;
  background-color: #008f39;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: "Roboto";
  font-weight: 600;
}

#saving-btn {
  background-color: #487ab9;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: #007830;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding-right: 20px;
}

.text-heading {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Baloo Bhai 2";
  color: #333;
}

.text-subheading {
  color: #4a4a4ae6;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-family: "Roboto";
}

/* Main content styles */
main {
  padding-top: 5rem;
}

.hero {
  text-align: left;
  padding: 4rem 0;
}

.swiper {
  overflow: hidden;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Mobile menu styles */
.mobile-menu {
  display: block;
  position: fixed;
  top: 45px;
  width: 100%;
  background-color: rgba(238, 247, 240, 0.95);
  z-index: 999;
  padding: 1rem 2.5rem;
  font-family: "Roboto";
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  left: 0;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a:not(.cta-button) {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #008f39;
}

.mobile-menu .cta-button {
  display: inline-block;
  margin-top: 1rem;
}

.quote-container {
  background-color: #f8f3d9;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.quote-text {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.quote-text p {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-family: "Baloo Bhai 2";
  color: #333;
}

.quote-author {
  color: #4a4a4ae6;
  font-weight: 600;
  font-size: 1rem;
  font-style: italic;
  font-family: "Roboto";
}

.contact-us-section {
  background-color: #f5f3e4;
  padding: 2rem 1rem;
  text-align: center;
}

.contact-us-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-us-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-us-call-text {
  color: #4a4a4ae6;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  font-family: "Roboto";
}

.contact-us-phone-number {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.3rem;
  font-weight: 600;
  font-family: "Roboto";
}

.contact-us-cta-button {
  display: inline-block;
  background-color: #008f39;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.contact-us-cta-button:hover {
  background-color: #007830;
  transform: translateY(-2px);
}

.footer {
  background-color: #eef7f0;
  padding: 4rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: "Baloo Bhai 2";
  color: #333;
}

.region-website-buttons {
  display: flex;
  gap: 1.5rem;
}

.region-website {
  font-family: "Baloo Bhai 2";
  font-size: 20px;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 15px;
  font-weight: 1000;
}

#IN_Btn {
  color: #008f39;
  background-color: transparent;
}

#CA_Btn {
  columns: #333;
  cursor: pointer;
  background-color: transparent;
}

.region-website span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.region-website svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.region-website:hover .svg-wrapper {
  transform: scale(1.25);
  transition: 0.5s linear;
}

.region-website:hover svg {
  transform: translateX(0.6em) scale(1.1);
  fill: #fff;
}

.region-website:hover span {
  opacity: 0;
  transition: 0.5s linear;
}

.region-website:active {
  transform: scale(0.95);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  font-family: "Roboto";
}

.footer-links a:hover {
  color: #008f39;
}

.address {
  font-size: 0.9rem;
  line-height: 1.6;
  font-family: "Roboto";
  color: #333;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright-design {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright,
.design {
  font-size: 0.8rem;
  color: #666;
  font-family: "Roboto";
}

.design-link {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.design-link:hover {
  color: #008f39;
}

.footer-legal {
  padding-top: 1rem;
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #333;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-family: "Roboto";
}

.footer-legal a:hover {
  color: #008f39;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fontFamily {
  font-family: "Baloo Bhai 2";
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .contact-us-title {
    font-size: 2rem;
  }

  .contact-us-phone-number {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-copyright-design {
    flex-direction: column;
  }

  .copyright {
    margin-bottom: 1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .region-website-buttons {
    justify-content: center;
  }

  .swiper {
    height: 400px;
  }

  .subtitle {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }

  .contact-us-section {
    padding: 3rem 1rem;
  }

  .contact-us-title {
    font-size: 1.75rem;
  }

  .contact-us-phone-number {
    font-size: 1.75rem;
  }

  .contact-us-cta-button {
    padding: 0.875rem 1.75rem;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }

  .swiper {
    height: 200px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    margin-top: 0.8rem;
  }

  .nav-links,
  .cta-button {
    display: flex;
  }

  .swiper {
    height: 500px;
  }
}

@media (max-width: 880px) {
  .nav-links {
    gap: 0.2rem;
  }

  .nav-links,
  .cta-button {
    font-size: 14px;
  }
}
