body { 
    margin: 0; 
    background-color: #1E1F26; 
}

.navbar {
    display: flex;
    align-items: center;
    padding: 20px 50px;
    background-color: #2E2E2E;
}

/*class name used for making rows like ancor tags and flexing and makin
g it cneter*/
.nav-center {
    display: flex;
    justify-content: center;
    flex: 1; 
    gap: 40px; 
}
/*m4 meeans nav bar logo */
.m4 {
    color: #00F8F8;
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s ease, transform 0.3s ease; /* smooth hover */
}
/*m4 hover efect on the logo*/
.m4:hover {
    color: #E0295C;
    transform: scale(1.16); 
}

/*nav bar ankor tags */
.m5 {
    color: #00F8F8;
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s ease, transform 0.3s ease; /* smooth hover */
}

/*hover effect*/
.m5:hover {
    color: #E0295C;
    transform: scale(1.16); /* smooth growth */
}



/*making all headiing blue*/
h1, h2, h3, h4, h5, h6,p {
    color: #00F8F8;
}

.btn7 {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1E1F26; 
  color: #00F8F8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-left: 0px;
  margin-right: 40px;
  transition: all 0.3s ease; 
}

.btn7:hover {
  background-color: #00F8F8;
  color: #E0295C;
  transform: scale(1.1); 
}
ul{
    color: #00F8F8;
}



li{
    color: #00F8F8;
}
.btn4 {
  display: inline-block;
  padding: 12px 24px;
 background-color: #15161B;
  color: #00F8F8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 5px;
  margin-left: 0;
  font-size: 27px;
}

.btn4:hover {
  background-color: #00F8F8;
  color: #E0295C;
  font-size: 29px;
}


/*reatting us button*/
.btn9 {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1E1F26; 
  color: #00F8F8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-left: 0px;
  transition: all 0.3s ease; /
}

.btn9:hover {
  background-color: #00F8F8;
  color: #E0295C;
  transform: scale(1.1); 
}