body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e0e;
    color: #fff;
    margin: 0;
    padding: 20px;
  }
  
  .title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00bcd4;
  }
  
  .tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .tool-box {
    background-color: #1a1a1a;
    border: 1px solid #00bcd4;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 0 10px #00bcd4aa;
    transition: transform 0.3s;
    background: linear-gradient(145deg, #1a1a1a, #111);

  }
  
  .tool-box:hover {
    transform: scale(1.03);
      box-shadow: 0 0 15px #00bcd4;
    }
    
  
  
  .tool-box h2 {
    margin-top: 0;
    color: #00bcd4;
  }
  
  .description {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .btn {
    background-color: #00bcd4;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #03a9f4;
  }
  .tool-box img {
    width: 4.5rem;
    height: auto;
    margin-bottom: 10px;
  }
  /* Navbar Styling */
/* Hamburger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #00bcd4;
  display: block;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #1a1a1a;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border: 1px solid #00bcd4;
    border-radius: 10px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}


/* Header Styling */
.main-header {
  text-align: center;
  padding: 30px 10px 10px;
}

.main-header h1 {
  font-size: 2.5rem;
  color: #00bcd4;
}

.sub-heading {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Footer Styling */
.footer {
  text-align: center;
  padding: 30px 10px;
  background-color: #1a1a1a;
  color: #aaa;
  margin-top: 40px;
  border-top: 1px solid #00bcd4;
}

.footer p {
  margin: 5px 0;
  font-size: 0.9rem;
}
/* About Section - 2 Column */
.about-section {
  background-color: #111;
  color: #e0e0e0;
  padding: 60px 20px;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 50%;
  padding: 20px;
}

.about-text h2 {
  color: #00bcd4;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ccc;
}

.about-image {
  flex: 1 1 45%;
  padding: 20px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }
}
.hero-header {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.hero-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
}
.rotating-line {
  text-align: center;
  font-size: 2.2rem;
  margin-top: 2rem;
  color: #fff;
}

.changing-word {
  color: #00d9ff;
  font-weight: bold;
  animation: rotateWords 8s infinite;
  display: inline-block;
}

@keyframes rotateWords {
  0% { content: "Education"; }
  25% { content: "Business"; }
  50% { content: "Work"; }
  75% { content: "Designs"; }
  100% { content: "Education"; }
}
.contact-section {
  background-color: #111; /* dark background */
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  border-top: 1px solid #2c2c2c;
  margin-top: 20px;
}

.contact-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00bfff; /* theme blue */
}

.contact-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.contact-email {
  display: inline-block;
  background-color: #00bfff;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-email:hover {
  background-color: #008ccf;
}
