/* Hero gradient */
.hero-gradient {
    background: linear-gradient(135deg, #0e1e4e 0%, #172e75 40%, #1e3e96 70%, #2752b8 100%);
    position: relative;
}
.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Section title underline */
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #1e3e96;
    margin-top: 10px;
    border-radius: 2px;
}
.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}

/* Service card hover */
.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 30, 78, 0.12);
}

/* Breadcrumb hero */
.page-hero {
    background: linear-gradient(135deg, #0e1e4e 0%, #1e3e96 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* Stat counter style */
.stat-number {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* Smooth dropdown */
.dropdown-menu {
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

/* Gallery grid */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}
.gallery-item img {
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Scrolled nav shadow */
.nav-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Contact form focus */
.form-input:focus {
    outline: none;
    border-color: #1e3e96;
    box-shadow: 0 0 0 3px rgba(30, 62, 150, 0.1);
}
