* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow: hidden;
    font-family: "Segoe UI", sans-serif;
}
header{
  display: grid;
  grid-template-columns: 80px 1fr calc(var(--w-image) * var(--calculate));
  grid-template-rows: 80px;
  position: absolute;
  z-index: 10;
  top: 30px;
  left: 30px;
  /* border-bottom: 1px solid var(--border-color); */
}
header .logo img{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

/* Page layout */
.page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Split screen area */
.split-screen {
    flex: 1;
    display: flex;
}

/* Panels */
.panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content */
.content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 80%;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.content button {
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: #115aa8;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.content button:hover {
    background: #87b2f0;
    transform: scale(1.05);
}

/* Background images */
.left {
    background-image: url("img/technology1.jpg");
}

.right {
    background-image: url("img/finance1.jpg");
}

/* Footer bar */
 .footer{
    height: 48px;
    background: #111;
    color: #fff;
    gap: 16px;
 }

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bar button
{
  position: relative;
  justify-content: center;
  background-color: #fff;
  width: 50px;
  height: 50px;
  bottom: 30px;
  border-radius: 40px;
}
.footer-bar button i{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.footer-bar span {
    font-size: 14px;
    display: flex;
    align-items:flex-start;
    justify-content:flex-start;
    padding: 20px;
}

/* Expanded footer (below images) */
.footer-expanded {
    height: 0;
    background: #1b1b1b;
    color: #fff;
    overflow: hidden;
    transition: height 0.4s ease;
}

.footer-expanded.active {
    height: auto;
}

.footer-content {
    padding: 24px;
}

.footer-content ul{
  list-style-type: none;
}

.footer-content li a{
  color: #fff;
  text-decoration: none;
}

.footer-content h2 {
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .split-screen {
        flex-direction: column;
    }
}

.widget-title{
  font-size: 20px;
  font-weight: bold;
  text-decoration:underline;
}