/* 1 */

body{
    /* background: linear-gradient(to right, #435f66, #0c5e64); */
    background: linear-gradient(to bottom, #4e9757, #8a567f);
}










/* 2 */
/* Navbar container */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000; /* Makes sure it stays on top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #475058, #00f2fe);
    padding: 1em 2em;
  }

  /* Logo or brand name */
  .navbar .logo {
    color: white;
    font-size: 1.5em;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
  }

  /* Navbar links */
  .navbar ul {
    list-style: none;
    display: flex;
    font-size: 30px;
    gap: 1.5em;
    margin: 0;
    padding: 0;
  }

  .navbar ul li a {
    text-decoration: none;
    
    color: white;
    font-size: 1em;
    transition: color 0.3s ease;
  }

  .navbar ul li a:hover {
    color: #222;
  }

  /* Responsive for small screens (optional basic example) */
  @media (max-width: 600px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }

    .navbar ul {
      flex-direction: column;
      gap: 0.5em;
      margin-top: 1em;
    }
  }













/* 3 */
/* footer */

  .footer {
    background-color: #343a40;
    text-align: center;
    padding: 1em 0;
    font-size: 0.9em;
    color: white;
    margin-top: auto;
  }
  

  








/* 4 */
#about {
    text-align: center;
    padding: 1em 0;
    font-size: 1.5em;
    color: white;
  }
  




/* 5 */
.image-container {
  text-align: center;
  margin: 2em auto;
}

.round-image {
  width: 300px;           /* Adjust size as needed */
  height: 300px;
  object-fit: cover;
  border-radius: 50%;     /* Makes the image round */
  border: 25px solid #064883;
}

.round-image:hover {
  border: 2px solid #333;   /* Border on hover */
  border-radius: 12px;      /* Rounded square */
}

.image-caption {
  margin-top: 0.5em;
  font-size: 40px;
  color: #333;
}





.round-image2 {
  width: 200px;           /* Adjust size as needed */
  height: 200px;
  object-fit: cover;
  border-radius: 50%;     /* Makes the image round */
  border: 15px solid #064883;
}

.round-image2:hover {
  border: 1px solid #333;   /* Border on hover */
  border-radius: 12px;      /* Rounded square */
}







.img-container {
  width: 100vw;         /* Container takes 90% of viewport width */
  height: 100vh;       /* Full viewport height */
  overflow: hidden;    /* Hide parts of image that overflow */
}
.imgbg img {
  width: 100%;
  height: auto;
  display: block;

  /* For WebKit browsers */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,      /* Transparent at the top */
    rgba(0,0,0,1) 15%,     /* Fully visible soon after top */
    rgba(0,0,0,1) 85%,     /* Stays visible until near bottom */
    rgba(0,0,0,0) 100%     /* Transparent at the bottom */
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;

  /* Standard property */
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 15%,
    rgba(0,0,0,1) 85%,
    rgba(0,0,0,0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: cover;
}







.playstore-container {
  display: flex;
  justify-content: center;  /* Horizontal center */
  align-items: center;      /* Vertical center */
  height: 30vh;            /* Full screen height */
}


.playstore-img {
  width: 100px;
  height: auto;
  border-radius: 12px;   /* Rounded corners */
  transition: all 0.3s ease; /* Smooth animation */
}

.playstore-img:hover {
  border: 2px solid #333;   /* Border on hover */
  border-radius: 12px;      /* Rounded square */
}



