*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background: white;
    color: #e4e8ec;
}

/* HEADER */
.header{
    padding: 40px 20px;
}

.header h1{
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}

.header p{
    font-size: 18px;
    opacity: 0.8;
    color: skyblue;
}

/* GRID */
.industry-grid{
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 80px;
}

/* CARD */
.industry-card{
    background: black;
    border-radius: 50px;
    padding: 25px;
    border: 1px solid #1f1f1f;
    transition: 0.3s;
}

.industry-card:hover{
    border-color: #0056ff;
    transform: translateY(-5px);
}

/* NUMBER */
.card-number{
    font-size: 30px;
    font-weight: 800;
}

/* ICON */
.icon{
    width: 45px;
    margin: 15px 0;

    filter: invert(34%) sepia(80%) saturate(3200%)
            hue-rotate(205deg) brightness(95%) contrast(110%);
}

/* TITLE */
.industry-name{
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* TEXT */
.industry-text{
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* BUTTON */
.btn{
    display: inline-block;
    background: #0056ff;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
}

.btn:hover{
    background: #003ecb;
}

.main-footer{
  background:linear-gradient(180deg,#0b3aa8,#0a2f86);
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

/* Top strip */
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
  background:#1e63f0;
  font-size:14px;
}

.explore-btn{
  color:#fff;
  text-decoration:underline;
  font-weight:bold;
}

/* Units Section */
.footer-units{
  padding:50px 8%;
}

.footer-units h2{
  font-size:22px;
  margin-bottom:25px;
}

.unit-card{
  background:rgba(255,255,255,0.12);
  border-radius:16px;
  padding:25px;
  margin-bottom:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:.3s;
}

.unit-card:hover{
  background:rgba(255,255,255,0.22);
  transform:translateY(-4px);
}

.unit-card h3{
  font-size:20px;
  margin-bottom:5px;
}

.unit-card span{
  font-size:14px;
  opacity:.9;
}

.unit-card a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  border-bottom:1px solid #fff;
}

/* Footer Links */
.footer-links{
  padding:20px 8%;
  border-top:1px solid rgba(255,255,255,0.3);
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#fff;
  text-decoration:underline;
  font-size:14px;
}

/* Bottom Section */
.footer-bottom{
  padding:30px 8%;
  text-align:center;
}

.footer-bottom p{
  margin-bottom:20px;
  font-size:14px;
  opacity:.9;
}

.badges{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.badge{
  background:#fff;
  color:#0b3aa8;
  padding:12px 20px;
  border-radius:10px;
  font-size:13px;
  font-weight:bold;
  text-align:center;
  min-width:120px;
}
