*{
  box-sizing:border-box;
  font-family: "Segoe UI", Arial, sans-serif;
  margin:0;
}

body{
  background:#e9eef7;
  padding:20px;
}

.container{
  max-width:900px;
  margin:auto;
  background:white;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* -------- Top Blue Section -------- */

.header{
  background:#1f6bff;
  color:white;
  text-align:center;
  padding:40px 20px;
}

.header img{
  max-width:220px;
  margin-bottom:10px;
}

.subtext{
  margin-top:6px;
  opacity:.9;
  font-size:14px;
}

.icon-circle{
  width:120px;
  height:120px;
  border-radius:50%;
  background:#7b9ef7;
  margin:25px auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.gear-img{
  width:100px;
  height:100px;
  animation: spin 2.5s linear infinite;
  display: block;
}

@keyframes spin{
  to{ transform: rotate(360deg); }
}


h2{
  margin-top:10px;
}

.message{
  margin-top:10px;
  font-size:14px;
  max-width:600px;
  opacity:.9;
  margin-inline:auto;
}

/* -------- Lower Content -------- */

.content{
  padding:30px;
}

.box-area{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.box{
  background:#f6f9ff;
  border-radius:12px;
  padding:20px;
}

.box h3{
  margin-bottom:10px;
}

.box-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.icon{
  width:34px;
  height:34px;
  background:#c2d9f7;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon svg{
  width:20px;
  height:20px;
}

.contact-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:8px 0;
  font-size:14px;
}

.mini-icon{
  width:30px;
  height:30px;
  background:#ffffff00;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.mini-icon svg{
  width:18px;
  height:18px;
}

.row{
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  font-size:14px;
}

.footer{
  margin-top:25px;
  padding:18px;
  border:1px solid #d3e1ff;
  border-radius:12px;
  text-align:center;
  font-size:14px;
}

.footer a{
  color:#1f6bff;
  font-weight:600;
  text-decoration:none;
}

/* responsive */
@media(max-width:700px){
  .box-area{
    grid-template-columns:1fr;
  }
}


/* ===== Hover Effects ===== */

/* Lift + shadow on info boxes */
.box{
  transition: transform .25s ease, box-shadow .25s ease;
}

.box:hover{
  transform: translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}


/* Icons — soft glow + scale */
.icon,
.mini-icon{
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: default;
}

.icon:hover,
.mini-icon:hover{
  background:#d8e6ff;
  transform: scale(1.07);
  box-shadow:0 6px 16px rgba(31,107,255,.25);
}


/* Headings — slight color emphasis */
.box-title h3{
  transition: color .25s ease;
}

.box:hover .box-title h3{
  color:#1f6bff;
}


/* Links — underline fade + color */
.footer a{
  transition: color .25s ease, text-decoration-color .25s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.footer a:hover{
  color:#0e49c9;
  text-decoration-color:#0e49c9;
}

.contact-label{
  font-size:12px;
  color:#777;
  margin-bottom:2px;
  letter-spacing:.3px;
}

.contact-value{
  font-size:14px;
  color:#222;
}

/* Contact row dividers */
.contact-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:10px 0;
  padding:10px 0;
  border-bottom:1px solid #e3e8f5;
}

/* remove divider from last row */
.contact-row:last-child{
  border-bottom:none;
}

.row{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid #e3e8f5;
}

.row:last-child{
  border-bottom:none;
}

.contact-link {
  color: #1f6bff;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}
