* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:system-ui,Tahoma,sans-serif; font-size:16px; line-height:1.6; color:#333; background:#f2f2f2; direction:ltr; }
a { text-decoration:none; transition:all 0.3s ease; }
a:hover { color: #fff; text-decoration:underline; } /* hover text turns white */

.container { max-width:1100px; margin:0 auto; padding:20px; }

header { display:flex; flex-direction:column; align-items:center; padding:20px 0; position:sticky; top:0; background:#fff; z-index:10; box-shadow:0 4px 12px rgba(0,0,0,0.1);}
nav { display:flex; gap:15px; flex-wrap:wrap; justify-content:center; margin-bottom:10px; }
nav a { padding:10px 20px; background:#808080; color:#fff; border-radius:8px; font-weight:bold; text-transform:uppercase; transition:0.3s; }
nav a:hover { background:#800080; transform: translateY(-2px); box-shadow:0 4px 10px rgba(0,0,0,0.2); color:#fff; } /* hover text white */

.poet-section { display:flex; flex-wrap:wrap; gap:20px; background:#fff; padding:20px; border-radius:12px; margin:30px 0; box-shadow:0 4px 15px rgba(0,0,0,0.1);}
.poet-img { flex:0 0 150px; transition: transform 0.5s; }
.poet-img:hover { transform:scale(1.05); }
.poet-info h2 { color:black; margin-bottom:0px; font-size:22px; }

.featured { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; perspective:1000px; }
.featured-box {
  flex:1 1 250px; background:#fff; border-radius:12px; overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.1); text-align:center;
  transition: transform 0.5s, box-shadow 0.5s, color 0.3s;
}
.featured-box:hover {
  transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
  box-shadow:0 12px 25px rgba(0,0,0,0.2);
  color:#fff; /* text white on hover */
}
.featured-box img { width:50%; margin-top:20px; }
.featured-box h3 { padding:15px; font-size:18px; color:black; }

.intro { background:#fff; padding:20px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); margin-bottom:30px; }
.intro h3 { font-size:20px; margin-bottom:12px; color:black; }
.intro p { margin-bottom:10px; position:relative; overflow:hidden; }
.intro p::before { content:""; position:absolute; left:0; bottom:0; height:3px; width:0; background:#800080; transition: width 0.5s; }
.intro p:hover::before { width:100%; }

footer {
  background: linear-gradient(90deg,#808080,#800080); color:#fff; padding:20px; display:flex; justify-content:space-between; flex-wrap:wrap; font-size:14px;
}
footer a { color:#fff; text-decoration:none; transition:0.3s; }
footer a:hover { color:#fff; text-decoration:underline; text-shadow:0 0 8px #fff; } /* hover white */

@media(max-width:768px){
  .poet-section { flex-direction:column; align-items:center; }
  .featured { flex-direction:column; }
  nav { flex-direction:column; gap:10px; }
}
     
/* Each contact row inline but stacked vertically */
.poet-info a {
  color: #000 !important;       /* black text */
  text-decoration: none;
  vertical-align: middle;       
  margin-left: 8px;             
}

.poet-info strong {
  display: inline-block;
  vertical-align: middle;       
}

.poet-info strong img {
  width: 30px;
  height: 26px;
}

.poet-info .contact-row {
  margin-bottom: 10px;          
  display: flex;
  align-items: center;          
}

/* Force all payment and employee icons in the Strategy section to black */
.intro a i {
  color: #000 !important; 
  font-size: 15px; 
  margin-right: 8px; 
  transition: color 0.3s;
}

.intro a i:hover {
  color: #fff !important; /* hover white */
}

.container a {
  text-decoration: none;
  color: #333; 
  transition: all 0.3s ease;
}

.container a:hover {
  text-decoration: underline;
  text-decoration-color: #fff; /* underline white */
  color:#fff; /* link text white on hover */
}