
/* nAV BAR  */
/* @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap'); */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} 
nav{
  display: flex;
  height: 80px;
  width: 100%;
  background: #1b1b1b;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  position: fixed; /* Ensure the nav bar is positioned */
  z-index: 999; /* Bring the nav bar on top of other content */ 
  
}
nav .logo{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  z-index: 1000; /* Make sure the menu appears above the moving cards */
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: #fff;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  position: relative;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: cyan;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}
.content div{
  font-size: 40px;
  font-weight: 700;
}
/* end */

/* main part */
main {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

.scroll-container {
    width: 100vw;
    overflow: hidden; /* Hide overflow */
    position: relative;
} 

.container {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll 10s linear infinite; /* Continuous scrolling animation */
}

.container::after {
    content: "";
    flex: 0 0 25vw; /* Match the width of a single card */
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

.card {
    min-width: 35vw; /* Adjust width to show two cards */
    margin: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.h3main {
    margin: 10px 0;
    font-size: 1.5em;
}

.pmain {
    text-align: center;
    color: #666;
    padding: 5px;
}

.button {
    text-decoration: none;
    padding: 10px 15px;
    color: white;
    background-color: #007BFF;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

/* Animation */
.bg {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: white;
    padding: 20px;
    text-align: center;

}

/* blog */

/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
}

/* Blog Section */
.blog-section {
  padding: 40px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.blog-preview-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-post {
  background-color: #fafafa;
  width: 300px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.4em;
  color: #333;
}

.blog-content p {
  color: #666;
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 15px;
}

.read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.see-all {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Individual Blog Post Styling */
.blog-article {
  width: 60%;
  margin: 40px auto;
  text-align: left;
}

.blog-article h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.blog-article img {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.blog-article .content p {
  font-size: 1.2em;
  line-height: 1.8em;
}
/* timeline */
.typing-journey {
  padding: 40px;
  max-width: 900px;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.typing-journey h2 {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 30px;
}

.journey-step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.journey-step img {
  width: 100px;
  height: auto;
  border-radius: 5px;
  margin-right: 20px;
}

.journey-step h3 {
  font-size: 1.5em;
  color: #333;
}

.journey-step p {
  font-size: 1.1em;
  line-height: 1.6em;
  color: #666;
}

.journey-step:last-child {
  border-bottom: none;
}
/* facts */
.typing-facts {
  padding: 40px;
  max-width: 900px;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.typing-facts h2 {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 30px;
}

.fact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.fact img {
  width: 80px;
  height: auto;
  margin-right: 15px;
  border-radius: 5px;
}

.fact p {
  font-size: 1.2em;
  color: #333;
  margin: 0;
}
/* common colors */
.typing-journey {
  background: linear-gradient(135deg, #e6f7ff, #ffffff);
}

.typing-facts {
  background: linear-gradient(135deg, #cfb8e6, #ffffff);

  
}
/* Initial State for Animation */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animate In */
.section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Applying the Animation in JavaScript */

/* wave divider  */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin-top: -10px; /* Adjust to create a seamless transition */
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px; /* Adjust height as needed */
}


/* footer bar starts */
.footer {
    position: relative;
    color: white;
}

.video-background {
    position: relative;
    height: 500px; /* Adjust height as needed */
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the area */
    margin:5px
}

.footer-container {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-betweens;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    max-width: 1200px;
    width: 100%; /* Make sure the container is full width */
}

.footer-section {
    flex: 1;
    min-width: 250px; /* Ensures each section has a minimum width */
    padding: 50px;
    backdrop-filter: blur(2px); /*Adds a blur effect behind text */
}

.footer-section h2 {
    margin-bottom: 10px;
}


/* add */



