                 /* HOME PAGE */
#home {
  padding: clamp(80px, 10vw, 140px) 20px; /* vertical scaling */
  text-align: center;
}

#home h1 {
  color: #1195D3;
  font-size: clamp(32px, 6vw, 60px);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

#home h2 {
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: normal;
  margin-bottom: 25px;
  color: #666666; /* more readable gray */
  line-height: 1.3;
}

#home p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}


#list {
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 10px;
}

ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 0;
}

ul li {
  margin-bottom: 8px;
  font-size: clamp(14px, 1.6vw, 18px);
  text-align: center;
}

.slogan {
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: bold;
  margin-top: 25px;
  color: #1195D3; /* use brand color for emphasis */
}

.slogan em {
  font-style: normal;
  color: #1195D3;/* optional accent color for emphasis */
}

#home h1, #home h2, .slogan {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


                            /*ABOUT PAGE*/
#about-section h3{
  color: #1195D3;
  font-size: clamp(28px, 5vw, 48px);
  text-align: center;
}
                            /*SERVICES PAGE*/
i{
  color: #1195D3;
}
                            /*CONTACT PAGE*/
