/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;

}

body {
   
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    
}

.container {
    text-align: center;

}

.container-x{
    width: 87%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    margin-bottom: 100px;
    font-size: 2rem;
}

/* Layout for Animation List */
.animation-list {
    list-style: none;
    padding: 0;
}

.animation-item {
    margin-bottom: 30px;
}

.example {
    display: inline-block;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}


.bg-blue{
    background: #cfe3f7;
}

.w-full{
    width:100%;
}
.h-100vh{

  height: 100vh;  
}

.aspect-ratio-vertical{
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* Aspect ratio: height = 125% of width */
    overflow: hidden; /* Hide any content that overflows */
}


/* Base styles for reusable components */
.parallax-image {
  position: relative;
  overflow: hidden;
}

.parallax-image img {
  width: 100%;
  height: auto;
  transform: translateY(0);
  transition: transform 0.1s ease-in-out;
}



/* Parallax container */
.parallax-container {
  position: relative;
   
  overflow: hidden; 
}

/* Background setup for parallax effect */
.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*  z-index: -1;  */
  overflow: hidden;
}

/* Ensure the image covers the container */
.parallax-background img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;  
  height: auto;
  transform: translate(-50%, -50%);  
}

/* Content will stay above the background */
.content {
  position: relative;

}


/* Full Width Background Layout */
.parallax-container.full-width .parallax-background {
  width: 100%; /* Full width for single-column layout */
  height: 100vh; /* Full height */
}


/* 2-Column Layout */
.parallax-container.two-column .parallax-background {
 
  transition: transform 0.1s ease-out;
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parallax-container.two-column .item{
    flex: 1;
}

.container-two-column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
  z-index: 1;
}

.d-flex{
    display: flex;
    justify-content: space-between; /* Space between columns */
    align-items: stretch; /* Make sure the items stretch to full height */

}


/*END Parallax base*/




.center-content{
    display: flex;
  justify-content: center;  
  align-items: center;      
}


.two-column-inside{
    display: flex;
    flex-direction: row;
    gap: 50px;
    z-index: 1;
}


.content-column {
  display: flex;  /* Flexbox for two columns */
  width: 100%;
  height: 100%;  /* Ensure content takes up the full height */
  justify-content: space-between;
  z-index: 1;
  position: relative;
}


.text-column {
  flex: 1;  /* Make this column take up the remaining space */
  padding: 20px;
  text-align: left;

}

.image-column {
  flex: 1;  /* Same here, make this column take up the remaining space */
  padding: 20px;
  text-align: left;

}
