*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body {
    background-image: url('./gifimg2.gif');
    background-size: cover;        /* Ensure the image covers the entire viewport */
    
    background-position: center;   /* Center the GIF on the page */
    height: 100vh;                 /* Ensure the body takes up the full height of the screen */
    margin: 0;                     /* Remove default margin */
}


/* Vertical navigation bar */
.nav {
  width: 7%;
  height: 100vh;
  background-color: black;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: width 0.3s ease;
}

.nav:hover {
  width: 150px;
}

/* Logo styling */
.logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.logo img {
  width: 40px;
}

/* Navigation bar styling */
.navbar {
  width: 100%;
}

.menu {
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: white;
  font-size: 16px;
}

/* Menu item styling */
.menus, .menusa {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
/* Custom icon styling for { and } */
.custom-icon {
  font-size: 20px;
  color: white;
  font-weight: bold;
  display: inline-block;
  margin-right: 2px; /* Adds a small gap between the brackets */
}

/* Ensure the last bracket doesn't have extra margin */
.custom-icon:last-of-type {
  margin-right: 0;
}

/* Menu item alignment */
.menus a {
  display: flex;
  align-items: center;
}

/* Optional: Space between icon and text */
.menu-text {
  margin-left: 10px;
}


.menus a, .menusa {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
}

.menus:hover, .menusa:hover {
  transform: scale(1.1);
}

/* Icon styling for consistency */
.menus i, .menusa i {
  font-size: 20px;
}

/* Text styling */
.menu-text {
  margin-left: 10px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show text on hover */
.nav:hover .menu-text {
  opacity: 1;
}


  
 


/* Main container to center the content */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 170vh;
    
  }
  
  /* Box container with heading */
  .box {
    background-color: white;
   border-radius: 10px;
    padding: 30px;
    width: 1000px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Heading style */
  .heading {
    font-size: 30px;
    font-weight: bolder;
    margin-bottom: 15px;
    justify-content: center;
    text-align: center;
    color: blue;
  }
  
  /* Program sections */
  .program-section {
    display: none;
    background-color: blue;
    padding: 20px;
    border-radius: 10px;
  }
  
  .program-section.active {
    display: block;
  }
  
  /* Scrollable input fields */
  .scrollable-input {
    width: 100%;
    overflow-x: scroll;
  }
  

/* Increased gap between tab buttons */
.tabs {
    display: flex;
    justify-content: space-between;
    gap: 15px; /* Added gap between buttons */
    margin-bottom: 20px;
  }
  
  /* 3D style for tab buttons */
  .tab-button {
    background-color: white;
    border: 2px solid black;
    color: black;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0px 4px 0px #000000;
    border-radius: 5px;
    outline: none;
    font-weight: bolder;
  }
  
  /* Hover effect for 3D tab buttons */
  .tab-button:hover {
    background-color: blue;
    color: white;
    box-shadow: 0px 2px 0px #000000;
    transform: translateY(2px);
  }
  
  /* Active button (pressed state) */
  .tab-button.active {
    background-color: blue;
    color: white;
    box-shadow: 0px 2px 0px #000000;
    transform: translateY(2px);
  }
  
  /* 3D style for form buttons (Clear All and Submit) */
  .button-section button {
    background-color: white;
    border: 2px solid black;
    color: black;
    font-size: 16px;
    font-weight: bolder;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0px 4px 0px #000000;
    border-radius: 5px;
  }
  
  /* Hover effect for form buttons */
  .button-section button:hover {
    background-color: #b00;
    color: white;
    box-shadow: 0px 2px 0px #000000;
    transform: translateY(2px);
  }
  
  /* 3D style for input fields */
  .form-control {
    border: 2px solid #000000 !important;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    
  }
 
  /* Input field focus effect */
  .form-control:focus {
    outline: none;
    box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-color:black;
  }
  
  




/* Footer */
.foot {
  width: 100%;
  background-color: black;
}

.footrap {
  width: 100%;
  margin: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-section {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-bottom: 30px;
}

.connect p {
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  margin-left: 50px;
}

/* Green underline for "Connect With Us" heading */
.connect p::after {
  content: '';
  display: block;
  width: 50%; /* Decreased underline width */
  height: 2px;
  background-color: white;
  margin-top: 5px;
}

.connect ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin-left: 50px;
}

.connect ul li {
  margin-right: 50px;
}

.connect ul li a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  
}

/* Hover effect for links */
.connect ul li a:hover {
  color: white;
  text-decoration: underline;
}

.bottom-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 80%;
  gap: 20px;
}

.boxz ul {
  margin-top: 10px;
  margin-left: 50px;
}

.boxz ul p {
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
}

/* Green underline for headings in bottom section */
.boxz ul p::after {
  content: '';
  display: block;
  width: 30%; /* Decreased underline width */
  height: 2px;
  background-color: white;
  margin-top: 5px;
}

.boxz ul a {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Hover effect for links */
.boxz ul a:hover {
  color: white;
  text-decoration: underline;
}

/* JS Logo Section */
.js-section {
  text-align: center;
  margin-right: 50px;
}

.js-logo {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.js-description {
  color: white; /* Changed to green */
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

/* Footer Panel 2 */
.foot-panel2 {
  margin-top: 20px;
  background-color: black;
  color: white;
  border-top: 1px solid black;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.copyright ul p {
  color: white;
  font-size: 12px;
  margin-right: 20px;
}

.copyright ul a {
  font-size: 12px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Hover effect for copyright links */
.copyright ul a:hover {
  color: white;
  text-decoration: underline;
}
