*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  color: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/* Style the video: 100% width and height to cover the entire window 
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  filter: blur(8px);
  -webkit-filter: blur(8px);
}*/
.searchicon{
  display: none;
  color: #ffffff;
}

.logo p{
  padding-right: 20px;
  height: 40px;
  margin-top: 4px;
}

.Gravity_logo img{
  width: 150px;
  padding-right: 20px;
  height: auto;
  margin-top: 5px;
}

.logo{
  display: flex;
  justify-content: space-between;
}

.Mcet_logo img{
  padding-right: 20px;
  width: 170px;
  height: auto;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styling */
header{
  height: 60px;
  padding: 0 7vw;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #1f1d1dcf;
  border-bottom: 2px solid #00000096;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.763);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  position: fixed;
  width: 100%;
  top: 0px;
}

.header ul{
  display: flex;
  align-items: center;
  color: #f5f2f2;
}

.header ul li:hover{
  color: #2b74af;
  transition: color 0.3s ease;
}

#brand a {
  color: #fff;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 15px;
  color: #ffffff;
  transition: color 0.3s ease;
}

nav ul li a {
  padding: 0 15px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

nav ul li a:hover {
  color: #1c73b1;
}

.selected a {
  color: #1c73b1;
}

/* Hamburger Icon */
#hamburger-icon {
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 27px;
  height: 2.2px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

/* Hamburger Animation */
.open .bar1 {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: 80%;
  height: calc(100vh - 50px);
  background-color: rgba(0, 0, 0, 0.808);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  opacity: 0;
  transform: translateX(80px);
  pointer-events: none;
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  list-style: none;
  padding-left: 0px;
  font-weight: bold;

}

.mobile-menu li {
  margin: 0px 0px;
  list-style-type: none;
}



.mobile-menu a li{
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 18px;

}

.mobile-menu li a:hover {
  color: #1A4F7A;
}

/* Mobile Menu - Opened */
.open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  z-index: 9999;
}

/* Backdrop */
#menu-backdrop {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.open ~ #menu-backdrop {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}


.menu-item {
  padding: 40px 100px;
  border-radius: 10px;
  text-align: center;
  background-color: #1c73b100;
  margin-left: 150px;
}

.menu-item:hover {
  background-color: #1A4F7A; /* translucent white hover effect */
  box-shadow: 0 0 10px #ffffff33;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body {
  background-image: url("images/GRAVITY_BGG.png");
  /* background-repeat: no-repeat;        Prevent repeating */
  background-position: center center; /* Center the image */
  background-size: contain;           /* Make whole image visible, fit inside container */
  /* or */
  /* background-size: 50% auto; */    /* Make width 50%, height auto to maintain ratio */
  
}

.buttons{
  text-align: center;
  margin-bottom: 20px;
  
}
.buttons .red_button {
  margin-right: 15px; /* space between buttons */
  margin-left: 15px;
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  font-size: 16px;
  background-color: #dce4ea;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: none; /* Hidden by default */
  z-index: 1000;
  transition: opacity 0.3s;
}

#backToTopBtn:hover {
  background-color: #1A4F7A;
}

.home{
  padding: 0 7vw;
}

.home {
  padding: 50px 38px;
  background-color: #1a4f7ace;
  margin-top: -70px;
  padding-bottom: 30px;
  padding-top: 100px;
}

.food_items{
  margin-top: 80px;
  border-radius: 20px !important;
}
.food_items h1 {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
}

.food_items h1 span {
  color: #196ca8;
}

