/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: white;
}
header {
  background: linear-gradient(135deg, #1a1a2e, #000000, #000000);
  color: #fff;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0 4px 12px #07F2FF;
  border-bottom: 1px solid #0BF1D1; /* only bottom border */
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

header a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

header a:hover {
  color: #1abc9c;
}

header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6%;
}

.logoIMG {
  width: 60px;
  height: auto;
  border-radius: 30px 10px;
  padding: 0 20px;
  box-shadow: 0 4px 12px #fff;
}
.logoIMG:hover {
  box-shadow: 0 4px 12px #64DAFF;
}

/* Row 1: social left, courses right */
.row1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.social { text-align: left; flex: 1; }
.courses { text-align: right; flex: 1; }

/* Row 2: newsletter left, links center, contact right */
.row2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.newsletter { text-align: left; flex: 1; }
.links { text-align: center; flex: 1; }
.contact { text-align: right; flex: 1; }

/* Section headings */
.fusion-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00adb5;
  margin-bottom: 15px;
}

/* Social links */
.social a {
  display: block;
  margin: 5px 10px;
  text-decoration: none;
  color: #f1f1f1;
  transition: color 0.3s ease;
}
.social a i {
  margin-right: 6px;
  color: #00adb5;
}
.social a:hover {
  color: #00adb5;
}

/* Courses & Links */
.fusion-info ul {
  list-style: none;
  padding: 0;
}
.fusion-info ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.links ul li a {
  text-decoration: none;
  color: #f1f1f1;
  transition: color 0.3s ease;
}
.links ul li a:hover {
  color: #00adb5;
}

/* Newsletter */
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
}
.newsletter button {
  background: #00adb5;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter button:hover {
  background: #007a80;
}
/* Contact neatly aligned */
.FusionAcademyIMG {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: auto;
}
.contact p {
  margin: 6px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  text-decoration: none;
}

.Phone {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  margin-right: 10px;
}

.Phone:hover {
  color: red;
}

.contact i {
  margin-right: 6px;
  color: #00adb5;
  font-size: 1rem;
  line-height: 1;
}
.fusion-infoD {
  width: 100%;
  background: #1a1a2e;
}

.fusion-info.container {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: #f1f1f1;
  padding: 50px 40px;
  box-sizing: border-box;
}

/* Heading + intro centered */
.fusion-info h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.fusion-info > p {
  text-align: center;
  font-size: 0.95rem;
  color: #dcdcdc;
  margin-bottom: 40px;
}

/* Footer */
footer {
  text-align: center;
  padding: 4px;
  background: #000013;
  color: #00F2FF;
  font-family: 'FutureEarth', sans-serif;
  font-size: 14px;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  font-family: 'Blacksword', cursive;
}

footer a:hover {
  color: #FF0077;
}
.FA {
  color: #00FFAC;
  font-family: 'FutureEarth', sans-serif;
}

/* Responsive */
@media (max-width: 1248px) {
  header a {
    font-weight: 4;
    font-size: 10px;
    margin-left: 1px;
  }

  .social, .courses, .newsletter, .links, .contact {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .contact p {
    justify-content: center;
  }
     .row1, .row2 {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
header {
  padding: 4px;
}
header a {
    font-size: 14px;
}

header .logo {
     margin-top: 4px;
}
  .logoIMG {
    width: 40px;
    padding: 4px 20px;
  }
  .social, .courses, .newsletter, .links, .contact {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .contact p {
    justify-content: center;
  }
}