/* Main Title Styling */
h1 {
    color: #1a365d;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}

/* The "Get Started" Button */
button[type="button"] {
    background-color: #0056b3;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    transition: all 0.3s ease;
}

    button[type="button"]:hover {
        background-color: #1a365d;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

/* Service Boxes Styling with Logo Gradient */
#services h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 30px;
}

#services div[style*="flex"] > div {
    background-color: #ffffff;
    border-radius: 8px;
    position: relative;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
    overflow: hidden;
}

    /* Adding the multi-color gradient bar inspired by the logo */
    #services div[style*="flex"] > div::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(to right, #007bff, #28a745, #ffc107, #dc3545, #6f42c1);
    }

    #services div[style*="flex"] > div:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    }

/* Navigation Bar Area (Placeholder for Next Step) */
nav {
    background-color: #1a365d;
    padding: 1rem;
    color: white;
}
/* Service Boxes Styling with Logo Gradient */
#services h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 30px;
}

#services div[style*="flex"] > div {
    background-color: #ffffff;
    border-radius: 8px;
    position: relative;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
    overflow: hidden;
    padding: 20px;
}
    /* The Multi-color gradient bar from your logo */
    #services div[style*="flex"] > div::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(to right, #007bff, #28a745, #ffc107, #dc3545, #6f42c1);
    }

    #services div[style*="flex"] > div:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    }
.hero-section {
    /* Replace 'office-bg.jpeg' with your preferred image from your folder */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/tech-supp.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a high-end parallax effect */
    min-height: 80vh; /* Makes the hero section tall and impactful */
    color: white;
}
    .hero-section h1 {
        color: white !important; /* Overrides the navy blue we set earlier */
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    .hero-section p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 30px;
    }
.italic {
    font-style: italic;
    color: #555;
}

.card {
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: scale(1.02);
    }
/* Fix for the footer to stay at the bottom of the page properly */
html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 100px; /* Gives space for the footer so it doesn't overlap content */
    display: flex;
    flex-direction: column;
}

.footer {
    width: 100%;
    white-space: nowrap;
    line-height: 1.5;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 20px 0;
}
/* Custom About Section Styling */
.about-section {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('/images/office-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.2);
    }

.icon-circle {
    width: 60px;
    height: 60px;
    background: #00d2ff; /* A bright, energetic tech-blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}
.vision-bar h2 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.vision-bar p {
    margin-top: 5px;
    font-style: italic;
}