* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Gill Sans', sans-serif;
}

body {
  background-color: #38142c;
  color: #F7F7F7;
  
  margin: 0;
  padding: 0;
  
}

.parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  
  justify-content: center;
  align-items: center;
  display: flex;
}

.parallax-image {
  
  height: auto;
  transform: scale(1.2);
  object-fit: cover;
  position: fixed;
  bottom: 0;
  
}

.richtext-section {
  position: relative;
  z-index: 9;
  background-color: #38142c;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.richtext-inner {
  padding: 100px 0 60px;
}

.heading {
  font-size: 58px;
  margin-bottom: 10px;
}

.description {
  font-size: 20px;
}

.section1 {
  display:  grid;
  place-items: center;
  align-content: center;
  
}
.section2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  justify-content: center;
  align-items: center;
  text-align: center; /* Center text inside grid cells */
  
}

.section2 img {
 
  height: auto;
  padding: 30px; 
}


.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 0.5s;
}




.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  
}

@media (min-width: 1025px) {
  .h-custom {
  height: 100vh !important;
  }
  }

.body1 {
    background: #e8cbc0;
    background: -webkit-linear-gradient(to right, #e8cbc0, #636fa4);
    background: linear-gradient(to right, #e8cbc0, #636fa4);
    min-height: 100vh;
}

.social-link {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-link:hover, .social-link:focus {
    background: #ddd;
    text-decoration: none;
    color: #555;
}

#stickyNavbar .background {

  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
  