.food_items p {
  text-align: center;
  font-size: 18px;
  color: #5f5f5f;
  margin-top: 10px;
  margin-bottom: 40px;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.item:hover {
  transform: translateY(-5px);
}

.item img.profile {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
  /*border: 3px solid #1A4F7A;*/
}

.item h2 {
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: bold;
}
.item .small h2 {
  margin: 10px 0 5px;
  font-size: 15.3px;
  font-weight: bold;
}

.item .small2 h2 {
  margin: 10px 0 5px;
  font-size: 14.9px;
  font-weight: bold;
}
.item h4 {
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
}

.item p {
  color: #6e6e6e;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.item img.linkedin {
  width: 28px;
  height: 28px;
}

.item .linkedin-wrapper {
  margin-top: auto;  /* Pushes to the bottom */
  text-align: center;
}

.item a {
  display: inline-block;
  background-color: #f3f3f3;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  height: 50px;
}

.item a:hover {
  background-color: #e0e0e0;
}


@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/*SLIDER MAIN PAGE END */
.main_slide div {
  overflow: hidden;
}
.main_slide img {
  margin-top: 100px;
  width: 500px;         /* change width */
  height: auto;         /* auto height keeps image ratio */
  padding-top: 2vw;
  border-radius: 30px;  /* rounds the corners */
}
.main_slide .red_button {
  margin-left: 10px;
  margin-bottom: 15px;
}
.main_slide h1{
  font-size: 60px;
}
.main_slide{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap-reverse;
}

.main_slide div:nth-child(2)
{
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.main_slide div:nth-child(1)
{
  padding-top: 20px;
  flex: 1;
  font-size: 25px;
}

.main_slide div:nth-child(1) p{
  font-size: 20px;
  padding: 20px 0;
}

.main_slide div:nth-child(1) span{
  color: #3C8DBC;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #ffffff ;
}

.red_button{
  cursor: pointer;
  margin-top: 0px;
  width: 110px;
  font-weight: bold;
  color: aliceblue;
  line-height: 50px;
  background-color: #1A4F7A;
  border: 1px solid #1A4F7A;
  border-radius: 5px;
  padding: 0 5px;
  box-shadow: 0 0px 10px #1e5a8b;
  transition: all 0.2s;
}

.red_button i{
  color: aliceblue;
  transition: all 0.2s;
}

.red_button:hover{
  background-color: aliceblue;
  box-shadow: 0 0px 10px #1e5888;
  color: #1A4F7A;
  border: 1px solid #1A4F7A;
}

.red_button:hover i{
  color: #1A4F7A;
}

.food_items{
  margin: 70px;
  padding: 20px;
  background-color: #ffffffcf;
  border-radius: 30px;
}

.Event-items{
  position: relative;
  margin: 70px 0;
  padding: 20px 0;
  background-color: #1f1d1db1;
  border-radius: 30px;

}
.Event-items h2{
  color: #ffffff;
}
.Event-items h1{
  font-size: 40px;
  margin-left: 125px;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #1a4f7a;
}
.Event-items .menu{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.Event-items .event-image {
  width: 200px; /* or any size you want */
  height: auto; /* maintains aspect ratio */
}
.item{
  font-size: 16px;
  width: 250px;
  padding: 30px;
  text-align: center;
}

.item img{
  width: 150px;
  margin-bottom: 15px;
}

.item p{
  font-size: 12px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.Event-items .red_button{
  width: 140px;
  margin-left: 45%;
  margin-bottom: 20px;
}


.script{
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  background-color: #1f1d1d00;
}

.script img{ /*not needed*/
  width: 350px;
  margin-left: 100px;
  margin-right: 10px; /* Space between the paragraph and image */
  height: auto;
  flex: 0 0 auto; /* Keep the image from shrinking or growing */
}

.script h2{
  margin-left: 43%;
  color: #ffffff;
  font-size: 10px;
}

@media only screen and (max-width: 480px) {


body {
  background-image: url("images/Gravity_bgg_phone.png");
  /* background-repeat: no-repeat;        Prevent repeating */
  background-position: center center; /* Center the image */
  background-size: contain;           /* Make whole image visible, fit inside container */
  /* or */
  /* background-size: 50% auto; */    /* Make width 50%, height auto to maintain ratio */
}
.mobile-menu .selected a {
  color: #1c73b1;
}
  nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }

  .logo p{
  padding-right: 10px;
  height: 40px;
  margin-top: 3px;
  }

.Gravity_logo img{
  width: 120px;
  padding-right: 10px;
  height: auto;
  margin-top: 5px;
}

.logo{
  display: flex;
  justify-content: space-between;
}

.Mcet_logo img{
  padding-right: 20px;
  width: 155px;
  height: auto;
  margin-top: 2px;
}

.buttons{
  text-align: center;
  margin-bottom: 20px;
  
}
.buttons .red_button {
  margin-right: 5px; /* space between buttons */
  margin-left: 5px;
}


.home {
  padding: 50px 0px;
  background-color: #1a4f7ace;
  margin-top: -40px;
  padding-bottom: 20px;
  padding-top: 50px;
}

.food_items{
  margin-top: 80px;
  margin-left: 30px !important;
  margin-right: 30px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.food_items h1 {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
}

.food_items .heading {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #1A4F7A;
}

.food_items .heading span {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #1A4F7A;
  color: #1A4F7A;
  margin-bottom: 0px;
  font-size: 25px;
}

.food_items h1 span {
  color: #196ca8;
}

.food_items p {
  text-align: center;
  font-size: 18px;
  color: #5f5f5f;
  margin-top: 10px;
  margin-bottom: 10px;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  
}

.item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  width: 250px !important;
  text-align: center;
  transition: transform 0.3s ease;
}

.item:hover {
  transform: translateY(-5px);
}

.item img.profile {
  border-radius: 50%;
  width: 125px;
  height: 125px;
  object-fit: cover;
  margin-bottom: 15px;
  /*border: 3px solid #1A4F7A;*/
}

.item h2 {
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: bold;
}
.item .small h2 {
  margin: 10px 0 5px;
  font-size: 15.3px;
  font-weight: bold;
}

.item .small2 h2 {
  margin: 10px 0 5px;
  font-size: 14.9px;
  font-weight: bold;
}
.item h4 {
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
}

.item p {
  color: #6e6e6e;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.item img.linkedin {
  width: 28px;
  height: 28px;
}

.item .linkedin-wrapper {
  margin-top: auto;  /* Pushes to the bottom */
  text-align: center;
}

.item a {
  display: inline-block;
  background-color: #f3f3f3;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  height: 50px;
}

.item a:hover {
  background-color: #e0e0e0;
}


@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.red_button{
  cursor: pointer;
  margin-top: 20px;
  width: 110px;
  font-weight: bold;
  color: aliceblue;
  line-height: 50px;
  background-color: #1A4F7A;
  border: 0;
  border-radius: 5px;
  padding: 0 5px;
  box-shadow: 0 0px 15px #1e5a8b;
  transition: all 0.2s;
}

.red_button i{
  color: aliceblue;
  transition: all 0.2s;
}

.red_button:hover{
  background-color: aliceblue;
  box-shadow: 0 2px 15px #1e5888;
  color: #1A4F7A;
  border: 1px solid #1A4F7A;
}

.red_button:hover i{
  color: #1A4F7A;
}

.food_items{
  margin: 70px;
  padding: 20px;
  background-color: #ffffffcf;
  border-radius: 30px;
}



}
