/* Modern Styles for ILS Site */
:root {
    --primary: hsl(207, 78%, 37%);
    --primary-light: hsl(207, 78%, 50%);
    --accent: hsl(35, 100%, 50%);
    --bg-dark: #121212;
    --text-light: #f5f5f5;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --blur: 10px;
}

body {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Navbar */
.custom-navbar {
    background: var(--glass) !important;
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.custom-navbar.top-nav-collapse {
    background: rgba(18, 18, 18, 0.8) !important;
}

/* Modern Buttons */
#home .btn,
.btn-danger,
.btn-warning {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 40px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#home .btn:hover,
.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Home Section Modernization */
#home {
    background: radial-gradient(circle at top right, #1a2a3a, #0a0a0a) !important;
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

#home h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    margin-bottom: 30px;
}

#home h3 {
    text-align: left;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

#home hr {
    margin-left: 0;
    /* Align left */
    width: 100px;
    border-color: var(--primary);
    border-width: 3px;
}

#home .btn {
    float: left;
    /* Align buttons left */
    margin-top: 20px;
    margin-right: 20px;
}

.hero-img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(20, 99, 165, 0.3));
    max-height: 500px;
    width: auto;
    margin: 0 auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Glass Cards for Sections */
#work .col-md-4,
.team-wrapper,
.iso-box {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

#work .col-md-4:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

/* Form Styles */
.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--glass-border) !important;
    color: white !important;
    border-radius: 10px !important;
    padding: 15px !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-light) !important;
    box-shadow: 0 0 10px var(--primary-light);
}

/* Team Section Enhancements */
.team-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}