body {
  background-color: #d0e7ff; /* starting color */
  color: #0a0a0a;
  line-height: 1.6;
  transition: background-color 0.5s ease;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-names h1 {
  font-size: 2rem;
  letter-spacing: 4px;
  cursor: pointer;
}

.brand-names h1 span {
  color: #ff3c78;/* accent color */
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-list ul li a:hover,
.nav-list ul li a:focus {
  color: #ff3c78;
}

.nav-list ul li a::after {
  content: attr(data-after);
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  color: #ff3c78;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-list ul li a:hover::after {
  opacity: 1;
}

/* Hero Section */
#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #222;
  text-align: center;
  padding: 60px 20px;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

#hero h2 {
  font-weight: 400;
  font-size: 1.3rem;
  color: #555;
  margin: 20px 0 40px;
}

.cta {
  background-color: #ff3c78;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #e62e67;
}

/* About Section */
#about {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0;
  gap: 30px;
  align-items: center;
}


.col-left, .col-right {
  flex: 1 1 45%;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title span {
  color: #ff3c78;
}

#about h2 {
  color: #555;
  margin-bottom: 15px;
}

#about p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

#about ul h1 {
  font-size: 1.3rem;
  color: #ff3c78;
  margin-bottom: 5px;
}

#about ul p {
  font-weight: 500;
  margin-bottom: 20px;
}

/* Services Section */
#services {
  background-color: #fff;
  padding: 60px 0;
}

.service-top {
  text-align: center;
  margin-bottom: 40px;
}

.service-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-item {
  background-color: #f9f9f9;
  flex: 1 1 280px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item .icon img {
  width: 150px;
  margin-bottom: 20px;
}

.service-item h2 {
  margin-bottom: 15px;
  color: #ff3c78;
}

.service-item p {
  font-size: 0.95rem;
  color: #444;
}

/* Projects Section */
#projects, #projects1 {
  padding: 60px 0;
}

.projects-header, .projects1-header {
  text-align: center;
  margin-bottom: 40px;
}

.project-item, .project1-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
}

.project-info, .project1-info {
  flex: 1 1 50%;
}

.project-info h1, .project1-info h1 {
  color: #ff3c78;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.project-info p {
  font-size: 1rem;
  color: #555;
}

.project-img, .project1-img {
  flex: 1 1 40%;
}

.project-img img, .project1-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Contact Section */
#contact {
  background-color: #222;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.contact-item {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.3);

  display: flex;               
  flex-direction: column;      
  align-items: center;        
  justify-content: center;     
  text-align: center;         
  gap: 10px;                   
}

.contact-item .icon img {
  width: 50px;
}

.contact-info h1 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #ff3c78;
}

.contact-info h2 {
  font-weight: 500;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 0;
  text-align: center;
}

footer .brand h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

footer .brand h1 span {
  color: #ff3c78;
}

.social-icon {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  align-items: center;
}

.social-item img {
  width: 40px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-item img:hover {
  filter: brightness(0) invert(0.6) sepia(1) saturate(5) hue-rotate(320deg);
}

/* Responsive */
@media (max-width: 768px) {
  #about, .project-item, .project1-item {
    flex-direction: column;
  }

  .nav-list ul {
    flex-direction: column;
    background-color: #222;
    position: absolute;
    right: 0;
    top: 60px;
    width: 200px;
    display: none; /* you can add JS toggle to show this */
    padding: 15px 0;
    border-radius: 8px;
  }

  .nav-list ul.show {
    display: flex;
  }

  .nav-list ul li {
    margin: 10px 0;
  }
}
