/*
  ITcom local styles
  Bootstrap is loaded from CDN in Index.html.
  This file contains the custom layout, section, and component styles for the site.
*/

:root {
    --itcom-primary: #0d6efd;
    --itcom-primary-dark: #0b254a;
    --itcom-surface: #ffffff;
    --itcom-soft: #f7fbff;
    --itcom-text-muted: #5f6b7a;
}

.hero-section {
    background:
        linear-gradient(135deg, rgba(11, 53, 119, 0.96), rgba(9, 28, 68, 0.9)),
        url('../public/img/bgfull.jpg') center/cover no-repeat;
}

.hero-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 28, 68, 0.15), rgba(9, 28, 68, 0.35));
}

.hero-section .container {
    z-index: 1;
}

.hero-section__card {
    min-height: 420px;
    background: #0f2f6f;
}

.hero-section__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.hero-section__card-overlay {
    background: linear-gradient(180deg, rgba(3, 12, 28, 0.02) 0%, rgba(3, 12, 28, 0.85) 100%);
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.hero-section__card-overlay h2,
.hero-section__card-overlay p,
.hero-section__card-overlay span,
.hero-section__card-overlay .badge {
    color: #ffffff !important;
}

.hero-section__stats .hero-stat {
    backdrop-filter: blur(8px);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.intro-section {
    background: linear-gradient(180deg, #f6f6f6 0%, #aac3f9 100%);
}

.glass-card {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.30);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(9, 159, 240, 0.825);
    backdrop-filter: blur(3.2px);
    -webkit-backdrop-filter: blur(3.2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* .intro-section__card {
    border-radius: 1.25rem;
    background: #ffffff;
} */

.intro-feature__icon {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.solutions-section {
    background: #ffffff;
}

.solutions-section__media {
    min-height: 240px;
    background: #0d6efd;
}

.solutions-section__media img {
    height: 100%;
    object-fit: cover;
}

.solution-panel {
    border-radius: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.12) !important;
}

.solution-panel__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.it-services {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.it-services .card-img-top {
    height: 160px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1rem 1rem 1.25rem 1rem;
}

.service-card h3 {
    font-size: 1rem;
}

.service-card:hover {
    transform: translateY(-6px);
    transition: transform 0.18s ease;
}

.service-card .btn {
    padding: 0.35rem 0.65rem;
}

.marketing-section {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.marketing-card .card-img-top {
    height: 160px;
    object-fit: cover;
}

.marketing-card i.bi{
    width:38px;
    text-align:center;
}

.marketing-card .marketing-icon i.bi{
    font-size:2.4rem;
    line-height:1;
}

.marketing-card .card-body{
    min-height:200px;
}

.contact-block {
    background: linear-gradient(180deg, #ffffff, #f3f7ff);
}

.contact-block a {
    color: #0d6efd;
}

.contact-image img {
    height: 100%;
    object-fit: cover;
}

.site-footer {
    background: linear-gradient(180deg, #071a3b, #0b254a);
    color: #fff;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.18s ease, background 0.18s ease;
}

.site-footer .social-icons a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.site-footer .footer-logo img {
    filter: brightness(1.05) saturate(1.1);
}

.site-footer .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
}

.site-footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .hero-section__card {
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .site-footer .social-icons a {
        width: 36px;
        height: 36px;
    }

    .marketing-card .card-img-top {
        height: 140px;
    }
}