html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}



:root {
    --primary: #438bf0;
    --dark: #000;
    --light: #f4f4f4;
}

body {
    background-color: var(--dark);
    color: white;
    font-family: "Segoe UI", sans-serif;
}
body a{
    text-decoration:none;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/heroImg.png') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

    .hero-section h1 {
        font-size: 42px;
        font-weight: 700;
        color: var(--primary);
    }

    .hero-section p {
        font-size: 18px;
        margin-top: 10px;
        color: #d6d6d6;
    }

.info-card, .director-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

    .info-card:hover, .director-card:hover {
        transform: translateY(-3px);
        border-color: var(--primary);
    }

h2, h3, h4 {
    color: var(--primary);
}

.directors ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.snapshot-card {
    background-color: #111;
    border-radius: 12px;
    border: 1px solid #222;
    padding: 20px;
}

    .snapshot-card strong {
        color: var(--primary);
    }

.company-img {
    width: 100%;
    border-radius: 12px;
    margin-top: 15px;
}

.director-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #438bf0, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(67, 139, 240, 0.4);
}

.director-img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f2f2f2;
}

