body {
    background-color: #1E1F26; 
    text-align: center;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 20px 50px;
    background-color: #2E2E2E;
}
/*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 */
}


/*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; 
}

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

/*contact us button*/
.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;
  transition: all 0.3s ease; /
}

.btn7:hover {
  background-color: #00F8F8;
  color: #E0295C;
  transform: scale(1.1); 
}
.i8{
    color: #00F8F8;
    font-size:24px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 60px;
    max-width: 1200px;
    margin: auto;
}

.projects > div {
    color: #00F8F8; 
    background-color: #2E2E2E; 
    border-radius: 20px;
    text-align: center;
    padding: 30px;
    width: 360px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 248, 248, 0.15);
}

.projects p {
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.projects h1 {
    font-size: 26px;
    margin-bottom: 15px;
}

.div10 {
    margin-left: auto;
    margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1E1F26; 
  color: #00F8F8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

